/* =========================================================
   FisioAp — Landing v2
   Paleta extraída da logo. Tipografia: Plus Jakarta Sans + DM Sans.
   ========================================================= */

:root {
  /* Cores derivadas da logo (fundo verde escuro + F teal-bright) */
  --teal-deep:   #0A1F1C;
  --teal-dark:   #0D2B26;
  --teal-base:   #0E3D36;
  --teal-mid:    #0B5E4F;
  --teal-accent: #1A9E87;
  --teal:        #20C9A8;
  --teal-light:  #4FE0C4;
  --teal-pale:   #CBFAF3;

  --paper:       #FFFFFF;
  --paper-soft:  #F6F9F8;
  --gray-line:   #DAE6E3;
  --gray-mid:    #6B847F;
  --ink:         #1B2A27;
  --ink-soft:    #364943;

  --font-head: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;

  --container-max: 1180px;
  --container-pad: 24px;

  --t-fast:  140ms cubic-bezier(.2,.6,.4,1);
  --t-base:  220ms cubic-bezier(.2,.6,.4,1);

  --shadow-screen:
    0 1px 2px rgba(13,43,38,0.06),
    0 6px 16px -6px rgba(13,43,38,0.12),
    0 24px 48px -16px rgba(13,43,38,0.18);
}

@media (min-width: 920px) {
  :root { --container-pad: 40px; }
}

/* RESET / BASE */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  text-wrap: pretty;
}

img, svg, picture, video {
  display: block;
  max-width: 100%;
  height: auto;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: transparent; cursor: pointer; color: inherit; }
ul, ol { list-style: none; }

::selection { background: var(--teal); color: var(--teal-dark); }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* TIPOGRAFIA */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--teal-dark);
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.section-title {
  font-size: clamp(30px, 4.6vw, 48px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 16px;
}

.section-sub {
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--ink-soft);
  font-weight: 400;
  line-height: 1.55;
  max-width: 56ch;
}

.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head--center { text-align: center; margin-inline: auto; }
.section-head--center .section-sub { margin-inline: auto; }

/* BOTÕES */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  border: 1.5px solid transparent;
  transition: background var(--t-base), border-color var(--t-base), color var(--t-base), transform var(--t-fast);
  white-space: nowrap;
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
}
.btn:active { transform: translateY(1px); }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--teal-dark);
  color: var(--paper);
  border-color: var(--teal-dark);
}
.btn-primary:hover { background: var(--teal-base); border-color: var(--teal-base); }

.btn-outline {
  background: transparent;
  color: var(--teal-dark);
  border-color: var(--teal-dark);
}
.btn-outline:hover { background: var(--teal-dark); color: var(--paper); }

.link-quiet {
  font-size: 14px;
  font-weight: 500;
  color: var(--teal-accent);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.link-quiet:hover { border-bottom-width: 2px; }

/* STORE BUTTONS */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  min-width: 170px;
  background: var(--teal-dark);
  color: var(--paper);
  border-radius: 12px;
  border: 1.5px solid var(--teal-dark);
  transition: background var(--t-base), transform var(--t-fast);
}
.store-btn:hover { background: var(--teal-base); transform: translateY(-1px); }
.store-btn svg { width: 24px; height: 24px; flex-shrink: 0; }
.store-btn span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
  text-align: left;
}
.store-btn small {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  opacity: 0.72;
  letter-spacing: 0.02em;
}
.store-btn strong {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
}

.store-btn--light {
  background: var(--paper);
  color: var(--teal-dark);
  border-color: var(--paper);
}
.store-btn--light:hover { background: var(--teal); border-color: var(--teal); color: var(--teal-dark); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-base), background var(--t-base);
}
.site-header.is-scrolled {
  background: rgba(255,255,255,0.96);
  border-bottom-color: var(--gray-line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 14px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
}
.brand-name {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  color: var(--teal-dark);
  letter-spacing: -0.02em;
}

.nav { display: none; }
@media (min-width: 880px) {
  .nav {
    display: flex;
    gap: 32px;
    flex: 1;
    justify-content: center;
  }
  .nav a {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--ink-soft);
    transition: color var(--t-base);
    padding-block: 6px;
  }
  .nav a:hover { color: var(--teal-dark); }
}

