/* ==========================================================================
   KUA Tech — Site Institucional
   Design System: Dark (#080B0D), Ciano Accent (#9DF3F2), 
   Typography: Poppins (Títulos) & Roboto (Texto).
   ========================================================================== */

:root {
  --fundo: #080b0d;
  --fundo-barra: #10171a;
  --branco: #f8fbfa;
  --primaria: #080b0d;
  --segundaria: #9df3f2;
  --subtitle: #c5d0d0;
  --cinza-box: #eaf0ef;
  --borda: rgba(211, 246, 244, 0.16);
  --header-h: 80px;
  --ink-muted: #546466;
  --line-dark: rgba(7, 18, 20, 0.13);
  --surface: #f1f5f4;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow-dark: 0 28px 70px rgba(0, 0, 0, 0.28);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  background: var(--fundo);
  scroll-behavior: smooth;
}

body {
  background: var(--fundo);
  color: var(--branco);
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::selection {
  background: var(--segundaria);
  color: var(--primaria);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin: 0;
}

p {
  margin: 0;
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease), color 180ms var(--ease);
}

.btn:active {
  transform: scale(0.97);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-cyan {
  background: var(--segundaria);
  color: #061113;
  box-shadow: 0 10px 28px rgba(157, 243, 242, 0.18);
}

.btn-cyan:hover {
  background: #d6ffff;
  box-shadow: 0 14px 34px rgba(157, 243, 242, 0.3);
}

.btn-outline {
  color: var(--branco);
  border-color: rgba(248, 251, 250, 0.42);
  background: rgba(8, 11, 13, 0.14);
}

.btn-outline:hover {
  color: var(--segundaria);
  border-color: var(--segundaria);
  background: rgba(157, 243, 242, 0.08);
}

.btn-outline-dark {
  color: var(--primaria);
  border-color: rgba(8, 11, 13, 0.45);
  background: transparent;
}

.btn-outline-dark:hover {
  background: var(--primaria);
  color: var(--branco);
  border-color: var(--primaria);
}

.btn-cta {
  min-height: 40px;
  padding: 0 20px;
  color: var(--primaria);
  background: var(--branco);
  border-color: var(--branco);
  font-weight: 700;
}

.btn-cta:hover {
  background: var(--segundaria);
  border-color: var(--segundaria);
  box-shadow: 0 8px 20px rgba(157, 243, 242, 0.25);
}

.btn-download {
  min-height: 42px;
  padding: 0 18px;
  color: var(--branco);
  background: var(--primaria);
  border-color: var(--primaria);
  border-radius: 12px;
}

.btn-download:hover {
  color: var(--primaria);
  background: var(--segundaria);
  border-color: var(--segundaria);
}

/* Header / Appbar */
.appbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 clamp(20px, 5vw, 76px);
  background: rgba(8, 11, 13, 0.88);
  border-bottom: 1px solid rgba(208, 245, 243, 0.11);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--branco);
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.brand img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s var(--ease);
}

.brand:hover img {
  transform: rotate(-8deg) scale(1.08);
}

.brand em {
  color: var(--segundaria);
  font-style: normal;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.5vw, 40px);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-desktop a {
  color: rgba(248, 251, 250, 0.75);
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  padding: 6px 2px;
  transition: color 0.18s var(--ease);
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--segundaria);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s var(--ease);
}

.nav-desktop a:hover {
  color: var(--branco);
}

.nav-desktop a:hover::after {
  transform: scaleX(1);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 43px;
  height: 43px;
  background: transparent;
  border: 1px solid var(--borda);
  border-radius: 50%;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 18px;
  margin-inline: auto;
  background: var(--segundaria);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Drawer */
.drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 70;
  width: min(350px, 86vw);
  background: #0b1012;
  border-right: 1px solid var(--borda);
  padding: 32px 26px;
  transform: translateX(-105%);
  transition: transform 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}

