/* MEDEAGE LP, paleta e UX mobile-first */

:root {
  --blue: #3e6f8e;
  --blue-deep: #2a4f68;
  --blue-dark: #1a3344;
  --blue-light: #6ec1e4;
  --yellow: #f2b705;
  --yellow-hover: #d9a004;
  --yellow-bright: #ffc52d;
  --white: #ffffff;
  --gray-bg: #eef2f5;
  --gray-text: #2c3e47;
  --gray-muted: #5c6e7a;
  --whatsapp: #25d366;
  --whatsapp-hover: #1ebe5d;
  --shadow: 0 8px 32px rgba(15, 36, 51, 0.14);
  --shadow-lg: 0 24px 56px rgba(15, 36, 51, 0.22);
  --shadow-cta: 0 6px 0 rgba(180, 130, 0, 0.55), 0 12px 28px rgba(242, 183, 5, 0.35);
  --radius: 16px;
  --radius-sm: 10px;
  --font-display: "Poppins", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --header-h: 60px;
  --ribbon-h: 38px;
  --sticky-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal,
  .hero-card {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .btn--pulse {
    animation: none !important;
  }
  .hero__media {
    display: none;
  }
  .hero--video {
    background: var(--blue);
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-text);
  background: var(--white);
  padding-bottom: calc(var(--sticky-h) + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 769px) {
  body {
    padding-bottom: 0;
  }
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--yellow);
  color: #1a1a1a;
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.wrap {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
}

/* LP, faixa de urgência */
.lp-ribbon {
  margin: 0;
  background: linear-gradient(90deg, var(--yellow) 0%, var(--yellow-bright) 50%, var(--yellow) 100%);
  color: #1a1408;
  font-size: 0.8125rem;
  font-weight: 600;
  text-align: center;
  padding: 0.45rem 0.75rem;
  border-bottom: 2px solid rgba(26, 20, 8, 0.15);
  position: relative;
  z-index: 101;
}

.lp-ribbon__inner {
  display: block;
}

@media (min-width: 640px) {
  .lp-ribbon {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(62, 111, 142, 0.08);
}

.site-header--lp {
  background: linear-gradient(180deg, #0f2433 0%, var(--blue-dark) 100%);
  border-bottom: 3px solid var(--yellow);
  backdrop-filter: none;
}

.site-header--lp .logo__img--header {
  filter: brightness(0) invert(1);
  max-height: 36px;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.logo__img {
  display: block;
  height: auto;
  max-height: 42px;
  width: auto;
  max-width: min(200px, 48vw);
  object-fit: contain;
}

.hero__brand {
  margin: 0 0 0.65rem;
}

.hero__logo {
  display: block;
  height: auto;
  max-height: 48px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
}

@media (min-width: 768px) {
  .hero__brand {
    margin-bottom: 1rem;
  }
  .hero__logo {
    max-height: 64px;
    max-width: 200px;
  }
}

.logo--footer-img {
  display: block;
  height: auto;
  max-height: 56px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  margin-bottom: 0.75rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

@media (max-width: 380px) {
  .header-actions__main {
    padding-left: 0.65rem;
    padding-right: 0.65rem;
    font-size: 0.75rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

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

.btn--primary {
  background: var(--yellow);
  color: #1a1a1a;
  border-color: var(--yellow);
}

.btn--primary:hover {
  background: var(--yellow-hover);
  border-color: var(--yellow-hover);
}

.btn--large {
  padding: 0.95rem 1.5rem;
  font-size: 1rem;
}

.btn--xl {
  padding: 1.1rem 1.65rem;
  font-size: 1.05rem;
  border-radius: 12px;
  box-shadow: var(--shadow-cta);
}

.btn--xl.btn--whatsapp {
  box-shadow: 0 6px 0 rgba(18, 120, 60, 0.45), 0 12px 24px rgba(37, 211, 102, 0.28);
}

.btn--pulse {
  animation: lp-pulse 2.4s ease-in-out infinite;
}

@keyframes lp-pulse {
  0%,
  100% {
    box-shadow: var(--shadow-cta);
    filter: brightness(1);
  }
  50% {
    box-shadow: 0 6px 0 rgba(180, 130, 0, 0.55), 0 16px 36px rgba(242, 183, 5, 0.5);
    filter: brightness(1.04);
  }
}

.btn--small {
  padding: 0.5rem 0.85rem;
  font-size: 0.875rem;
}

.btn--ghost {
  background: transparent;
  color: var(--blue);
  border-color: rgba(62, 111, 142, 0.35);
}

.btn--ghost:hover {
  background: rgba(62, 111, 142, 0.06);
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
}

.btn--whatsapp:hover {
  background: var(--whatsapp-hover);
  border-color: var(--whatsapp-hover);
}

.btn--outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

.btn--outline:hover {
  background: rgba(62, 111, 142, 0.08);
}

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

/* Hero, sem overflow:hidden: cortava CTAs e trust no mobile */
.hero {
  background: var(--blue);
  color: var(--white);
  padding: 1.25rem 0 1.5rem;
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
}

@media (min-width: 768px) {
  .hero {
    padding: 2rem 0 2.5rem;
  }
}

/* Altura vem do conteúdo; vídeo cobre o bloco inteiro (não força 92vh) */
.hero--video {
  min-height: 0;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.12);
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(62, 111, 142, 0.9) 0%,
    rgba(45, 80, 100, 0.78) 45%,
    rgba(62, 111, 142, 0.88) 100%
  );
  pointer-events: none;
}

.hero--video > .wrap,
.hero--video > .hero__footnote {
  position: relative;
  z-index: 1;
}

.hero__grid {
  display: grid;
  gap: 1.25rem;
  align-items: start;
  justify-items: center;
}

.hero__copy {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  width: 100%;
  justify-self: center;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}

.hero__bang {
  margin: 0 0 0.5rem;
}

.hero__bang-chip {
  display: inline-block;
  background: var(--yellow);
  color: #1a1408;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(0.85rem, 2.2vw, 1.15rem);
  letter-spacing: 0.02em;
  padding: 0.32rem 0.75rem;
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero__eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-light);
  margin: 0 0 0.5rem;
  line-height: 1.35;
}

@media (min-width: 768px) {
  .hero__bang {
    margin-bottom: 0.85rem;
  }
  .hero__bang-chip {
    padding: 0.45rem 1rem;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
  }
  .hero__eyebrow {
    font-size: 0.78rem;
    margin-bottom: 0.85rem;
  }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 5.2vw, 2.65rem);
  line-height: 1.12;
  font-weight: 700;
  margin: 0 0 0.65rem;
  color: var(--white);
}

.hero__title--lp {
  font-weight: 800;
  font-size: clamp(1.4rem, 5.5vw, 2.85rem);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
  .hero__title {
    margin-bottom: 1rem;
  }
}

.hero__title-accent {
  color: var(--yellow-bright);
  display: inline;
}

.hero__sub {
  font-size: 0.95rem;
  max-width: 36ch;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 1rem;
}

.hero__sub--lp {
  max-width: 42ch;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.45;
}

@media (min-width: 768px) {
  .hero__sub {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
  }
  .hero__sub--lp {
    font-size: 1.08rem;
    line-height: 1.55;
  }
}

.hero__scroll-hint {
  margin: 0.75rem 0 0;
  font-size: 0.82rem;
}

@media (min-width: 768px) {
  .hero__scroll-hint {
    margin-top: 1.25rem;
    font-size: 0.9rem;
  }
}

.hero__scroll-link {
  color: var(--blue-light);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid rgba(110, 193, 228, 0.45);
}

.hero__scroll-link:hover {
  color: var(--white);
  border-bottom-color: var(--yellow);
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 520px) {
  .hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.65rem;
  }
}

/* Botões do hero mais baixos no mobile = cabem na primeira tela */
.hero .btn--xl {
  padding: 0.85rem 1.1rem;
  font-size: 0.92rem;
  border-radius: 10px;
}

@media (min-width: 768px) {
  .hero .btn--xl {
    padding: 1.05rem 1.5rem;
    font-size: 1.05rem;
    border-radius: 12px;
  }
}

.hero__trust {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
  .hero__trust {
    margin-top: 1.35rem;
    gap: 0.35rem;
    font-size: 0.9rem;
  }
}

.hero__trust strong {
  color: var(--blue-light);
}

.hero__visual {
  position: relative;
  min-height: 0;
}

.hero-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(110, 193, 228, 0.35);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .hero-card {
    padding: 1.5rem 1.75rem;
  }
}

.hero-card--lp {
  border: 3px solid var(--yellow);
  background: rgba(15, 36, 51, 0.45);
}

.hero-card__label {
  margin: 0;
  font-size: 0.85rem;
  color: var(--blue-light);
  font-weight: 600;
}

.hero-card__value {
  margin: 0.35rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 6vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
}

.hero-card__pct {
  color: var(--yellow-bright);
}

.hero-card__hint {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.hero__footnote {
  margin: 1rem auto 0;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 70ch;
  line-height: 1.35;
}

@media (min-width: 768px) {
  .hero__footnote {
    margin-top: 1.75rem;
    font-size: 0.75rem;
  }
}

/* Viewports baixos: ainda mais compacto */
@media (max-height: 700px) {
  .hero__logo {
    max-height: 40px;
  }
  .hero__title--lp {
    font-size: clamp(1.25rem, 4.5vw, 1.75rem);
  }
  .hero__sub--lp {
    font-size: 0.85rem;
    margin-bottom: 0.65rem;
  }
  .hero .btn--xl {
    padding: 0.7rem 0.95rem;
    font-size: 0.85rem;
  }
  .hero__scroll-hint {
    display: none;
  }
}

/* Faixa de prova (full width) */
.proof-strip {
  background: linear-gradient(90deg, var(--blue-deep) 0%, var(--blue) 40%, var(--blue-deep) 100%);
  color: var(--white);
  padding: 1.35rem 0;
  border-top: 3px solid var(--yellow);
  border-bottom: 3px solid rgba(242, 183, 5, 0.45);
}

.proof-strip__grid {
  display: grid;
  gap: 1.25rem;
  text-align: center;
}

@media (min-width: 720px) {
  .proof-strip__grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 1rem;
  }
}

.proof-strip__item {
  padding: 0.5rem;
}

.proof-strip__item--accent {
  background: rgba(242, 183, 5, 0.18);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(242, 183, 5, 0.45);
}

.proof-strip__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  line-height: 1.1;
  color: var(--yellow-bright);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.proof-strip__txt {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  margin-top: 0.35rem;
  line-height: 1.35;
}

/* Sections */
.section {
  padding: 3.25rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 4rem 0;
  }
}

.section--alt {
  background: var(--gray-bg);
}

.section--problema {
  background: linear-gradient(165deg, #0f2433 0%, var(--blue-dark) 45%, #1a3d52 100%);
  color: var(--white);
  border-top: 4px solid var(--yellow);
}

.section--problema .pain-card {
  border-left: 5px solid var(--yellow);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section--problema .pain-card h3 {
  color: var(--blue-dark);
}

.section--yellow {
  background: linear-gradient(180deg, #f4e8a8 0%, var(--yellow) 35%, #e8a800 100%);
  border-top: 4px solid var(--blue-dark);
  border-bottom: 4px solid var(--blue-dark);
}

.section--yellow .benefit {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(26, 51, 68, 0.12);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.section--yellow .benefit h3 {
  color: var(--blue-dark);
}

.section--yellow .benefit p {
  color: #2c3a42;
}

.section--yellow .benefit__check {
  background: var(--blue-dark);
  color: var(--yellow);
}

.section__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.25rem;
}

.section__head--lp {
  text-align: center;
}

.section__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(242, 183, 5, 0.15);
  border: 1px solid rgba(242, 183, 5, 0.45);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.section--problema .section__tag {
  color: #1a1408;
  background: var(--yellow);
  border-color: var(--yellow-bright);
}

.section__tag--outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

.section__tag--dark {
  color: var(--blue-dark);
  background: rgba(26, 51, 68, 0.12);
  border-color: var(--blue-dark);
}

.section--yellow .section__tag--dark {
  background: rgba(26, 51, 68, 0.12);
}

.section__title--yellow {
  color: var(--blue-dark);
}

.section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  color: var(--blue);
  margin: 0 0 0.75rem;
  line-height: 1.18;
  font-weight: 800;
}

.section--problema .section__head h2 {
  color: var(--white);
}

.section__lead {
  margin: 0;
  color: var(--gray-muted);
  font-size: 1.05rem;
  font-weight: 500;
}

.section__lead--on-dark {
  color: rgba(255, 255, 255, 0.88);
}

/* Pain cards */
.cards-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pain-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(62, 111, 142, 0.1);
  box-shadow: var(--shadow);
}

.section--alt .pain-card {
  background: var(--white);
}

.pain-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(62, 111, 142, 0.12) 0%, rgba(242, 183, 5, 0.15) 100%);
  color: var(--blue);
  margin-bottom: 1rem;
}