.header-btn { display: none; }
@media (min-width: 880px) { .header-btn { display: inline-flex; padding: 10px 18px; font-size: 14px; } }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  align-items: center;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.8px;
  background: var(--teal-dark);
  transition: transform var(--t-base), opacity var(--t-base);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.4px) rotate(-45deg); }
@media (min-width: 880px) { .nav-toggle { display: none; } }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 14px;
  border-top: 1px solid var(--gray-line);
  background: var(--paper);
}
.mobile-menu[data-open="true"] { display: flex; }
.mobile-menu a:not(.btn) {
  font-size: 17px;
  color: var(--teal-dark);
  font-weight: 500;
  padding-block: 6px;
}

/* =========================================================
   HERO — assimétrico, sem phone-frame falso
   ========================================================= */
.hero {
  position: relative;
  padding-top: 56px;
  padding-bottom: 64px;
  background: var(--paper);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 920px) {
  .hero { padding-top: 80px; padding-bottom: 96px; }
  .hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 64px;
  }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(34px, 5.2vw, 58px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--teal-dark);
  margin-bottom: 22px;
  max-width: 20ch;
  text-wrap: balance;
}
.hero-title .hl-line {
  background-image: linear-gradient(transparent 70%, rgba(32,201,168,0.4) 70%);
  background-repeat: no-repeat;
  padding-inline: 4px;
}

.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 52ch;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  color: var(--ink-soft);
}
.hero-proof strong {
  color: var(--teal-dark);
  font-weight: 700;
}
.hero-proof .dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  box-shadow: 0 0 0 4px rgba(32,201,168,0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(32,201,168,0.18); }
  50% { box-shadow: 0 0 0 7px rgba(32,201,168,0.04); }
}

/* HERO VISUAL — duas telas sobrepostas em ângulo natural */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}
.hero-shot {
  position: absolute;
  width: 220px;
  max-width: 60%;
  border-radius: 28px;
  box-shadow: var(--shadow-screen);
  background: var(--teal-dark);
}
.hero-shot--back {
  top: 0;
  right: 8%;
  transform: rotate(5deg) translateY(0);
  width: 200px;
  filter: brightness(0.96);
}
.hero-shot--front {
  bottom: 0;
  left: 8%;
  transform: rotate(-3deg);
  z-index: 2;
}
@media (min-width: 920px) {
  .hero-visual { min-height: 580px; }
  .hero-shot { width: 260px; }
  .hero-shot--back { width: 240px; top: 10px; right: 0; }
  .hero-shot--front { left: -10px; bottom: 10px; }
}

/* =========================================================
   REVIEWS — faixa compacta horizontal
   ========================================================= */
.reviews {
  padding-block: 40px;
  background: var(--paper-soft);
  border-block: 1px solid var(--gray-line);
}

.reviews-row {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 880px) {
  .reviews-row {
    grid-template-columns: auto 1fr;
    gap: 40px;
  }
}

.reviews-scores {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-shrink: 0;
}
.store-score {
  display: flex;
  align-items: center;
  gap: 12px;
}
.store-score-num {
  font-family: var(--font-head);
  font-size: clamp(38px, 4vw, 48px);
  font-weight: 800;
  color: var(--teal-dark);
  line-height: 1;
  letter-spacing: -0.03em;
}
.store-score-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.2;
}
.store-score-meta .stars {
  color: var(--teal);
  font-size: 14px;
  letter-spacing: 1px;
}

/* Strip de reviews em scroll horizontal mobile, grid em desktop */
.reviews-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 12px;
  margin: 0 calc(var(--container-pad) * -1);
  padding-inline: var(--container-pad);
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.reviews-strip::-webkit-scrollbar { display: none; }
@media (min-width: 880px) {
  .reviews-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: visible;
    margin: 0;
    padding: 0;
  }
}

.review {
  flex: 0 0 75%;
  scroll-snap-align: start;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--gray-line);
  border-radius: 12px;
  transition: border-color var(--t-base), transform var(--t-base);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 880px) { .review { flex: 1; min-width: 0; } }
.review:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
}
.review p {
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--teal-dark);
}
.review-author {
  font-size: 12px;
  color: var(--gray-mid);
  font-weight: 500;
}

/* =========================================================
   SCREENS — coverflow infinito
   ========================================================= */
.screens {
  padding-block: 72px 56px;
  background: var(--paper);
  overflow: hidden;
}

