/* ==========================================================================
   LATITUDECELL — Design System
   Verde #0CF671 · Preto #1A1A1A · Branco #FFFFFF
   Títulos: Chakra Petch / Montserrat
   Texto: Organetto / Montserrat
   ========================================================================== */

@font-face {
  font-family: "Organetto";
  src: url("../fonts/organetto-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Network";
  src: url("../fonts/network.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --green: #0cf671;
  --green-dim: #0ad561;
  --green-glow: rgba(12, 246, 113, 0.35);
  --black: #1a1a1a;
  --black-deep: #0e0e0e;
  --black-soft: #212121;
  --card: #161616;
  --card-border: rgba(255, 255, 255, 0.08);
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.64);
  --muted-2: rgba(255, 255, 255, 0.42);

  --font-title: "Chakra Petch", "Montserrat", sans-serif;
  --font-body: "Organetto", "Montserrat", sans-serif;

  --container: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 18px;
  --radius-sm: 10px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  isolation: isolate;
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
}

h1, h2, h3, h4 {
  font-family: "Tektur", var(--font-title);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0;
  line-height: 1.08;
}

p {
  margin: 0;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

::selection {
  background: var(--green);
  color: var(--black);
}

/* -------------------- Energia lateral acompanhando a rolagem -------------------- */

.site-energy {
  position: fixed;
  top: 104px;
  right: 18px;
  bottom: 110px;
  width: 44px;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.site-energy.is-ready {
  opacity: 1;
}

.site-energy__svg {
  display: block;
  visibility: hidden;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-energy.has-progress .site-energy__svg {
  visibility: visible;
}

.site-energy__progress {
  stroke-width: 1.6;
  opacity: 0.7;
}

.site-energy__progress--halo {
  stroke-width: 7;
  opacity: 0.09;
}

.site-energy__head-halo {
  fill: var(--green);
  stroke: none;
  opacity: 0.12;
}

.site-energy__head-ring {
  stroke-width: 1.2;
  fill: var(--black-deep);
}

.site-energy__head-core {
  fill: var(--green);
  stroke: none;
}

/* A linha permanece atrás do conteúdo e dos controles fixos. */
main > section > .container,
.site-footer > .container {
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .site-energy {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-energy {
    transition: none;
  }
}

/* -------------------- Utility -------------------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

.section {
  padding: clamp(64px, 10vw, 128px) 0;
  position: relative;
}

.section--alt {
  background: var(--black-deep);
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(36px, 6vw, 64px);
}

.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-title {
  font-size: clamp(30px, 4.4vw, 52px);
}

.section-title .accent {
  color: var(--green);
}

.section-text {
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(15px, 1.6vw, 18px);
  max-width: 56ch;
}

.section-head--center .section-text {
  margin-left: auto;
  margin-right: auto;
}

/* Reveal-on-scroll only hides content once JS has confirmed it can run
   (html.js, set by an inline script in <head>). Without JS, everything
   stays fully visible — keeps the site accessible and crawlable if a
   script fails to load. */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
}

.reveal {
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

.js .reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
}

.reveal-stagger > * {
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.02s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.09s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.23s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.30s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.37s; }

/* -------------------- Buttons -------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 17px 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease);
  white-space: nowrap;
}

.btn--primary {
  border-color: rgba(255, 255, 255, 0.86);
  background: transparent;
  color: var(--white);
  box-shadow: none;
}

.btn--primary:hover {
  transform: translateY(-2px);
  border-color: var(--green);
  background: var(--green);
  box-shadow: none;
  color: var(--black);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.86);
  color: var(--white);
}

.btn--ghost:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 12px 22px;
  font-size: 12.5px;
}

.btn--block {
  width: 100%;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* -------------------- Header -------------------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: padding 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  padding: 12px 0;
  background: rgba(20, 20, 20, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-color: rgba(255, 255, 255, 0.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand img {
  width: 34px;
  height: 34px;
}

.brand-word {
  font-family: var(--font-title);
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.brand-word span {
  color: var(--green);
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav a {
  font-family: var(--font-title);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 999px;
  transition: color 0.3s var(--ease), background 0.3s var(--ease);
}

.nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: var(--white);
  align-items: center;
  justify-content: center;
}

.nav-toggle svg {
  width: 20px;
  height: 20px;
}

.icon-whatsapp-btn {
  display: none;
}

/* -------------------- Hero -------------------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 64px;
  background: var(--black);
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 2;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--card-border);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 26px;
}

.hero-location svg {
  width: 14px;
  height: 14px;
  color: var(--green);
}

.hero h1 {
  font-size: clamp(38px, 6vw, 76px);
  letter-spacing: 0.005em;
}

.hero h1 .accent {
  color: var(--green);
}

.hero-sub {
  margin-top: 24px;
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--muted);
  max-width: 46ch;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.hero-ctas--units {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 32px;
}

.hero-ctas--units .btn {
  position: relative;
  width: 300px;
  min-width: 0;
  justify-content: flex-start;
  padding-right: 52px;
  border-color: rgba(255, 255, 255, 0.86);
  background: transparent;
  box-shadow: none;
  color: var(--white);
}

.hero-ctas--units .btn svg {
  position: absolute;
  right: 20px;
}

.hero-ctas--units .btn:hover {
  border-color: var(--green);
  background: var(--green);
  box-shadow: none;
  color: var(--black);
}

/* Hero visual — abstract device composition (no stock imagery) */

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

.hero-orb {
  position: absolute;
  width: min(460px, 90%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, rgba(12, 246, 113, 0.28), transparent 62%);
  filter: blur(6px);
}

.device-mock {
  position: relative;
  width: min(248px, 58vw);
  aspect-ratio: 9 / 19.5;
  padding: 8px;
  box-shadow:
    inset 2px 0 2px rgba(255, 255, 255, 0.25),
    inset -2px 0 3px rgba(0, 0, 0, 0.85),
    inset 0 0 0 5px #050607,
    0 38px 86px -24px rgba(0, 0, 0, 0.92),
    0 0 80px -12px var(--green-glow);
  border: 1px solid rgba(202, 214, 219, 0.34);
  border-radius: 44px;
  background: linear-gradient(105deg, #111417 0%, #727c84 3%, #293035 7%, #050708 48%, #252b30 92%, #8a959c 97%, #121619 100%);
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

.device-mock::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.28),
    inset 0 -3px 4px rgba(0, 0, 0, 0.72),
    inset 1px 0 rgba(255, 255, 255, 0.16);
}

.device-mock__button {
  position: absolute;
  z-index: 0;
  width: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #a5afb4, #3c454b 55%, #111518);
  box-shadow: -2px 0 4px rgba(0, 0, 0, 0.75), inset 0 1px rgba(255, 255, 255, 0.28);
}

.device-mock__button--silent { top: 20.5%; left: -3px; height: 4.5%; }
.device-mock__button--volume-up { top: 28%; left: -3px; height: 8%; }
.device-mock__button--volume-down { top: 38%; left: -3px; height: 8%; }
.device-mock__button--power { top: 29%; right: -3px; height: 12%; transform: scaleX(-1); }

.device-mock__screen {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  border-radius: 36px;
  background:
    radial-gradient(ellipse 78% 50% at 70% 10%, rgba(28, 98, 56, 0.24), transparent 72%),
    radial-gradient(ellipse 75% 55% at 20% 85%, rgba(10, 55, 30, 0.27), transparent 75%),
    linear-gradient(160deg, #06120b 0%, #020403 65%, #0a130d 100%);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.92), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.device-mock__screen {
  color: #fff;
}

.device-mock__screen::before {
  content: "";
  position: absolute;
  z-index: 4;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.018) 18%, transparent 38%),
    linear-gradient(145deg, transparent 65%, rgba(255, 255, 255, 0.035) 79%, transparent 90%);
}

.device-mock__status {
  position: absolute;
  z-index: 5;
  top: 11px;
  right: 14px;
  left: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.9);
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
}

.device-mock__status-icons {
  display: flex;
  align-items: center;
  gap: 3px;
}

.device-mock__status-icons i {
  display: block;
  width: 3px;
  border-radius: 1px;
  background: rgba(255, 255, 255, 0.92);
}

.device-mock__status-icons i:nth-child(1) { height: 3px; }
.device-mock__status-icons i:nth-child(2) { height: 5px; }
.device-mock__status-icons i:nth-child(3) { height: 7px; }

.device-mock__status-icons b {
  position: relative;
  display: block;
  width: 12px;
  height: 6px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 2px;
}

.device-mock__status-icons b::after {
  content: "";
  position: absolute;
  inset: 1px;
  right: 3px;
  border-radius: 1px;
  background: rgba(255, 255, 255, 0.88);
}

.device-mock__island {
  position: absolute;
  z-index: 6;
  top: 5px;
  left: 50%;
  width: 39%;
  height: 20px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, #010202, #050908 55%, #000);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.035), inset 0 1px 2px rgba(255, 255, 255, 0.1), inset 0 -2px 3px rgba(0, 0, 0, 0.9);
}

.device-mock__island i {
  position: absolute;
  top: 9px;
  left: 35%;
  width: 27%;
  height: 2px;
  border-radius: 999px;
  background: #14201b;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
}

.device-mock__island b {
  position: absolute;
  top: 6px;
  right: 12px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 35%, #38535c 0 13%, #11262d 32%, #010403 74%);
  box-shadow: 0 0 0 1px #020403, inset 0 0 2px rgba(255, 255, 255, 0.24);
}

.device-mock__home {
  position: absolute;
  z-index: 5;
  bottom: 7px;
  left: 50%;
  width: 42%;
  height: 3px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}

/* Boot animation — logo powering on inside the phone screen.
   Ported from the LatitudeCell Animação project (circuit-logo.tsx). */
.logo-boot {
  position: relative;
  z-index: 2;
  width: 62%;
  aspect-ratio: 1;
  cursor: pointer;
}

.logo-boot-halo {
  position: absolute;
  inset: -18%;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(circle, var(--green-glow) 0%, transparent 65%);
  animation: logo-halo-pulse 3.4s ease-in-out infinite;
}

.logo-boot-orbit {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  animation: logo-spin 4s linear infinite;
  filter: drop-shadow(0 0 6px var(--green));
}

.logo-boot-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation:
    logo-power-in 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards,
    logo-breathe 3.4s ease-in-out 1.4s infinite;
}

@keyframes logo-power-in {
  0% {
    opacity: 0;
    transform: scale(0.88) rotate(-12deg);
    filter: brightness(0.3) drop-shadow(0 0 0 var(--green));
  }
  55% {
    opacity: 1;
    transform: scale(1.04) rotate(3deg);
    filter: brightness(1.35) drop-shadow(0 0 28px var(--green));
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    filter: brightness(1) drop-shadow(0 0 10px var(--green-glow));
  }
}

@keyframes logo-breathe {
  0%, 100% { filter: drop-shadow(0 0 8px var(--green-glow)); }
  50% { filter: drop-shadow(0 0 22px var(--green)); }
}

@keyframes logo-spin {
  to { transform: rotate(360deg); }
}

@keyframes logo-halo-pulse {
  0%, 100% { opacity: 0.25; transform: scale(0.95); }
  50% { opacity: 0.5; transform: scale(1.05); }
}

@media (prefers-reduced-motion: reduce) {
  .logo-boot-img,
  .logo-boot-halo,
  .logo-boot-orbit {
    animation: none;
  }
  .logo-boot-img {
    opacity: 1;
    filter: drop-shadow(0 0 8px var(--green-glow));
  }
}

.device-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(20, 20, 20, 0.9);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(10px);
  padding: 10px 16px;
  border-radius: 999px;
  font-family: var(--font-title);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 3;
  animation: float 6s ease-in-out infinite;
}