.pain-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--blue);
  margin: 0 0 0.5rem;
}

.pain-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--gray-muted);
}

/* Stats */
.stats-row {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

@media (min-width: 720px) {
  .stats-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(62, 111, 142, 0.1);
  box-shadow: var(--shadow);
}

.section--alt .stat {
  background: var(--white);
}

.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--blue-light);
  margin-bottom: 0.35rem;
}

.stat__label {
  font-size: 0.9rem;
  color: var(--gray-muted);
  line-height: 1.4;
}

/* Testimonials */
.testimonials {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .testimonials {
    grid-template-columns: repeat(3, 1fr);
  }
}

.quote {
  margin: 0;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-left: 6px solid var(--yellow);
  box-shadow: var(--shadow);
  border-top: 1px solid rgba(62, 111, 142, 0.08);
  border-right: 1px solid rgba(62, 111, 142, 0.08);
  border-bottom: 1px solid rgba(62, 111, 142, 0.08);
}

.section:not(.section--alt) .quote {
  background: var(--gray-bg);
}

.quote blockquote {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  font-style: normal;
  color: var(--gray-text);
  line-height: 1.55;
}

.quote figcaption {
  font-size: 0.8rem;
  color: var(--gray-muted);
}

/* Steps */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.5rem;
  max-width: 720px;
  margin-inline: auto;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  background: var(--white);
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.step__num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--yellow);
  color: #1a1a1a;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--blue);
  margin: 0 0 0.35rem;
}