/* Tamanho do "phone" central */
:root {
  --cover-w: 220px;          /* largura do slide central */
  --cover-h: calc(var(--cover-w) * 2);
  --cover-gap: 28px;
}
@media (min-width: 700px) { :root { --cover-w: 240px; --cover-gap: 36px; } }
@media (min-width: 1100px) { :root { --cover-w: 260px; --cover-gap: 48px; } }

.cover-wrap {
  position: relative;
  margin: 32px 0 0;
  padding: 0;
}

.cover-viewport {
  position: relative;
  width: 100%;
  height: calc(var(--cover-h) + 32px);
  overflow: hidden;
  perspective: 1000px;
}

.cover-track {
  position: absolute;
  top: 16px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: var(--cover-gap);
  transform: translateX(-50%);
  transition: transform 450ms cubic-bezier(.32,.72,.32,1);
  will-change: transform;
}

.cover-slide {
  flex: 0 0 var(--cover-w);
  width: var(--cover-w);
  height: var(--cover-h);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 450ms cubic-bezier(.32,.72,.32,1), opacity 450ms ease, filter 450ms ease;
  will-change: transform, opacity;
  opacity: 0; /* default invisível — só fica visível com data-pos atribuído pelo JS */
}
/* Fallback de segurança: se por algum motivo o JS não atribuir data-pos em 1.5s,
   força os 5 slides reais a aparecerem mesmo sem coverflow */
.cover-track.js-failed .cover-slide[data-i] { opacity: 1; }

.cover-screen {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: var(--teal-dark);
  box-shadow: var(--shadow-screen);
}
.cover-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Estados de profundidade — controlados por JS via data-pos */
.cover-slide[data-pos="0"]  { transform: scale(1); opacity: 1; filter: none; z-index: 5; }
.cover-slide[data-pos="-1"], .cover-slide[data-pos="1"] {
  transform: scale(0.82);
  opacity: 0.5;
  filter: blur(0.6px) brightness(0.92);
  z-index: 4;
}
.cover-slide[data-pos="-2"], .cover-slide[data-pos="2"] {
  transform: scale(0.66);
  opacity: 0.22;
  filter: blur(1.2px) brightness(0.85);
  z-index: 3;
}
.cover-slide[data-pos="-3"], .cover-slide[data-pos="3"] {
  transform: scale(0.55);
  opacity: 0;
  filter: blur(2px);
  z-index: 2;
  pointer-events: none;
}

/* Setas */
.cover-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--gray-line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--teal-dark);
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  z-index: 10;
  transition: border-color var(--t-base), background var(--t-base), color var(--t-base);
}
.cover-arrow:hover { border-color: var(--teal-dark); background: var(--teal-dark); color: var(--paper); }
.cover-arrow--prev { left: 4%; }
.cover-arrow--next { right: 4%; }
@media (min-width: 1100px) {
  .cover-arrow--prev { left: 12%; }
  .cover-arrow--next { right: 12%; }
}

/* Caption sob o coverflow */
.cover-caption {
  margin-top: 24px;
  padding: 0 var(--container-pad);
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
  min-height: 120px;
}
.cover-time {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-accent);
  margin-bottom: 12px;
}
.cover-h {
  font-family: var(--font-head);
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 700;
  line-height: 1.18;
  color: var(--teal-dark);
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.cover-p {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.cover-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
}
.cover-dots span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gray-line);
  cursor: pointer;
  transition: background var(--t-base), width var(--t-base);
}
.cover-dots span[data-active="true"] {
  background: var(--teal-dark);
  width: 22px;
  border-radius: 4px;
}

/* =========================================================
   CTA BAND — banner intermediário entre seções
   ========================================================= */
.cta-band {
  background: var(--paper-soft);
  border-block: 1px solid var(--gray-line);
  padding-block: 24px;
}
.cta-band-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}
@media (min-width: 720px) {
  .cta-band-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    gap: 24px;
  }
}
.cta-band-text {
  font-family: var(--font-head);
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.4;
}
.cta-band-text strong { color: var(--teal-dark); font-weight: 700; }
.cta-band-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

/* =========================================================
   VALUE — Comparativo competitivo + Planos
   ========================================================= */
.value {
  padding-block: 88px;
  background: var(--paper);
}