.device-chip svg {
  width: 15px;
  height: 15px;
  color: var(--green);
}

.device-chip--1 { top: 8%; left: -4%; animation-delay: 0.4s; }
.device-chip--2 { bottom: 14%; right: -8%; animation-delay: 1.2s; }
.device-chip--3 { top: 46%; right: -14%; animation-delay: 0.8s; }

.hero-ring {
  position: absolute;
  width: min(360px, 78%);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(12, 246, 113, 0.18);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@media (prefers-reduced-motion: reduce) {
  .device-mock,
  .device-chip {
    animation: none;
  }
}

/* -------------------- Assistência técnica -------------------- */

.repair-section {
  padding: clamp(84px, 9vw, 148px) 0;
  background:
    radial-gradient(ellipse 60% 80% at 90% 0%, rgba(12, 246, 113, 0.14), transparent 60%),
    var(--black);
}

.repair-section .section-head {
  max-width: 760px;
  margin: 0 auto;
}

.repair-section .section-title {
  font-size: clamp(24px, 3.6vw, 52px);
  line-height: 1.12;
}

.repair-services-intro {
  max-width: 60ch;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.repair-section .repair-timeline {
  margin-top: clamp(44px, 5vw, 72px);
  text-align: center;
}

.repair-section .timeline-step {
  text-align: center;
}

.repair-section .timeline-num {
  margin-inline: auto;
}

.repair-cta {
  margin-top: 36px;
  text-align: center;
}

/* -------------------- Trust strip -------------------- */

.trust-strip {
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  background: #000;
}

.trust-inner {
  padding-top: clamp(64px, 8vw, 112px);
}

.trust-inner .section-head {
  margin-bottom: clamp(36px, 5vw, 60px);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding-bottom: clamp(38px, 5vw, 64px);
}

.trust-item {
  min-width: 0;
  padding: 0 clamp(14px, 2vw, 28px);
}

.trust-item + .trust-item {
  border-left: 1px solid var(--card-border);
}

.trust-item svg {
  display: block;
  width: 22px;
  height: 22px;
  margin-bottom: 16px;
  color: var(--green);
}

.trust-item h3 {
  position: relative;
  padding-bottom: 14px;
  font-size: 13px;
  line-height: 1.2;
}

.trust-item h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 22px;
  height: 1px;
  background: var(--green);
}

.trust-item p {
  margin-top: 13px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.trust-testimonials {
  padding-bottom: clamp(64px, 9vw, 112px);
}

.trust-testimonials-lead {
  max-width: 52ch;
  margin: 0 auto clamp(12px, 2vw, 24px);
  padding: 0 var(--gutter);
  color: var(--muted);
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 1.6;
  text-align: center;
}

.trust-testimonials-title {
  max-width: 680px;
  margin: 0 auto clamp(20px, 3vw, 32px);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.35;
  text-align: center;
}

/* -------------------- Cards grid (generic) -------------------- */

.grid {
  display: grid;
  gap: 20px;
}

.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--6 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(12, 246, 113, 0.4);
  background: #191919;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(12, 246, 113, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--green);
}

.card h3 {
  font-size: 17px;
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
  font-size: 14.5px;
}

.card-num {
  font-family: var(--font-title);
  font-size: 13px;
  color: var(--green);
  margin-bottom: 14px;
  letter-spacing: 0.1em;
}

/* -------------------- Rotina + processo -------------------- */

.emotional {
  background:
    radial-gradient(ellipse 60% 80% at 90% 0%, rgba(12, 246, 113, 0.14), transparent 60%),
    var(--black);
  text-align: center;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.emotional-title {
  font-size: clamp(28px, 5vw, 48px);
  max-width: 16ch;
  margin: 0 auto;
}

.emotional-title .accent { color: var(--green); }

.emotional-text {
  max-width: 60ch;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(15px, 1.6vw, 18px);
}

/* -------------------- Process timeline -------------------- */

.timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  counter-reset: step;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 4%;
  right: 4%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--card-border) 10%, var(--card-border) 90%, transparent);
}