.step p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--gray-muted);
}

/* Benefits */
.benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
  max-width: 640px;
  margin-inline: auto;
}

.benefit {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem 1.5rem;
  background: var(--gray-bg);
  border-radius: var(--radius);
}

.section:not(.section--alt) .benefit {
  border: 1px solid rgba(62, 111, 142, 0.08);
}

.benefit__check {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(62, 111, 142, 0.15);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.benefit h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.25rem;
  color: var(--blue);
}

.benefit p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--gray-muted);
}

/* Formulário contato (referência lp antiga) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section--contact {
  background: linear-gradient(180deg, #2a3d4f 0%, #1e2f3d 100%);
  padding: 3rem 0 3.5rem;
  border-top: 4px solid var(--yellow);
}

.lp-contact {
  max-width: 520px;
  margin-inline: auto;
  text-align: center;
}

.lp-contact__head {
  margin-bottom: 1.75rem;
}

.lp-contact__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.25rem, 4vw, 1.65rem);
  letter-spacing: 0.04em;
  color: var(--yellow);
  line-height: 1.2;
}

.lp-contact__sub {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--yellow);
  opacity: 0.95;
  line-height: 1.45;
}

.lp-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.lp-form__field input,
.lp-form__field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gray-text);
  background: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  box-sizing: border-box;
}

.lp-form__field textarea {
  min-height: 140px;
  resize: vertical;
}

.lp-form__field input::placeholder,
.lp-form__field textarea::placeholder {
  color: #7a8a92;
}

.lp-form__field input:focus,
.lp-form__field textarea:focus {
  outline: 3px solid rgba(242, 183, 5, 0.45);
  outline-offset: 0;
}

.lp-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  margin-top: 0.25rem;
  padding: 1rem 1.5rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  background: var(--yellow);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  box-shadow: var(--shadow-cta);
  transition: background 0.2s, transform 0.15s;
}

.lp-form__submit:hover {
  background: var(--yellow-hover);
}

.lp-form__submit:active {
  transform: scale(0.99);
}

.lp-form__send-icon {
  flex-shrink: 0;
}

/* CTA final */
.cta-final {
  background: var(--blue);
  color: var(--white);
  text-align: center;
  padding: 4rem 0;
}