/* Comparativo */
.compare {
  margin-bottom: 80px;
}
.compare-head {
  max-width: 720px;
  margin-bottom: 40px;
}
.eyebrow-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-accent);
  padding: 6px 12px;
  background: var(--teal-pale);
  border-radius: 20px;
  margin-bottom: 20px;
}
.compare-head .section-title { margin-bottom: 16px; }
.hl-line {
  background-image: linear-gradient(transparent 70%, rgba(32,201,168,0.35) 70%);
  background-repeat: no-repeat;
  padding-inline: 2px;
}

.compare-cards {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 820px) {
  .compare-cards { grid-template-columns: 1fr 1fr; gap: 20px; align-items: stretch; }
}

.compare-card {
  position: relative;
  padding: 28px 26px 26px;
  border-radius: 18px;
  background: var(--paper);
  border: 1px solid var(--gray-line);
  display: flex;
  flex-direction: column;
}
.compare-card--us {
  background: linear-gradient(160deg, var(--teal-dark) 0%, var(--teal-base) 100%);
  border-color: var(--teal-dark);
  color: var(--paper);
  box-shadow: 0 16px 36px -20px rgba(13,43,38,0.4);
}
.compare-card--them {
  background: var(--paper-soft);
}

.compare-card header { margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid currentColor; }
.compare-card--us header { border-color: rgba(32,201,168,0.25); }
.compare-card--them header { border-color: var(--gray-line); }

.compare-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.7;
}
.compare-card--us .compare-tag { color: var(--teal); }
.compare-card--them .compare-tag { color: var(--gray-mid); }

.compare-card h3 {
  font-family: var(--font-head);
  font-size: clamp(30px, 3.6vw, 40px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.025em;
}
.compare-card--us h3 { color: var(--paper); }
.compare-card--them h3 { color: var(--teal-dark); }
.compare-card h3 small {
  font-size: 0.5em;
  font-weight: 500;
  letter-spacing: 0;
  margin-left: 2px;
  opacity: 0.6;
}

.compare-card ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.compare-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.5;
}
.compare-card--us li { color: var(--teal-pale); }
.compare-card--them li { color: var(--ink-soft); }
.compare-card li strong { font-weight: 600; }
.compare-card--us li strong { color: var(--paper); }
.compare-card--them li strong { color: var(--teal-dark); }

.check, .cross {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  margin-top: 1px;
}
.check {
  background: var(--teal);
  color: var(--teal-dark);
}
.cross {
  background: rgba(13,43,38,0.08);
  color: var(--gray-mid);
}

.compare-note {
  margin-top: 18px;
  font-size: 12.5px;
  color: var(--gray-mid);
  line-height: 1.5;
  font-style: italic;
}

.compare-cta {
  margin-top: 32px;
  padding: 28px 24px;
  background: var(--paper);
  border: 1px dashed var(--teal-accent);
  border-radius: 16px;
  text-align: center;
}
.compare-cta p {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 16px;
}
.compare-cta-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Planos */
.plans-wrap { max-width: 920px; margin-inline: auto; }
.plans-head {
  text-align: center;
  margin-bottom: 40px;
}
.plans-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.6vw, 36px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--teal-dark);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.plans-sub {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 50ch;
  margin-inline: auto;
}

.plans {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .plans { grid-template-columns: repeat(2, 1fr); align-items: stretch; }
}

.plan {
  position: relative;
  padding: 32px 26px 28px;
  background: var(--paper);
  border: 1px solid var(--gray-line);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}
.plan--featured {
  border: 1.5px solid var(--teal-dark);
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-soft) 100%);
  box-shadow: 0 10px 28px -16px rgba(13,43,38,0.18);
}

.plan-flag {
  position: absolute;
  top: -12px; left: 24px;
  font-family: var(--font-head);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--teal-dark);
  color: var(--paper);
  padding: 6px 12px;
  border-radius: 6px;
}

.plan header { margin-bottom: 14px; }
.plan-name {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-accent);
  margin-bottom: 6px;
}
.plan-pitch {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--gray-line);
}
.plan-price strong {
  font-family: var(--font-head);
  font-size: clamp(34px, 4vw, 44px);
  font-weight: 800;
  color: var(--teal-dark);
  letter-spacing: -0.025em;
  line-height: 1;
}
.plan-price span {
  font-size: 14px;
  color: var(--gray-mid);
}

.plan-list {
  flex: 1;
  display: flex; flex-direction: column;
  gap: 9px;
  margin-bottom: 22px;
}
.plan-list li {
  position: relative;
  padding-left: 24px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.plan-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 14px; height: 1.8px;
  background: var(--teal-accent);
  border-radius: 1px;
}
.plan-list li strong { color: var(--teal-dark); font-weight: 600; }