.timeline-step {
  position: relative;
  z-index: 1;
  text-align: left;
}

.timeline-num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--black-deep);
  border: 1px solid var(--green);
  color: var(--green);
  font-family: var(--font-title);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.timeline-step h3 {
  font-size: 13.5px;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.timeline-step p {
  font-size: 13px;
  color: var(--muted-2);
}

/* -------------------- Aparelhos (iPhone + Android) -------------------- */

.devices-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 17% 46%, rgba(12, 246, 113, 0.1), transparent 27%),
    radial-gradient(circle at 83% 46%, rgba(12, 246, 113, 0.1), transparent 27%),
    var(--black-deep);
}

.devices-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.device-option {
  display: flex;
  flex-direction: column;
  padding: clamp(32px, 5vw, 56px);
}

.device-option--iphone {
  position: relative;
}

.device-option-copy {
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.device-option + .device-option {
  border-left: 1px solid var(--card-border);
}

.device-option .section-title {
  font-size: clamp(28px, 3.2vw, 42px);
}

.device-option .section-text {
  min-height: 3.2em;
}

.device-feature-list {
  display: grid;
  gap: 12px;
  flex: 1;
  margin: 28px 0 34px;
}

.device-feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: var(--white);
}

.device-feature-list svg {
  width: 18px;
  height: 18px;
  color: var(--green);
  flex-shrink: 0;
}

.devices-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.devices-cta .btn {
  width: min(400px, 100%);
}

/* iPhone físico adaptado do componente enviado */
.offer-iphone-stage {
  position: absolute;
  top: 50%;
  left: max(-205px, calc((100vw - var(--container)) / -2 + var(--gutter)));
  width: 210px;
  translate: 0 -50%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 18px 0;
  perspective: 1050px;
  animation: offer-iphone-float 5s ease-in-out infinite;
}