.cta-final--lp {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, #2d6a8a 100%);
  border-top: 5px solid var(--yellow);
  position: relative;
  overflow: hidden;
}

.cta-final--lp::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -12deg,
    transparent,
    transparent 40px,
    rgba(255, 255, 255, 0.03) 40px,
    rgba(255, 255, 255, 0.03) 80px
  );
  pointer-events: none;
}

.cta-final__inner {
  position: relative;
  z-index: 1;
}

.cta-final__inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.15rem);
  margin: 0 0 0.75rem;
  color: var(--white);
}

.cta-final--lp .cta-final__inner h2 {
  font-weight: 800;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.cta-final__sub {
  margin: 0 0 1.5rem;
  max-width: 42ch;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.1rem;
  font-weight: 500;
}

.cta-final__inner p {
  margin: 0 0 1.5rem;
  max-width: 42ch;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.site-footer {
  background: #2a4a5e;
  color: rgba(255, 255, 255, 0.88);
  padding: 2.5rem 0 1rem;
}

.site-footer__inner {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

.site-footer__brand p {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 36ch;
}

.site-footer a {
  color: var(--blue-light);
}

.site-footer__contact p {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
}

.site-footer__note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.site-footer__copy {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 2rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* FAB WhatsApp */
.fab-wa {
  position: fixed;
  right: 1rem;
  bottom: calc(var(--sticky-h) + 1rem);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  z-index: 90;
  transition: transform 0.2s, background 0.2s;
}

.fab-wa:hover {
  background: var(--whatsapp-hover);
  transform: scale(1.05);
}

@media (min-width: 769px) {
  .fab-wa {
    bottom: 1.5rem;
  }
}

/* Sticky mobile CTA */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  display: flex;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem;
  padding-bottom: calc(0.65rem + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, #0f2433 0%, var(--blue-dark) 100%);
  backdrop-filter: blur(12px);
  border-top: 3px solid var(--yellow);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
}

.sticky-cta .btn--primary {
  box-shadow: 0 4px 0 rgba(180, 130, 0, 0.55);
}

.sticky-cta .btn {
  flex: 1;
  font-size: 0.8rem;
  padding: 0.65rem 0.5rem;
  white-space: nowrap;
}

@media (min-width: 769px) {
  .sticky-cta {
    display: none;
  }
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.reveal--delay {
  transition-delay: 0.1s;
}