.plan-foot {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--gray-mid);
  text-align: center;
  line-height: 1.5;
}
.plan-foot strong { color: var(--teal-dark); }

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  padding-block: 96px;
  background: var(--paper-soft);
}

.faq-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 920px) {
  .faq-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
    gap: 72px;
    align-items: start;
  }
  .faq-aside { position: sticky; top: 100px; }
}

.faq-aside .section-title { margin-bottom: 16px; }
.faq-aside .section-sub { margin-bottom: 16px; }

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-list details {
  border-top: 1px solid var(--gray-line);
}
.faq-list details:last-child { border-bottom: 1px solid var(--gray-line); }

.faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--teal-dark);
  list-style: none;
  transition: color var(--t-base);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 24px;
  line-height: 1;
  color: var(--teal-accent);
  flex-shrink: 0;
  transition: transform var(--t-base);
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list summary:hover { color: var(--teal-accent); }
.faq-list details > div {
  padding: 0 0 20px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 60ch;
}

/* =========================================================
   LAST — última mordida
   ========================================================= */
.last {
  padding-block: 96px;
  background: var(--teal-deep);
  color: var(--paper);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.last::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 50% 0%, rgba(32,201,168,0.18) 0%, transparent 50%);
  pointer-events: none;
}

.last-inner { position: relative; max-width: 680px; margin-inline: auto; }

.last-title {
  font-family: var(--font-head);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--paper);
  margin-bottom: 18px;
}

.last-sub {
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 400;
  line-height: 1.55;
  color: var(--teal-pale);
  opacity: 0.85;
  margin-bottom: 36px;
  max-width: 48ch;
  margin-inline: auto;
}

.last-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--teal-deep);
  color: var(--teal-pale);
  padding-top: 64px;
  border-top: 1px solid rgba(32,201,168,0.08);
}

.footer-inner {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
}
@media (min-width: 920px) {
  .footer-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    gap: 80px;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-mark {
  width: 48px;
  height: 48px;
  border-radius: 10px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--teal-pale);
  opacity: 0.6;
  max-width: 38ch;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (min-width: 700px) { .footer-cols { grid-template-columns: repeat(4, 1fr); } }

.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 6px;
}
.footer-col a {
  font-size: 14px;
  color: var(--teal-pale);
  opacity: 0.65;
  transition: opacity var(--t-base), color var(--t-base);
}
.footer-col a:hover { opacity: 1; color: var(--teal); }

.footer-bottom {
  margin-top: 56px;
  padding-block: 20px;
  border-top: 1px solid rgba(32,201,168,0.08);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: var(--teal-pale);
  opacity: 0.5;
}
.footer-bottom-inner a { color: inherit; border-bottom: 1px dotted currentColor; }

/* =========================================================
   STICKY CTA inferior
   ========================================================= */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: var(--paper);
  border-top: 1px solid var(--gray-line);
  box-shadow: 0 -8px 24px -16px rgba(13,43,38,0.18);
  transform: translateY(110%);
  transition: transform 340ms cubic-bezier(.2,.6,.4,1);
  pointer-events: none;
}
.sticky-cta.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px var(--container-pad);
  max-width: var(--container-max);
  margin-inline: auto;
}
.sticky-cta-text {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.35;
}
.sticky-cta-text strong { color: var(--teal-dark); font-weight: 600; }
.sticky-cta-btn {
  padding: 10px 18px;
  font-size: 14px;
  flex-shrink: 0;
}
@media (min-width: 880px) {
  .sticky-cta {
    left: auto;
    right: 24px;
    bottom: 24px;
    border-radius: 16px;
    border: 1px solid var(--gray-line);
    box-shadow: 0 12px 32px -12px rgba(13,43,38,0.25);
    max-width: 380px;
  }
  .sticky-cta-inner { padding: 14px 18px; }
}

/* =========================================================
   REVEAL on scroll
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms cubic-bezier(.2,.6,.4,1), transform 600ms cubic-bezier(.2,.6,.4,1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .sticky-cta { transform: none; }
}

/* PRINT */
@media print {
  .site-header, .nav-toggle, .mobile-menu, .last, .sticky-cta { display: none !important; }
  body { color: #000; background: #fff; }
}