.offer-iphone-stage::before {
  content: "";
  position: absolute;
  width: 130%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(12, 246, 113, 0.18), transparent 68%);
  filter: blur(12px);
  pointer-events: none;
}

.offer-iphone {
  --iphone-rx: -1deg;
  --iphone-ry: 14deg;
  --iphone-rz: -3deg;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 210px;
  aspect-ratio: 280 / 580;
  border-radius: 17.2% / 8.3%;
  border: 1px solid rgba(174, 185, 194, 0.36);
  background: linear-gradient(105deg,
    #101417 0%, #737c82 3%, #252b30 8%,
    #060809 48%, #252c31 91%, #8b949a 97%, #161b1e 100%);
  box-shadow:
    inset 2px 0 2px rgba(255, 255, 255, 0.22),
    inset -2px 0 3px rgba(0, 0, 0, 0.85),
    inset 0 0 0 5px #020303,
    0 42px 68px -23px rgba(0, 0, 0, 0.95),
    0 14px 25px -8px rgba(0, 0, 0, 0.7),
    0 0 34px rgba(12, 246, 113, 0.08);
  transform: rotateX(var(--iphone-rx)) rotateY(var(--iphone-ry)) rotateZ(var(--iphone-rz));
  transform-style: preserve-3d;
  transition: transform 180ms ease-out;
  will-change: transform;
}

.offer-iphone::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  border-radius: inherit;
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.3),
    inset 0 -3px 4px rgba(0, 0, 0, 0.75),
    inset 1px 0 rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.offer-iphone__button {
  position: absolute;
  width: 4px;
  z-index: 0;
  background: linear-gradient(90deg, #a4adb2, #394249 55%, #101416);
  border-radius: 2px 0 0 2px;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.8), inset 0 1px rgba(255, 255, 255, 0.3);
}

.offer-iphone__button--silent { top: 20.5%; left: -3px; height: 4.5%; }
.offer-iphone__button--volume-up { top: 28%; left: -3px; height: 8%; }
.offer-iphone__button--volume-down { top: 38%; left: -3px; height: 8%; }
.offer-iphone__button--power {
  top: 29%;
  right: -3px;
  height: 12%;
  border-radius: 0 2px 2px 0;
  transform: scaleX(-1);
}