.drawer.open {
  transform: translateX(0);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.drawer-title {
  color: var(--segundaria);
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 24px;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
}

.drawer-nav a {
  padding: 14px 6px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: rgba(248, 251, 250, 0.9);
  border-bottom: 1px solid var(--borda);
  transition: color 0.18s var(--ease), padding-left 0.18s var(--ease);
}

.drawer-nav a:hover {
  color: var(--segundaria);
  padding-left: 12px;
}

/* Hero Section */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: max(670px, calc(100vh - var(--header-h)));
  padding: clamp(68px, 11vh, 120px) clamp(20px, 9vw, 152px) clamp(72px, 12vh, 130px);
  isolation: isolate;
  background-color: var(--fundo);
  background-image: url("assets/images/notebook_image.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 76% center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 11, 13, 0.98) 0%, rgba(8, 11, 13, 0.91) 38%, rgba(8, 11, 13, 0.42) 74%, rgba(8, 11, 13, 0.65) 100%),
    linear-gradient(180deg, rgba(8, 11, 13, 0.2), rgba(8, 11, 13, 0.85));
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(157, 243, 242, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(157, 243, 242, 0.06) 1px, transparent 1px);
  background-size: 76px 76px;
  background-repeat: repeat;
  background-position: right -10px center;
  mask-image: linear-gradient(90deg, transparent 28%, rgba(0, 0, 0, 0.92) 78%);
  -webkit-mask-image: linear-gradient(90deg, transparent 28%, rgba(0, 0, 0, 0.92) 78%);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.hero-glow-one {
  top: 11%;
  right: 18%;
  width: clamp(130px, 15vw, 230px);
  aspect-ratio: 1;
  border: 1px solid rgba(157, 243, 242, 0.32);
  box-shadow: inset 0 0 40px rgba(157, 243, 242, 0.08), 0 0 76px rgba(157, 243, 242, 0.06);
}

.hero-glow-two {
  right: 4%;
  bottom: 12%;
  width: 240px;
  height: 240px;
  background: rgba(50, 126, 131, 0.16);
  filter: blur(90px);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--segundaria);
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  width: 26px;
  height: 1px;
  background: currentColor;
}

.eyebrow-dark {
  color: #167579;
}

.hero h1 {
  max-width: 770px;
  margin-top: 21px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(48px, 6.3vw, 94px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: var(--branco);
}

.hero h1 .cyan {
  color: var(--segundaria);
}

.hero-sub {
  max-width: 590px;
  margin-top: 27px;
  color: rgba(248, 251, 250, 0.85);
  font-size: clamp(16px, 1.45vw, 20px);
  font-weight: 300;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 0;
  margin-top: 52px;
  color: rgba(248, 251, 250, 0.67);
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-notes span {
  display: inline-flex;
  align-items: center;
}

.hero-notes span:not(:last-child)::after {
  width: 4px;
  height: 4px;
  margin: 0 14px;
  background: var(--segundaria);
  border-radius: 50%;
  content: "";
}

.hero-scroll {
  position: absolute;
  right: clamp(20px, 5vw, 76px);
  bottom: 30px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(248, 251, 250, 0.74);
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-scroll svg {
  color: var(--segundaria);
  animation: float-arrow 1.8s ease-in-out infinite;
}

@keyframes float-arrow {
  50% { transform: translateY(4px); }
}

/* Seção Motion Reel */
.motion-reel {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(440px, 1.22fr);
  align-items: center;
  gap: clamp(48px, 8vw, 130px);
  padding: clamp(82px, 11vw, 150px) clamp(20px, 9vw, 152px);
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 48%, rgba(52, 156, 157, 0.13), transparent 26%),
    #0b1214;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms var(--ease), transform 650ms var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.motion-reel-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 465px;
}

.motion-reel-copy h2 {
  max-width: 440px;
  color: var(--branco);
  font-family: "Poppins", sans-serif;
  font-size: clamp(34px, 3.9vw, 54px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.motion-reel-copy > p:not(.eyebrow) {
  color: rgba(248, 251, 250, 0.67);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.72;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 6px;
  padding-bottom: 5px;
  color: var(--segundaria);
  border-bottom: 1px solid rgba(157, 243, 242, 0.5);
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: gap 180ms var(--ease), border-color 180ms var(--ease);
}

.text-link:hover {
  gap: 14px;
  border-color: var(--segundaria);
}

.motion-player {
  position: relative;
  width: 100%;
  max-width: 720px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  isolation: isolate;
  background: #111d20;
  border: 1px solid rgba(157, 243, 242, 0.28);
  border-radius: 26px;
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.38);
}

.motion-player::before {
  position: absolute;
  z-index: 5;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 10, 11, 0.4), transparent 32%, rgba(5, 10, 11, 0.58));
  pointer-events: none;
  content: "";
}

.motion-player-top {
  position: absolute;
  z-index: 7;
  top: 17px;
  left: 19px;
  right: 19px;
  display: flex;
  justify-content: space-between;
  color: rgba(248, 251, 250, 0.88);
  font-family: "Poppins", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.motion-player-top span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.motion-player-top i {
  display: block;
  width: 5px;
  height: 5px;
  background: #ff6c6c;
  border-radius: 50%;
}

.motion-player-top i:nth-child(2) { background: #ffd46c; }
.motion-player-top i:nth-child(3) { background: var(--segundaria); }

.motion-slide {
  position: absolute;
  z-index: 1;
  inset: 0;
  margin: 0;
  opacity: 0;
  overflow: hidden;
}

.motion-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04) brightness(0.76);
}

.motion-slide-one img { object-position: center 50%; }
.motion-slide-two img { object-position: center 38%; }
.motion-slide-three img { object-position: center 50%; }

.motion-slide figcaption {
  position: absolute;
  z-index: 2;
  left: 19px;
  right: 19px;
  bottom: 29px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--branco);
  font-family: "Poppins", sans-serif;
  font-size: clamp(13px, 1.5vw, 18px);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.motion-slide figcaption span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--primaria);
  background: var(--segundaria);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0;
}