.offer-iphone__screen {
  position: absolute;
  inset: 5px 5px 7px;
  overflow: hidden;
  border: 1px solid #000;
  border-radius: 15.7% / 7.4%;
  color: #fff;
  background:
    radial-gradient(ellipse 85% 45% at 78% 12%, rgba(21, 88, 49, 0.2), transparent 75%),
    radial-gradient(ellipse 80% 55% at 20% 85%, rgba(13, 47, 28, 0.25), transparent 75%),
    linear-gradient(160deg, #07110c 0%, #020403 65%, #0a120d 100%);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.95), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.offer-iphone__glare {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.02) 18%, transparent 37%),
    linear-gradient(145deg, transparent 64%, rgba(255, 255, 255, 0.035) 79%, transparent 90%);
}

.offer-iphone__island {
  position: absolute;
  z-index: 6;
  top: 5px;
  left: 50%;
  width: 38%;
  height: 20px;
  border-radius: 999px;
  background: linear-gradient(180deg, #010202, #050908 55%, #000);
  transform: translateX(-50%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.035),
    inset 0 1px 2px rgba(255, 255, 255, 0.1),
    inset 0 -2px 3px rgba(0, 0, 0, 0.9);
}

.offer-iphone__island-speaker {
  position: absolute;
  top: 9px;
  left: 35%;
  width: 27%;
  height: 2px;
  border-radius: 999px;
  background: #121b1b;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
}

.offer-iphone__island-lens {
  position: absolute;
  top: 6px;
  right: 12px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 35%, #34424a 0 12%, #11232a 30%, #020608 72%);
  box-shadow: 0 0 0 1px #020403, inset 0 0 2px rgba(255, 255, 255, 0.24);
}

.offer-iphone__island-lens::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
}

.offer-iphone__status {
  position: absolute;
  z-index: 5;
  top: 9px;
  left: 15px;
  right: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.offer-iphone__signals {
  display: flex;
  align-items: flex-end;
  gap: 2px;
}

.offer-iphone__signals i {
  display: block;
  width: 2px;
  height: 4px;
  border-radius: 1px;
  background: #fff;
}

.offer-iphone__signals i:nth-child(2) { height: 6px; }
.offer-iphone__signals i:nth-child(3) { height: 8px; }

.offer-iphone__wifi {
  width: 10px;
  height: 10px;
  margin-left: 1px;
}

.offer-iphone__signals b {
  display: block;
  width: 12px;
  height: 6px;
  margin-left: 3px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 2px;
  box-shadow: inset 0 0 0 1.5px #fff;
}

.offer-iphone__app {
  position: absolute;
  inset: 42px 15px 24px;
  display: flex;
  flex-direction: column;
}

.offer-iphone__app-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.offer-iphone__app-head div {
  display: flex;
  flex-direction: column;
}

.offer-iphone__app-head small {
  color: rgba(255, 255, 255, 0.46);
  font-size: 5.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.offer-iphone__app-head strong {
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 400;
}

.offer-iphone__app-head img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  border-radius: 8px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.offer-iphone__verification {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-iphone__ring {
  width: 112px;
  aspect-ratio: 1;
  padding: 7px;
  border-radius: 50%;
  background: conic-gradient(var(--green) 0 88%, rgba(255, 255, 255, 0.06) 88% 100%);
  box-shadow: 0 0 28px rgba(12, 246, 113, 0.12);
}

.offer-iphone__ring > div {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #07100b;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
}

.offer-iphone__ring svg {
  width: 22px;
  height: 22px;
  margin-bottom: 5px;
  color: var(--green);
}

.offer-iphone__ring strong {
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}

.offer-iphone__ring span {
  margin-top: 4px;
  color: var(--green);
  font-size: 5px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.offer-iphone__checks {
  display: grid;
  gap: 7px;
}

.offer-iphone__check {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28), inset 0 1px rgba(255, 255, 255, 0.04);
}

.offer-iphone__check > span {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 8px;
  color: var(--green);
  background: rgba(12, 246, 113, 0.09);
  border: 1px solid rgba(12, 246, 113, 0.18);
}

.offer-iphone__check svg {
  width: 13px;
  height: 13px;
}

.offer-iphone__check div {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.offer-iphone__check strong {
  font-size: 7.5px;
  line-height: 1.3;
}

.offer-iphone__check small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 6px;
}

.offer-iphone__home {
  position: absolute;
  z-index: 5;
  bottom: 7px;
  left: 50%;
  width: 42%;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  transform: translateX(-50%);
}

@keyframes offer-iphone-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.device-option--android {
  position: relative;
}

.offer-xiaomi-stage {
  position: absolute;
  top: 50%;
  right: max(-205px, calc((100vw - var(--container)) / -2 + var(--gutter)));
  width: 225px;
  translate: 0 -50%;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1050px;
  pointer-events: none;
  animation: offer-xiaomi-float 5.6s ease-in-out infinite;
}

.offer-xiaomi-stage::before {
  content: "";
  position: absolute;
  width: 130%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(12, 246, 113, 0.18), transparent 68%);
  filter: blur(12px);
  pointer-events: none;
}

.offer-xiaomi {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 220px;
  aspect-ratio: 280 / 580;
  border-radius: 16% / 7.8%;
  border: 1px solid rgba(170, 191, 175, 0.3);
  background: linear-gradient(105deg,
    #111914 0%, #68796b 3%, #222d25 8%,
    #050806 48%, #1b2820 91%, #7f9082 97%, #121b15 100%);
  box-shadow:
    inset 2px 0 2px rgba(255, 255, 255, 0.2),
    inset -2px 0 3px rgba(0, 0, 0, 0.9),
    inset 0 0 0 5px #030504,
    0 42px 68px -23px rgba(0, 0, 0, 0.95),
    0 14px 25px -8px rgba(0, 0, 0, 0.7),
    0 0 34px rgba(12, 246, 113, 0.08);
  transform: rotateX(2deg) rotateY(-17deg) rotateZ(3deg);
  transform-style: preserve-3d;
}

.offer-xiaomi::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  border-radius: inherit;
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.3),
    inset 0 -3px 4px rgba(0, 0, 0, 0.75),
    inset 1px 0 rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.offer-xiaomi__earpiece {
  position: absolute;
  z-index: 4;
  top: 2px;
  left: 50%;
  width: 30px;
  height: 2px;
  border-radius: 999px;
  background: #1d2a22;
  transform: translateX(-50%);
  box-shadow: 0 1px rgba(255, 255, 255, 0.12);
}

.offer-xiaomi__button {
  position: absolute;
  right: -3px;
  width: 4px;
  border-radius: 0 2px 2px 0;
  background: linear-gradient(90deg, #26362b, #89988b 48%, #17221a);
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.8), inset 0 1px rgba(255, 255, 255, 0.32);
}

.offer-xiaomi__button--volume { top: 23%; height: 13%; }
.offer-xiaomi__button--power { top: 40%; height: 9%; }

.offer-xiaomi__screen {
  position: absolute;
  inset: 5px 5px 7px;
  overflow: hidden;
  border: 1px solid #000;
  border-radius: 15.2% / 7.2%;
  color: var(--white);
  background:
    radial-gradient(ellipse 85% 45% at 80% 10%, rgba(21, 88, 49, 0.22), transparent 75%),
    radial-gradient(ellipse 80% 55% at 20% 85%, rgba(13, 47, 28, 0.26), transparent 75%),
    linear-gradient(160deg, #07110c 0%, #020403 65%, #0a120d 100%);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.95), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.offer-xiaomi__screen::after {
  content: "";
  position: absolute;
  z-index: 4;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02) 18%, transparent 37%),
    linear-gradient(145deg, transparent 64%, rgba(255, 255, 255, 0.035) 79%, transparent 90%);
}

.offer-xiaomi__camera {
  position: absolute;
  z-index: 5;
  top: 7px;
  left: 50%;
  width: 13px;
  height: 13px;
  border: 2px solid #020403;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 35%, #28433b 0 10%, #0a1b18 28%, #020604 70%);
  transform: translateX(-50%);
  box-shadow: 0 0 0 2px #020403, inset 0 0 2px rgba(255, 255, 255, 0.28);
}

.offer-xiaomi__camera::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
}

.offer-xiaomi__status {
  position: absolute;
  top: 11px;
  left: 17px;
  right: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 7px;
  font-weight: 700;
}

.offer-xiaomi__indicators {
  display: flex;
  align-items: center;
  gap: 3px;
}

.offer-xiaomi__signal {
  display: flex;
  align-items: flex-end;
  gap: 1px;
  height: 7px;
}

.offer-xiaomi__signal i {
  width: 2px;
  border-radius: 1px;
  background: var(--white);
}

.offer-xiaomi__signal i:nth-child(1) { height: 3px; }
.offer-xiaomi__signal i:nth-child(2) { height: 4px; }
.offer-xiaomi__signal i:nth-child(3) { height: 6px; }
.offer-xiaomi__signal i:nth-child(4) { height: 7px; }

.offer-xiaomi__wifi {
  width: 10px;
  height: 10px;
}

.offer-xiaomi__battery {
  display: block;
  width: 12px;
  height: 6px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 2px;
  box-shadow: inset 0 0 0 1.5px var(--white);
}

.offer-xiaomi__app {
  position: absolute;
  inset: 49px 17px 22px;
  display: flex;
  flex-direction: column;
}

.offer-xiaomi__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.offer-xiaomi__head div {
  display: flex;
  flex-direction: column;
}

.offer-xiaomi__head small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.offer-xiaomi__head strong {
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
}

.offer-xiaomi__head img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.offer-xiaomi__selection {
  flex: 1;
  min-height: 145px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 20px 0 15px;
  border: 1px solid rgba(12, 246, 113, 0.26);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 35%, rgba(12, 246, 113, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(12, 246, 113, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06), 0 18px 30px rgba(0, 0, 0, 0.3);
}

.offer-xiaomi__selection-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 13px;
  border: 2px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  box-shadow: 0 0 22px rgba(12, 246, 113, 0.18);
}

.offer-xiaomi__selection-icon svg {
  width: 23px;
  height: 23px;
}

.offer-xiaomi__selection small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.offer-xiaomi__selection strong {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}

.offer-xiaomi__selection > span:last-child {
  color: var(--green);
  font-size: 7px;
}

.offer-xiaomi__checks {
  display: grid;
  gap: 8px;
}

.offer-xiaomi__checks > div {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
}

.offer-xiaomi__checks span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
  border: 1px solid rgba(12, 246, 113, 0.2);
  border-radius: 7px;
  background: rgba(12, 246, 113, 0.1);
  color: var(--green);
}

.offer-xiaomi__checks svg {
  width: 13px;
  height: 13px;
}

.offer-xiaomi__checks > div > div {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.offer-xiaomi__checks strong {
  font-size: 9px;
  font-weight: 600;
  line-height: 1.3;
}

.offer-xiaomi__checks small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 7px;
}

.offer-xiaomi__ready {
  margin-top: 15px;
  color: var(--green);
  font-family: var(--font-title);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-align: center;
}

@keyframes offer-xiaomi-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* -------------------- Trade-in -------------------- */

.tradein {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 40px;
  align-items: center;
}

.tradein-visual {
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  line-height: 0;
}

.tradein-photo {
  width: 100%;
  height: auto;
  display: block;
}

/* -------------------- Accessories -------------------- */

.acc-grid {
  grid-template-columns: repeat(4, 1fr);
}

.acc-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 26px 20px;
  text-align: center;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}

.acc-card:hover {
  transform: translateY(-4px);
  border-color: var(--green);
}

.acc-card svg {
  width: 26px;
  height: 26px;
  color: var(--green);
  margin: 0 auto 14px;
}

.acc-card span {
  font-family: var(--font-title);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* -------------------- Testimonials -------------------- */

.testimonial-cf {
  --testi-cf-card-width: clamp(270px, 34vw, 390px);
  --testi-cf-card-height: clamp(290px, 30vw, 348px);
  --testi-cf-pitch: 1.05;
  --testi-cf-edge-boost: 1;
  position: relative;
  isolation: isolate;
  width: 100%;
}

.testimonial-cf-frame {
  position: relative;
  width: 100%;
  outline: none;
  touch-action: pan-y;
  user-select: none;
}

.testimonial-cf-frame:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
  border-radius: var(--radius);
}

.testimonial-cf-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testimonial-cf.is-ready {
  overflow: hidden;
}

.testimonial-cf.is-ready .testimonial-cf-frame {
  overflow: hidden;
  padding: 34px 0;
  cursor: grab;
  perspective: calc(var(--testi-cf-card-width) * 3);
  perspective-origin: 50% 50%;
}

.testimonial-cf.is-ready .testimonial-cf-frame:active,
.testimonial-cf.is-ready .testimonial-cf-frame.is-dragging {
  cursor: grabbing;
}

.testimonial-cf.is-ready .testimonial-cf-track {
  position: relative;
  display: block;
  width: 100%;
  height: var(--testi-cf-card-height);
  transform-style: preserve-3d;
  user-select: none;
}

.testi-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 35%),
    linear-gradient(145deg, #1a1a1a, #111);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 28px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.testimonial-cf.is-ready .testimonial-cf-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: var(--testi-cf-card-width);
  height: 100%;
  margin: 0;
  overflow: hidden;
  transform-origin: center center;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  box-shadow:
    0 24px 40px -18px rgba(0, 0, 0, 0.72),
    0 10px 18px -14px rgba(0, 0, 0, 0.65);
  will-change: transform, opacity;
}

.testimonial-cf-card.is-active {
  border-color: rgba(12, 246, 113, 0.5);
}

.testi-stars {
  display: flex;
  gap: 4px;
  color: var(--green);
  margin-bottom: 16px;
}

.testi-stars svg { width: 16px; height: 16px; }

.testi-text {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--white);
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
}

.testi-name {
  font-family: var(--font-title);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.testi-service {
  font-size: 12.5px;
  color: var(--muted-2);
  margin-top: 2px;
}

.testi-note {
  margin-top: 30px;
  text-align: center;
  font-size: 13px;
  color: var(--muted-2);
}

/* Computador: o carrossel de depoimentos ocupa a largura toda da tela. */
@media (min-width: 1001px) {
  .trust-testimonials {
    max-width: none;
    padding-inline: 0;
  }

  .testimonial-cf {
    --testi-cf-card-width: clamp(340px, 25vw, 480px);
    --testi-cf-card-height: clamp(290px, 16.5vw, 330px);
  }

  .testimonial-cf.is-ready .testimonial-cf-frame {
    -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
  }

  .trust-testimonials .testi-note {
    padding-inline: var(--gutter);
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-cf.is-ready .testimonial-cf-card {
    will-change: auto;
  }
}

/* -------------------- Cuidado & Garantia -------------------- */

.care-warranty {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 44px;
  align-items: center;
}

.care-block h3 {
  font-size: clamp(19px, 2.4vw, 26px);
  margin: 14px 0 12px;
}

.care-block p {
  color: var(--muted);
  font-size: 14.5px;
  max-width: 42ch;
}

.care-cta {
  margin-top: 22px;
}

.care-divider {
  width: 1px;
  align-self: stretch;
  background: var(--card-border);
}

/* -------------------- FAQ -------------------- */

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: none;
  color: var(--white);
  text-align: left;
  padding: 20px 24px;
  font-family: var(--font-title);
  font-size: 14.5px;
  letter-spacing: 0.01em;
  text-transform: none;
}

.faq-question .plus {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--card-border);
  flex-shrink: 0;
  position: relative;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}