.motion-slide-one { animation: motion-frame-one 18s ease-in-out infinite; }
.motion-slide-two { animation: motion-frame-two 18s ease-in-out infinite; }
.motion-slide-three { animation: motion-frame-three 18s ease-in-out infinite; }

.motion-slide-one img { animation: motion-zoom-one 18s ease-in-out infinite; }
.motion-slide-two img { animation: motion-zoom-two 18s ease-in-out infinite; }
.motion-slide-three img { animation: motion-zoom-three 18s ease-in-out infinite; }

@keyframes motion-frame-one {
  0%, 29% { opacity: 1; }
  34%, 95% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes motion-frame-two {
  0%, 29% { opacity: 0; }
  34%, 62% { opacity: 1; }
  67%, 100% { opacity: 0; }
}

@keyframes motion-frame-three {
  0%, 62% { opacity: 0; }
  67%, 95% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes motion-zoom-one {
  0%, 29% { transform: scale(1.03) translateX(0); }
  34%, 100% { transform: scale(1.16) translateX(-1.5%); }
}

@keyframes motion-zoom-two {
  0%, 29% { transform: scale(1.15) translateX(2%); }
  34%, 62% { transform: scale(1.03) translateX(0); }
  67%, 100% { transform: scale(1.12) translateX(-1%); }
}

@keyframes motion-zoom-three {
  0%, 62% { transform: scale(1.14) translateY(2%); }
  67%, 95% { transform: scale(1.03) translateY(0); }
  100% { transform: scale(1.14) translateY(-1%); }
}

.motion-player-scan {
  position: absolute;
  z-index: 6;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(157, 243, 242, 0.62);
  box-shadow: 0 0 14px rgba(157, 243, 242, 0.72);
  opacity: 0.55;
  animation: motion-scan 5s linear infinite;
}

@keyframes motion-scan {
  0% { top: 10%; opacity: 0; }
  8% { opacity: 0.5; }
  92% { opacity: 0.5; }
  100% { top: 92%; opacity: 0; }
}

.motion-player-progress {
  position: absolute;
  z-index: 8;
  left: 19px;
  right: 19px;
  bottom: 13px;
  height: 2px;
  overflow: hidden;
  background: rgba(248, 251, 250, 0.3);
  border-radius: 999px;
}

.motion-player-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--segundaria);
  border-radius: inherit;
  transform: translateX(-100%);
  animation: motion-progress 18s linear infinite;
}

@keyframes motion-progress {
  to { transform: translateX(0); }
}

/* Seção Aplicações (Home) */
.aplicacoes {
  padding: clamp(72px, 9vw, 136px) clamp(20px, 9vw, 152px);
  color: var(--primaria);
  background: var(--surface);
}

.aplicacoes-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1180px;
  margin: 0 auto 34px;
}