.faq-question .plus::before,
.faq-question .plus::after {
  content: "";
  position: absolute;
  background: var(--green);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-question .plus::before { width: 10px; height: 1.5px; }
.faq-question .plus::after { width: 1.5px; height: 10px; transition: opacity .3s var(--ease); }

.faq-item.is-open .plus {
  transform: rotate(45deg);
  border-color: var(--green);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-answer-inner {
  padding: 0 24px 22px;
  color: var(--muted);
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.7;
}

/* -------------------- Location -------------------- */

.location-section {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 9vw, 136px) 0;
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  background:
    radial-gradient(ellipse 72% 110% at 96% 42%, rgba(12, 246, 113, 0.13), transparent 66%),
    var(--black-deep);
}

.location-section::before,
.location-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.location-section::before {
  inset: 0;
  opacity: 0.34;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.075) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.075) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5), transparent 70%);
}

.location-section::after {
  top: -28%;
  right: -4%;
  width: min(540px, 55vw);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(255, 255, 255, 0.035), 0 0 0 84px rgba(255, 255, 255, 0.025);
}

.location-section__content {
  position: relative;
  z-index: 1;
  max-width: min(1120px, calc(100% - var(--gutter) - var(--gutter)));
  text-align: center;
}

.location-section h2 {
  max-width: 16ch;
  margin-inline: auto;
  font-family: "Chakra Petch", "Montserrat", sans-serif;
  font-size: clamp(38px, 4.7vw, 62px);
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 1;
}

.location-section__intro {
  max-width: 74ch;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(14px, 1.25vw, 16px);
  font-weight: 500;
  line-height: 1.75;
}

.location-section__details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
  gap: clamp(24px, 4vw, 52px);
  margin-top: clamp(34px, 4vw, 50px);
}

.location-section__unit {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.location-section__unit h3 {
  margin-bottom: 14px;
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
}

.location-section__business,
.location-section__unit address,
.location-section__route {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.7;
}

.location-section__business {
  color: var(--white);
  font-family: "Chakra Petch", "Montserrat", sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
}

.location-section__unit address {
  min-height: calc(1.7em * 3);
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.83);
  font-style: normal;
}

.location-section__phone {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  margin-bottom: 14px;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.location-section__phone:hover {
  transform: translateY(-2px);
  border-color: var(--green);
  color: var(--green);
}

.location-section__phone svg {
  width: 17px;
  height: 17px;
  color: var(--green);
}

.location-section__route {
  max-width: 56ch;
  margin: clamp(30px, 4vw, 44px) auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.location-section__directions {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.location-section__directions:hover {
  transform: translateY(-2px);
  border-color: var(--green);
  color: var(--green);
}

.location-section__directions svg {
  width: 17px;
  height: 17px;
}

/* -------------------- CTA Final -------------------- */

.cta-final {
  background:
    radial-gradient(ellipse 70% 90% at 50% 0%, rgba(12, 246, 113, 0.16), transparent 60%),
    var(--black-deep);
  text-align: center;
  border-top: 1px solid var(--card-border);
}

.cta-final h2 {
  font-size: clamp(30px, 5vw, 54px);
  max-width: 18ch;
  margin: 0 auto;
}

.cta-final .section-text {
  margin-left: auto;
  margin-right: auto;
}

.cta-final-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

/* -------------------- Footer -------------------- */

.site-footer {
  background: var(--black-deep);
  border-top: 1px solid var(--card-border);
  padding: 64px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(160px, 0.65fr) minmax(220px, 0.7fr);
  gap: clamp(32px, 7vw, 128px);
  align-items: start;
  padding-bottom: 46px;
  border-bottom: 1px solid var(--card-border);
}

.footer-brand p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 16px;
  max-width: 34ch;
}

.footer-brand__location {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--muted-2);
  font-family: var(--font-title);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-brand__location svg { width: 15px; height: 15px; color: var(--green); }

.footer-col h4 {
  font-family: var(--font-title);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 18px;
}

.footer-col ul {
  display: grid;
  gap: 12px;
}

.footer-col a {
  font-size: 14px;
  color: var(--muted);
  transition: color .3s var(--ease);
}

.footer-col a:hover {
  color: var(--green);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-socials a {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  color: var(--green);
  transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}

.footer-socials a:hover {
  transform: translateY(-3px);
  border-color: var(--green);
  background: rgba(12, 246, 113, 0.08);
}

.footer-socials svg {
  width: 28px;
  height: 28px;
}

.footer-bottom {
  padding-top: 26px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--white);
}

.footer-credit {
  color: var(--white);
  transition: color .3s var(--ease);
}

.footer-credit:hover {
  color: var(--green);
}

/* -------------------- WhatsApp Floating Button -------------------- */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  background: var(--black-deep);
  color: var(--white);
  padding: 15px 22px;
  border-radius: 999px;
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 14px 40px -10px rgba(0, 0, 0, 0.5);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease);
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: var(--green);
  background: var(--green);
  box-shadow: 0 14px 40px -10px rgba(12, 246, 113, 0.35);
  color: var(--black);
}

.whatsapp-float svg {
  width: 20px;
  height: 20px;
}

/* -------------------- Mobile menu -------------------- */

.nav-mobile {
  display: none;
}

/* ============================= RESPONSIVE ============================= */

@media (max-width: 1400px) {
  .devices-panel {
    grid-template-columns: 1fr;
  }

  .device-option--iphone {
    display: grid;
    grid-template-columns: clamp(170px, 20vw, 210px) minmax(0, 1fr);
    grid-template-areas: "iphone copy";
    align-items: center;
    gap: clamp(28px, 5vw, 72px);
  }

  .device-option--android {
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(220px, 28vw, 330px);
    grid-template-areas: "copy android";
    align-items: center;
    gap: clamp(28px, 5vw, 72px);
  }

  .device-option-copy {
    grid-area: copy;
  }

  .offer-iphone-stage {
    grid-area: iphone;
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    translate: none;
  }

  .offer-xiaomi-stage {
    grid-area: android;
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    max-width: 225px;
    margin: 0 auto;
    translate: none;
  }

  .device-option + .device-option {
    border-left: 0;
    border-top: 1px solid var(--card-border);
  }

  .device-option .section-text {
    min-height: 0;
  }
}