.aplicacoes-head h2 {
  max-width: 660px;
  margin-top: 13px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(29px, 3.4vw, 48px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.05em;
  color: var(--primaria);
}

.aplicacoes .h-scroll {
  max-width: 1180px;
  margin: 0 auto;
}

.app-card {
  width: min(100%, 800px);
}

.app-card-box {
  display: grid;
  grid-template-columns: 112px minmax(180px, 1fr) auto;
  align-items: center;
  gap: clamp(19px, 3vw, 44px);
  width: 100%;
  min-height: 176px;
  padding: 25px clamp(25px, 4vw, 45px);
  background: var(--branco);
  border: 1px solid rgba(8, 11, 13, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 45px rgba(12, 29, 31, 0.08);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.app-card:hover .app-card-box {
  transform: translateY(-5px);
  box-shadow: 0 28px 55px rgba(12, 29, 31, 0.15);
}

.app-card-box img {
  width: 112px;
  height: 112px;
  border-radius: 23px;
  object-fit: cover;
  box-shadow: 0 13px 25px rgba(8, 11, 13, 0.18);
}

.app-card-copy {
  display: grid;
  gap: 7px;
}

.app-card-box .app-card-label {
  color: var(--primaria);
  font-family: "Poppins", sans-serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.app-card-description {
  max-width: 345px;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.5;
}

.app-card-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 0 7px;
}

.app-card-name {
  margin: 0;
  color: var(--primaria);
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.app-card-footer span {
  padding: 4px 10px;
  color: #1f7476;
  background: rgba(157, 243, 242, 0.42);
  border-radius: 999px;
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

/* Seção Sobre */
.sobre {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(50px, 8vw, 132px);
  max-width: 1420px;
  margin: 0 auto;
  padding: clamp(82px, 11vw, 152px) clamp(20px, 8vw, 116px);
  align-items: center;
}

.sobre-imagem {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.sobre-imagem::before {
  position: absolute;
  inset: 10% -2% 6% 3%;
  background: linear-gradient(135deg, rgba(157, 243, 242, 0.24), transparent 68%);
  border: 1px solid rgba(157, 243, 242, 0.22);
  border-radius: var(--radius-lg);
  content: "";
  transform: rotate(-7deg);
}

.sobre-photo-main {
  position: relative;
  z-index: 1;
  width: min(100%, 490px);
}

.sobre-photo-main img {
  width: 100%;
  aspect-ratio: 1.1 / 1;
  object-fit: cover;
  border: 1px solid rgba(157, 243, 242, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-dark);
}

.team-polaroid {
  position: absolute;
  z-index: 4;
  width: clamp(84px, 11vw, 130px);
  aspect-ratio: 1;
  padding: 6px;
  overflow: hidden;
  background: #0f1c1f;
  border: 1px solid rgba(157, 243, 242, 0.7);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
  animation: photo-drift 5s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-polaroid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.team-polaroid-one {
  top: 4%;
  left: -7%;
  transform: rotate(-9deg);
}

.team-polaroid-two {
  right: -5%;
  bottom: 1%;
  transform: rotate(8deg);
  animation-delay: -2.4s;
}

@keyframes photo-drift {
  50% { transform: translateY(-8px); }
}

.sobre-orbit {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(157, 243, 242, 0.64);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  top: 8%;
  right: 2%;
  width: 46px;
  height: 46px;
}

.orbit-two {
  bottom: 7%;
  left: 0;
  width: 14px;
  height: 14px;
  background: var(--segundaria);
  box-shadow: 0 0 22px rgba(157, 243, 242, 0.8);
}

.sobre-texto {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.sobre-texto h2 {
  max-width: 620px;
  color: var(--branco);
  font-family: "Poppins", sans-serif;
  font-size: clamp(34px, 4.1vw, 57px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.estrelas {
  height: 18px;
  width: auto;
  margin: 2px 0 5px;
}

.estrelas-dark {
  filter: invert(1) brightness(0);
}

.sobre-texto > p:not(.sobre-tagline) {
  color: rgba(248, 251, 250, 0.8);
  font-size: clamp(15px, 1.16vw, 17px);
  font-weight: 300;
  line-height: 1.75;
  text-align: left;
}

.sobre-tagline {
  margin-top: 4px;
  color: var(--segundaria) !important;
  font-family: "Poppins", sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.03em;
}

.qualificacoes {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  flex-wrap: wrap;
}

.qualificacao {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  color: var(--branco);
  background: rgba(248, 251, 250, 0.07);
  border: 1px solid var(--borda);
  border-radius: 999px;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  transition: border-color 0.18s var(--ease), color 0.18s var(--ease);
}

.qualificacao:hover {
  border-color: var(--segundaria);
  color: var(--segundaria);
}

.qualificacao img {
  width: 18px;
  height: 18px;
}

.divisor-v {
  display: none;
}

.motion-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  filter: saturate(0.85) contrast(1.05) brightness(0.8);
}

/* Seção Serviços */
.servicos {
  padding: clamp(80px, 10vw, 140px) clamp(20px, 9vw, 152px);
  background: radial-gradient(circle at 50% 0%, rgba(52, 156, 157, 0.14), transparent 45%), #0a1114;
  border-top: 1px solid rgba(157, 243, 242, 0.12);
  border-bottom: 1px solid rgba(157, 243, 242, 0.12);
}

.servicos-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.servicos-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.servicos-head-copy {
  max-width: 620px;
}

.servicos-head-copy h2 {
  color: var(--branco);
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 3.8vw, 50px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.05em;
  margin-top: 14px;
}

.servicos-head-desc {
  max-width: 440px;
  color: rgba(248, 251, 250, 0.72);
  font-size: 15px;
  line-height: 1.65;
}

.servicos-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  width: 100%;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: rgba(16, 26, 29, 0.85);
  border: 1px solid rgba(157, 243, 242, 0.22);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--segundaria);
  box-shadow: 0 24px 56px rgba(157, 243, 242, 0.18);
}

.service-card-media {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
  background: #0d1719;
}

.service-card-media img,
.service-card-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.service-card:hover .service-card-media img,
.service-card:hover .service-card-media video {
  transform: scale(1.07);
}

.service-card-body {
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.service-card-body h3 {
  color: var(--branco);
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.service-card-body p {
  color: rgba(248, 251, 250, 0.7);
  font-size: 14px;
  line-height: 1.6;
}

.servicos-badges {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Seção Equipe */
.equipe {
  padding: clamp(80px, 10vw, 140px) clamp(20px, 9vw, 152px);
  background:
    radial-gradient(circle at 8% 10%, rgba(54, 149, 150, 0.14), transparent 23%),
    var(--primaria);
}

.equipe-head {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  max-width: 1180px;
  margin: 0 auto 38px;
}

.equipe-head h2 {
  margin-top: 12px;
  margin-bottom: 0;
  color: var(--branco);
  font-family: "Poppins", sans-serif;
  font-size: clamp(34px, 4vw, 53px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  word-spacing: normal;
  text-align: left;
}

.equipe-head > p {
  align-self: flex-end;
  max-width: 340px;
  color: rgba(248, 251, 250, 0.65);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
}

.equipe .h-scroll {
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 4px 4px 18px;
}

.perfil {
  flex: 0 0 auto;
  width: 288px;
  height: 428px;
  padding: 22px;
  background: rgba(20, 30, 33, 0.78);
  border: 1px solid rgba(214, 247, 245, 0.12);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.perfil:hover {
  transform: translateY(-6px);
  border-color: rgba(157, 243, 242, 0.62);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.perfil-foto {
  width: 118px;
  height: 118px;
  margin: 0 auto;
  border: 2px solid rgba(157, 243, 242, 0.72);
  border-radius: 50%;
  overflow: hidden;
}

.perfil-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.perfil-foto.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #122225;
  color: var(--segundaria);
  border: 2px solid var(--segundaria);
}

.perfil-nome {
  text-align: center;
}

.perfil-nome h3 {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--branco);
}

.perfil-nome p {
  margin-top: 4px;
  color: var(--segundaria);
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.perfil-desc {
  color: rgba(248, 251, 250, 0.72);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.55;
  text-align: center;
}

.perfil-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}

.perfil-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--primaria);
  background: #dffcfb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}

.perfil-link:hover {
  transform: translateY(-2px);
  background: var(--segundaria);
}

.perfil-line {
  height: 1px;
  width: 100%;
  background: rgba(157, 243, 242, 0.32);
}

/* Seção Rodapé */
.rodape {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  padding: 60px clamp(20px, 9vw, 152px) 36px;
  background: #050708;
  border-top: 1px solid rgba(157, 243, 242, 0.12);
}

.rodape-col {
  flex: 1;
  min-width: 0;
}

.rodape-contatos,
.rodape-servicos {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.rodape-contatos h3,
.rodape-servicos h3 {
  color: var(--segundaria);
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.rodape-contatos p,
.rodape-servicos p,
.rodape-logo p {
  color: rgba(248, 251, 250, 0.6);
  font-size: 13px;
  line-height: 1.5;
}

.social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--primaria);
  background: var(--branco);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}

.social a:hover {
  transform: translateY(-2px);
  background: var(--segundaria);
}

.rodape-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.rodape-logo img {
  width: 78px;
  height: 78px;
}

.rodape-servicos {
  align-items: flex-end;
  text-align: right;
}

/* Página Aplicações (`aplicacoes.html`) */
.page-aplicacoes .appbar {
  background: rgba(8, 11, 13, 0.94);
}

.aplicacoes-page {
  min-height: 68vh;
  padding: clamp(66px, 9vw, 130px) clamp(20px, 9vw, 152px) clamp(75px, 10vw, 140px);
  background:
    radial-gradient(circle at 94% 0%, rgba(49, 134, 136, 0.22), transparent 20%),
    var(--fundo);
}

.page-intro {
  max-width: 1180px;
  margin: 0 auto 48px;
}

.page-intro h1 {
  max-width: 800px;
  margin-top: 16px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(42px, 5vw, 74px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
}

.page-intro > p:last-child {
  max-width: 530px;
  margin-top: 20px;
  color: rgba(248, 251, 250, 0.68);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
}

.app-full {
  max-width: 1180px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0 auto;
}

.app-full-head {
  display: flex;
  align-items: center;
  gap: 15px;
}

.app-full-head img {
  width: 74px;
  height: 74px;
  border-radius: 17px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
}

.app-full-head h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(22px, 2.5vw, 30px);
  letter-spacing: -0.05em;
  color: var(--branco);
}

.dropdown {
  position: relative;
  width: 210px;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 210px;
  min-height: 44px;
  padding: 0 16px;
  color: var(--primaria);
  background: var(--segundaria);
  border: 1px solid var(--segundaria);
  border-radius: 999px;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s var(--ease);
}

.dropdown.open .dropdown-toggle {
  color: var(--primaria);
  background: #d7ffff;
  border-color: #d7ffff;
  border-radius: 22px 22px 0 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 210px;
  background: #152023;
  border: 1px solid var(--segundaria);
  border-top: 0;
  border-radius: 0 0 18px 18px;
  overflow: hidden;
  z-index: 20;
}

.dropdown-option {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  background: transparent;
  border: 0;
  color: var(--branco);
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s var(--ease);
}

.dropdown-option:hover {
  background: rgba(157, 243, 242, 0.15);
  color: var(--segundaria);
}

.galeria {
  display: flex;
  gap: 15px;
  padding: 12px 1px 20px;
}

.galeria img {
  flex: 0 0 auto;
  width: 250px;
  height: 525px;
  object-fit: cover;
  border: 1px solid rgba(157, 243, 242, 0.23);
  border-radius: 18px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.galeria img:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
}

.divisor-full {
  border: 0;
  border-top: 1px solid var(--borda);
  margin: 6px 0 0;
}

.app-sobre-titulo {
  margin-top: 4px;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--branco);
}

.app-sobre {
  color: rgba(248, 251, 250, 0.72);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.72;
  max-width: 720px;
}

/* Horizontal Scroll System */
.h-scroll {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  cursor: grab;
  scrollbar-width: thin;
  scrollbar-color: rgba(157, 243, 242, 0.65) transparent;
}

.h-scroll:active {
  cursor: grabbing;
}

.h-scroll.dragging {
  scroll-snap-type: none;
  user-select: none;
}

.h-scroll::-webkit-scrollbar {
  height: 6px;
}

.h-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.h-scroll::-webkit-scrollbar-thumb {
  background: rgba(157, 243, 242, 0.6);
  border-radius: 4px;
}

:focus-visible {
  outline: 2px solid var(--segundaria);
  outline-offset: 4px;
}

/* Media Queries Responsivas */
@media (max-width: 980px) {
  .hero {
    padding-inline: clamp(24px, 6vw, 72px);
    background-position: 66% center;
  }

  .motion-reel {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 45px;
    padding-inline: clamp(24px, 6vw, 72px);
  }

  .motion-reel-copy h2 {
    font-size: clamp(31px, 4vw, 45px);
  }

  .sobre {
    grid-template-columns: 0.82fr 1.18fr;
    gap: 50px;
    padding-inline: clamp(24px, 6vw, 72px);
  }

  .sobre-imagem {
    min-height: 330px;
  }

  .servicos {
    flex-direction: column;
    padding-inline: clamp(24px, 6vw, 72px);
  }

  .servicos-texto {
    max-width: 650px;
  }

  .servicos .h-scroll {
    width: 100%;
  }

  .equipe,
  .aplicacoes,
  .aplicacoes-page {
    padding-inline: clamp(24px, 6vw, 72px);
  }

  .rodape {
    padding-inline: clamp(24px, 6vw, 72px);
  }
}

@media (max-width: 760px) {
  .appbar {
    height: 70px;
  }

  .nav-desktop,
  .appbar .btn-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
    order: 2;
  }

  .brand {
    order: 1;
  }

  .hero {
    min-height: 720px;
    padding-top: 75px;
    background-position: 62% center;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(8, 11, 13, 0.96), rgba(8, 11, 13, 0.72)),
      linear-gradient(0deg, rgba(8, 11, 13, 0.94), transparent 60%);
  }

  .hero::after {
    background-size: 56px 56px;
    mask-image: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.72));
  }

  .hero-glow-one {
    right: 10%;
  }

  .hero-scroll {
    display: none;
  }

  .motion-reel {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-top: 75px;
    padding-bottom: 78px;
  }

  .motion-reel-copy {
    max-width: 610px;
  }

  .motion-player {
    max-width: 650px;
  }

  .app-card-box {
    grid-template-columns: 86px 1fr;
    gap: 18px;
    min-height: 0;
    padding: 22px;
  }

  .app-card-box img {
    width: 86px;
    height: 86px;
    border-radius: 18px;
  }

  .app-card-box .btn-download {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .sobre {
    grid-template-columns: 1fr;
    gap: 46px;
    padding-top: 78px;
    padding-bottom: 82px;
  }

  .sobre-imagem {
    display: flex;
    width: min(100%, 420px);
    min-height: 290px;
    margin: 0 auto;
  }

  .team-polaroid-one { left: -2%; }
  .team-polaroid-two { right: -2%; }

  .servicos-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .servicos-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .equipe-head {
    flex-direction: column;
    gap: 18px;
  }

  .equipe-head > p {
    align-self: flex-start;
  }

  .rodape {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .rodape-logo {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .rodape-contatos,
  .rodape-servicos {
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 665px;
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: clamp(43px, 14vw, 61px);
  }

  .hero-sub {
    font-size: 15px;
  }

  .hero-actions .btn {
    min-height: 43px;
    padding: 0 18px;
    font-size: 11px;
  }

  .hero-notes {
    margin-top: 35px;
    font-size: 9px;
  }

  .hero-notes span:not(:last-child)::after {
    margin: 0 8px;
  }

  .motion-player {
    border-radius: 18px;
  }

  .motion-player-top {
    top: 11px;
    left: 13px;
    right: 13px;
    font-size: 7px;
  }

  .motion-slide figcaption {
    left: 13px;
    right: 13px;
    bottom: 23px;
    font-size: 12px;
  }

  .motion-player-progress {
    left: 13px;
    right: 13px;
    bottom: 8px;
  }

  .aplicacoes-head {
    align-items: flex-start;
    gap: 21px;
    flex-direction: column;
  }

  .app-card-box {
    grid-template-columns: 72px 1fr;
    padding: 18px;
    border-radius: 20px;
  }

  .app-card-box img {
    width: 72px;
    height: 72px;
    border-radius: 15px;
  }

  .app-card-description {
    font-size: 13px;
  }

  .sobre-imagem {
    min-height: 250px;
  }

  .team-polaroid {
    width: 72px;
    padding: 4px;
    border-radius: 11px;
  }

  .team-polaroid-one { top: 0; left: -1%; }
  .team-polaroid-two { right: -1%; bottom: -3%; }

  .qualificacao {
    padding: 7px 11px;
    font-size: 11px;
  }

  .servicos-cards-grid {
    grid-template-columns: 1fr;
  }

  .equipe .h-scroll {
    margin-right: 0;
  }

  .perfil {
    width: 270px;
  }

  .rodape {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 48px;
    text-align: left;
  }

  .rodape-logo {
    grid-column: auto;
    grid-row: auto;
    align-items: flex-start;
    text-align: left;
  }

  .galeria img {
    width: 220px;
    height: 462px;
  }

  .page-intro h1 {
    font-size: clamp(39px, 13vw, 56px);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }

  .hero-scroll svg {
    animation: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .motion-slide,
  .motion-slide img,
  .motion-player-scan,
  .motion-player-progress span,
  .team-polaroid {
    animation: none;
  }

  .motion-slide-one {
    opacity: 1;
  }
}