@media (max-width: 1080px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { min-height: 320px; margin-top: 20px; }
  .tradein { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .location-section__details { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .care-warranty { grid-template-columns: 1fr; }
  .care-divider { width: 100%; height: 1px; }
  .grid--3, .grid--4, .grid--6 { grid-template-columns: repeat(2, 1fr); }
  .acc-grid { grid-template-columns: repeat(3, 1fr); }
  .timeline { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .timeline::before { display: none; }
  .trust-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 38px; }
  .trust-item:nth-child(4) { border-left: 0; }
  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-socials {
    grid-column: auto;
  }
}

@media (min-width: 1001px) {
  .nav a {
    padding: 10px 9px;
    letter-spacing: 0.05em;
  }
}

@media (max-width: 1000px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }

  .nav-mobile {
    position: fixed;
    inset: 0;
    height: 100dvh;
    background: rgba(14, 14, 14, 0.98);
    backdrop-filter: blur(10px);
    z-index: 99;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    padding: 104px var(--gutter) calc(20px + env(safe-area-inset-bottom));
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
  }

  .nav-mobile.is-open {
    transform: translateX(0);
  }

  .nav-mobile ul {
    display: grid;
    gap: 0;
  }

  .nav-mobile a {
    font-family: var(--font-title);
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 10px 0;
    border-bottom: 1px solid var(--card-border);
    display: block;
  }

  .nav-mobile .btn {
    margin-top: 20px;
    flex-shrink: 0;
  }

  .nav-close {
    position: absolute;
    top: 22px;
    right: var(--gutter);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--card-border);
    background: transparent;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-close svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 720px) {
  /* Celular: topo só com a marca centralizada (sem WhatsApp nem menu). */
  .site-header .container {
    justify-content: center;
  }

  .header-actions {
    display: none;
  }

  /* Celular: a imagem do aparelho vem antes do título. */
  .hero {
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .hero .container {
    gap: 4px;
  }

  .hero-location {
    margin-bottom: 12px;
  }

  /* A primeira tela mostra o celular e, logo abaixo, só o título:
     a altura do celular se ajusta para o título terminar no fim da tela. */
  .hero-visual {
    order: -1;
    height: calc(100svh - 234px);
    min-height: 250px;
    margin-top: 0;
    padding-bottom: 0;
  }

  .hero-visual .device-mock {
    width: auto;
    height: clamp(220px, calc(100svh - 264px), 440px);
    border-radius: 30px;
  }

  .hero-visual .device-chip--1 { left: 0; }
  .hero-visual .device-chip--2,
  .hero-visual .device-chip--3 { right: 0; }

  .location-section {
    padding: 72px 0;
  }

  .location-section::after {
    top: -7%;
    right: -25%;
    width: 310px;
  }

  .location-section__details {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  /* Empilhadas no celular: a última unidade também fecha com uma linha. */
  .location-section__unit:last-child {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }

  .testimonial-cf {
    --testi-cf-card-width: clamp(220px, 62vw, 260px);
    --testi-cf-card-height: clamp(370px, 108vw, 430px);
    --testi-cf-pitch: 0.78;
    --testi-cf-edge-boost: 1.5;
    width: calc(100% + var(--gutter) + var(--gutter));
    margin-left: calc(0px - var(--gutter));
  }
  .testimonial-cf.is-ready .testimonial-cf-frame { padding: 26px 0; }
  .testimonial-cf:not(.is-ready) .testimonial-cf-track { grid-template-columns: 1fr; }
  .testimonial-cf.is-ready .testi-card {
    display: flex;
    flex-direction: column;
  }
  .testimonial-cf.is-ready .testi-text {
    display: block;
    -webkit-line-clamp: unset;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding-right: 5px;
    touch-action: pan-y;
    scrollbar-width: thin;
    scrollbar-color: rgba(12, 246, 113, 0.7) transparent;
  }
  .testimonial-cf.is-ready .testi-text::-webkit-scrollbar {
    width: 3px;
  }
  .testimonial-cf.is-ready .testi-text::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(12, 246, 113, 0.7);
  }
  .grid--3, .grid--4, .grid--6 { grid-template-columns: 1fr; }
  .acc-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 32px; }
  .trust-item { padding-inline: 12px; }
  .trust-item:nth-child(n) { border-left: 0; }
  .trust-item:nth-child(even) { border-left: 1px solid var(--card-border); }
  .trust-item:last-child { grid-column: 1 / -1; max-width: 50%; justify-self: center; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-brand, .footer-socials { grid-column: auto; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 13px; bottom: 16px; right: 16px; }
}

@media (max-width: 480px) {
  .timeline { grid-template-columns: 1fr 1fr; }
  .hero-ctas .btn,
  .hero-ctas { width: 100%; }
  .hero-ctas .btn { width: 100%; }
}

@media (max-width: 640px) {
  .device-option--iphone,
  .device-option--android {
    grid-template-columns: 1fr;
  }

  .device-option--iphone {
    grid-template-areas:
      "iphone"
      "copy";
  }

  .device-option--android {
    grid-template-areas:
      "android"
      "copy";
  }

  .offer-iphone-stage {
    width: min(190px, 64vw);
    margin: 0 auto 18px;
  }

  .offer-xiaomi-stage {
    width: min(225px, 64vw);
    margin: 0 auto 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .offer-iphone-stage {
    animation: none;
  }

  .offer-xiaomi-stage {
    animation: none;
  }

  .offer-iphone {
    transition: none;
  }
}
