/* ============================================================
   POP Facilita — cópia local em código puro
   Réplica visual do site WordPress original (set/2026),
   reconstruída com CSS moderno: custom properties, grid,
   flexbox, clamp() e scroll-snap. Zero frameworks.
   ============================================================ */

/* Fontes: assets/fonts/fonts-local.css (link direto no HTML de cada página) */

/* ---------- Design tokens (extraídos do CSS real do site) ---------- */
:root {
  /* paleta oficial */
  --cream: #F4FFE6;
  /* fundo claro (e-global primary) */
  --cream-soft: #f2f7e9;
  /* pills e ícones */
  --lime: #84E509;
  /* destaque (secondary) */
  --lime-bright: #8AF500;
  --green-dark: #3B6603;
  /* menu, footer (accent) */
  --green-deep: #2f4b12;
  /* cards de plano */
  --green-mid: #3c642c;
  /* seções alternadas */
  --green-pag: #66ad1b;
  /* bullet ativo do carrossel */
  --whatsapp: #25D366;
  --mint: #ECFFD3;
  /* fim dos gradientes */

  /* tipografia v2 — Baloo 2 (display) + Inter (texto) */
  --font-head: 'Baloo 2', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* gradientes das seções (extraídos do Elementor) */
  --grad-hero: linear-gradient(63deg, #F4FFE6 0%, #FFFFFF 100%);
  --grad-videos: linear-gradient(180deg, #FFFFFF 0%, #ECFFD3 100%);
  --grad-faq: linear-gradient(0deg, #FFFFFF 0%, #ECFFD3 100%);

  /* layout */
  --container: 1140px;
  --radius: 23px;
}

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

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.6;
  color: #000;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

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

img {
  user-select: none;
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.25;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

/* barra do menu — fixa ao rolar */
.menubar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--green-dark);
  color: #fff;
  transition: background .3s ease, box-shadow .3s ease;
}

.nav-label {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .02em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(.9rem, 2vw, 2rem);
  list-style: none;
  padding: 0;
}

.nav-links a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .92rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .02em;
  opacity: .95;
  padding: .35rem .1rem;
  border-bottom: 2px solid transparent;
  transition: border-color .2s ease, opacity .2s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  opacity: 1;
  border-bottom-color: var(--lime);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  cursor: pointer;
  align-items: center;
  gap: .5rem;
  padding: .5rem 0;
}

.menu-toggle .bars {
  display: inline-grid;
  gap: 4px;
}

.menu-toggle .bars span {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}

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

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

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

@media (max-width: 1024px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-label {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: .4rem 1.25rem .9rem;
    background: color-mix(in srgb, var(--green-dark) 96%, transparent);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-3);
    opacity: 0;
    translate: 0 -10px;
    visibility: hidden;
    transition: opacity .28s ease, translate .28s var(--ease-out), visibility .28s;
  }

  .nav-links.open {
    opacity: 1;
    translate: 0 0;
    visibility: visible;
  }

  .nav-links li {
    border-bottom: 1px solid rgb(255 255 255 / .12);
  }

  .nav-links li:last-child {
    border-bottom: 0;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: .7rem .25rem;
    opacity: 0;
    translate: -14px 0;
    transition: opacity .3s ease, translate .3s var(--ease-out);
    transition-delay: 0s;
  }

  .nav-links.open a {
    opacity: 1;
    translate: 0 0;
    transition-delay: calc(60ms + var(--i, 0) * 45ms);
  }
}

@media (max-width: 1024px) {
  .hero-desktop {
    display: none;
  }
}

.planos-head {
  text-align: center;
  display: grid;
  gap: .4rem;
  margin-bottom: clamp(1.8rem, 4vw, 2.6rem);
}

.planos-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  color: #fff;
}

.planos-head .sub {
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  opacity: .95;
}

/* vídeos (gradiente branco → menta) */
.videos-section {
  background: var(--grad-videos);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

/* passos "Como ser POP" (verde escuro) */
.passos-section {
  background: var(--green-mid);
  color: #fff;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  text-align: center;
}

.passos-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  margin-bottom: .75rem;
}

.passos-section .intro {
  max-width: 720px;
  margin: 0 auto clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.passos-section .intro strong {
  color: var(--lime-bright);
}

/* FAQ (gradiente invertido) */
.faq-section {
  background: var(--grad-faq);
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3rem, 6vw, 4.5rem);
  text-align: center;
}

.faq-section>.container>h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.faq-section .sub {
  margin: .5rem 0 clamp(1.5rem, 4vw, 2.2rem);
  color: #444;
}

.faq-list {
  max-width: 860px;
  margin-inline: auto;
  display: grid;
  gap: .9rem;
  text-align: left;
}

.faq-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgb(0 0 0 / .06);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.3rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(.98rem, 1.4vw, 1.12rem);
  color: #222;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary .chev {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--green-dark);
  font-size: .9rem;
  transition: rotate .25s ease;
}

.faq-item[open] summary .chev {
  rotate: 180deg;
}

.faq-item .faq-body {
  padding: 0 1.3rem 1.15rem;
  color: #444;
  font-size: .97rem;
}

.faq-item .faq-body strong {
  color: var(--green-dark);
}

/* ============================================================
   FOOTER — verde escuro + faixa creme de copyright
   ============================================================ */
.site-footer {
  background: var(--green-dark);
  color: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 3.2rem) 0;
}

.footer-brand img {
  width: min(300px, 70vw);
}

.footer-ctas {
  display: grid;
  gap: .8rem;
  justify-items: start;
}

.footer-ctas .footer-title {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .95rem;
  margin-bottom: .3rem;
}

.btn-footer {
  display: inline-block;
  background: var(--lime);
  color: var(--green-deep);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  border-radius: 999px;
  padding: .7rem 1.6rem;
  transition: transform .15s ease, filter .15s ease;
}

.btn-footer:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.footer-apps {
  display: grid;
  gap: .7rem;
  justify-items: start;
}

.footer-apps img {
  width: 190px;
}

.footer-bottom {
  background: var(--cream);
  color: #333;
  font-size: .85rem;
  padding: 1.1rem 1rem;
  border-top: 1px solid rgb(47 75 18 / .08);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .8rem;
}

.footer-bottom-links {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.footer-bottom-links a {
  color: #333;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
  transition: color .2s ease;
}

.footer-bottom-links a:hover {
  color: var(--green-deep);
}

.footer-bottom-links .sep {
  opacity: .4;
}

@media (max-width: 900px) {
  .footer-bottom-inner {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-ctas,
  .footer-apps {
    justify-items: center;
  }
}

/* ============================================================
   BOTÃO FLUTUANTE DE WHATSAPP
   ============================================================ */
.whats-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 14px rgb(0 0 0 / .28);
  transition: transform .2s ease;
}

.whats-float:hover {
  transform: scale(1.07);
}

.whats-float svg {
  width: 30px;
  height: 30px;
}

/* ============================================================
   PÁGINAS INTERNAS
   ============================================================ */
.page-head {
  background: var(--grad-hero);
  text-align: center;
  padding: clamp(2.2rem, 5vw, 3.4rem) 1rem;
  display: grid;
  gap: .5rem;
  place-content: center;
  min-height: 200px;
}

.page-head h1 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 800;
}

.page-head .sub {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #333;
}

.page-body {
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(3rem, 6vw, 4.5rem);
  background: #fff;
}

/* ---------- formulários (cadastrar / entrar) ---------- */
.form-card {
  max-width: 620px;
  margin-inline: auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgb(0 0 0 / .08);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1.3rem;
}

.form-field {
  display: grid;
  gap: .35rem;
}

.form-field.wide {
  grid-column: 1 / -1;
}

.form-field label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .92rem;
  color: #222;
}

.form-field label .req {
  color: #c0392b;
}

.form-field input {
  font: inherit;
  width: 100%;
  padding: .78rem 1rem;
  border: 1.5px solid #cfd8c3;
  border-radius: 10px;
  background: #fbffef;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.form-field input:focus {
  outline: none;
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgb(132 229 9 / .25);
}

.form-field input::placeholder {
  color: #9aa58c;
}

.form-consent {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  font-size: .88rem;
  color: #444;
  margin: 1.2rem 0;
}

.form-consent input {
  margin-top: .25rem;
  accent-color: var(--green-dark);
}

.form-consent a {
  color: var(--green-dark);
  font-weight: 600;
}

.btn-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
  background: var(--lime);
  color: var(--green-deep);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: .95rem 1.5rem;
  transition: transform .15s ease, filter .15s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.form-links {
  margin-top: 1.1rem;
  text-align: center;
  font-size: .92rem;
  display: grid;
  gap: .4rem;
}

.form-links a {
  color: var(--green-dark);
  font-weight: 600;
}

.form-note {
  margin-top: 1rem;
  text-align: center;
  font-size: .8rem;
  color: #777;
}

/* resumo do plano escolhido (cadastrar?plano=…) */
.plan-summary {
  max-width: 620px;
  margin: 0 auto 1.3rem;
}

.plan-summary-line {
  background: var(--lime);
  color: var(--green-deep);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  text-align: center;
  border-radius: 999px;
  padding: .8rem 1.3rem;
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- contatos ---------- */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 1.4rem;
  max-width: 900px;
  margin-inline: auto;
}

.contact-card {
  display: grid;
  gap: .6rem;
  justify-items: center;
  text-align: center;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgb(0 0 0 / .08);
  padding: 1.8rem 1.2rem;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgb(0 0 0 / .12);
}

.contact-card .icon-circle {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--green-deep);
}

.contact-card .icon-circle svg {
  width: 30px;
  height: 30px;
}

.contact-card .value {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: #222;
  word-break: break-all;
}

.contact-card .label {
  font-size: .9rem;
  color: #666;
}

/* ---------- páginas legais (prosa) ---------- */
.legal-body {
  max-width: 860px;
  margin-inline: auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 14px rgb(0 0 0 / .07);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.legal-body h2 {
  font-size: 1.25rem;
  margin: 1.8rem 0 .6rem;
  color: var(--green-dark);
}

.legal-body h3 {
  font-size: 1.05rem;
  margin: 1.2rem 0 .4rem;
}

.legal-body p,
.legal-body li {
  font-size: .95rem;
  color: #333;
  margin-bottom: .55rem;
}

.legal-body ul,
.legal-body ol {
  padding-left: 1.4rem;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}

/* ============================================================
   POLISH LAYER — movimento, profundidade e acabamento
   (mesma paleta, mesma tipografia, mesma copy)
   ============================================================ */

/* ---------- tokens de elevação e easing ---------- */
:root {
  --shadow-1: 0 2px 10px rgb(20 38 2 / .07);
  --shadow-2: 0 10px 28px rgb(20 38 2 / .13);
  --shadow-3: 0 20px 48px rgb(20 38 2 / .20);
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  interpolate-size: allow-keywords;
}

/* transição de página nativa (Chrome/Edge) */
@view-transition {
  navigation: auto;
}

/* ---------- acabamento global ---------- */
::selection {
  background: var(--lime);
  color: var(--green-deep);
}

html {
  scrollbar-width: thin;
  scrollbar-color: var(--green-mid) #e9f0da;
  scroll-padding-top: 76px;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #e9f0da;
}

::-webkit-scrollbar-thumb {
  background: var(--green-mid);
  border-radius: 8px;
  border: 3px solid #e9f0da;
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 2px;
  border-radius: 4px;
}

h1,
h2,
h3 {
  text-wrap: balance;
  letter-spacing: -.015em;
}

p {
  text-wrap: pretty;
}

/* ---------- header: encolhe e ganha blur ao rolar ---------- */
.menubar.scrolled {
  background: color-mix(in srgb, var(--green-dark) 88%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-2);
}

/* ---------- reveal on scroll (JS adiciona .in) ---------- */
.js [data-reveal] {
  opacity: 0;
  translate: 0 26px;
  transition: opacity .7s ease, translate .7s var(--ease-out);
  transition-delay: var(--rd, 0s);
}

.js [data-reveal].in {
  opacity: 1;
  translate: 0 0;
}

/* ---------- hero em crossfade + Ken Burns ---------- */
.hero-fade {
  position: relative;
  overflow: hidden;
}

.fade-track {
  position: relative;
  overflow: hidden;
}

.fade-track>a {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  transition: opacity 1s ease;
}

.fade-track>a.active {
  opacity: 1;
  z-index: 1;
}

.fade-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fade-track>a.active img {
  animation: kenburns 7s var(--ease-out) forwards;
}

@keyframes kenburns {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.045);
  }
}

/* ---------- marquee infinito de parceiros ---------- */
.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-group {
  display: flex;
  gap: 1.25rem;
  padding-right: 1.25rem;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.marquee img {
  height: 58px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  transition: transform .25s var(--ease-out);
}

.marquee img:hover {
  transform: scale(1.08);
}

@media (prefers-reduced-motion: reduce) {
  .marquee {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .marquee-track {
    animation: none;
  }
}

/* ---------- passos: grade conectada no desktop ---------- */
@media (min-width: 1025px) {

  .steps-carousel {
    position: relative;
  }

  .steps-carousel::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 6%;
    right: 6%;
    border-top: 2px dashed color-mix(in srgb, var(--lime) 50%, transparent);
  }
}

/* ---------- FAQ: abre com altura animada ---------- */
.faq-item::details-content {
  transition: height .35s var(--ease-out), content-visibility .35s allow-discrete;
  height: 0;
  overflow: hidden;
}

.faq-item[open]::details-content {
  height: auto;
}

.video-mobile {
  display: none;
}

@media (max-width: 1024px) {
  .video-desktop {
    display: none;
  }

  .video-mobile {
    display: block;
    aspect-ratio: 9 / 16;
    width: min(400px, 88vw);
  }
}

@keyframes play-ring {
  0% {
    transform: scale(.9);
    opacity: 1;
  }

  70% {
    transform: scale(1.25);
    opacity: 0;
  }

  100% {
    transform: scale(1.25);
    opacity: 0;
  }
}

/* ---------- WhatsApp flutuante: pulso + expansão ---------- */
.whats-float {
  overflow: visible;
}

.whats-float::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: wa-pulse 2.4s ease-out infinite;
  z-index: -1;
}

@keyframes wa-pulse {
  0% {
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--whatsapp) 55%, transparent);
  }

  70% {
    box-shadow: 0 0 0 18px transparent;
  }

  100% {
    box-shadow: 0 0 0 18px transparent;
  }
}

.wa-label {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  translate: -8px -50%;
  background: #fff;
  color: var(--green-dark);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  padding: .5rem .85rem;
  border-radius: 10px;
  box-shadow: var(--shadow-2);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, translate .25s var(--ease-out);
}

.whats-float:hover .wa-label {
  opacity: 1;
  translate: 0 -50%;
}

/* ---------- profundidade nos cards e CTAs ---------- */
.contact-card {
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2);
}

.btn-footer,
.btn-submit {
  transition: transform .25s var(--ease-out), filter .2s ease;
}

.btn-footer:active,
.btn-submit:active {
  transform: translateY(0) scale(.97);
}

/* ---------- fallback de movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] {
    opacity: 1;
    translate: none;
  }

  .fade-track>a.active img {
    animation: none;
  }

  .whats-float::after,
  .video-play::before {
    animation: none;
  }
}

/* ============================================================
   REDESIGN V2 — header e hero novos
   (mesma paleta, mesma copy; tipografia e layout novos)
   ============================================================ */

/* ---------- header v2: vidro creme, logo à esquerda ---------- */
.site-header {
  background: color-mix(in srgb, var(--cream) 92%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgb(47 75 18 / .08);
}

.site-header.scrolled {
  background: color-mix(in srgb, var(--cream) 97%, transparent);
  box-shadow: var(--shadow-2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 74px;
  transition: min-height .3s var(--ease-out);
}

.site-header.scrolled .header-inner {
  min-height: 60px;
}

.site-header .brand {
  display: block;
  flex-shrink: 0;
}

.site-header .brand img {
  height: 52px;
  width: auto;
}

.site-header.scrolled .brand img {
  height: 44px;
}

.site-header .brand img {
  transition: height .3s var(--ease-out);
}

.site-header .nav-links {
  display: flex;
  align-items: center;
  gap: .2rem;
}

.site-header .nav-links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--green-deep);
  text-decoration: none;
  padding: .5rem .85rem;
  border-radius: 12px;
  text-transform: none;
  letter-spacing: 0;
}

.site-header .nav-links a:hover {
  background: rgb(132 229 9 / .18);
}

.site-header .nav-links a[aria-current="page"] {
  background: var(--lime);
}

.site-header .nav-cta a {
  background: var(--green-deep);
  color: var(--cream);
  margin-left: .5rem;
  border-radius: 999px;
  padding: .6rem 1.4rem;
  font-weight: 700;
}

.site-header .nav-cta a:hover {
  background: var(--lime);
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}

@media (min-width: 1025px) {
  .site-header .menu-toggle {
    display: none;
  }

  .site-header .nav-links a {
    transition: background .2s ease, color .2s ease, transform .2s var(--ease-out), box-shadow .2s ease;
  }
}

/* painel mobile do header v2 (herda a mecânica da cascata) */
@media (max-width: 1024px) {
  .site-header .nav-links a {
    color: var(--cream);
    padding: .7rem .25rem;
    border-radius: 0;
  }

  .site-header .nav-links a[aria-current="page"] {
    color: var(--green-deep);
  }

  .site-header .menu-toggle {
    color: var(--green-deep);
  }

  .site-header .menu-toggle .bars span {
    background: var(--green-deep);
  }
}

/* ---------- hero v2: split com palco de benefícios ---------- */
.hero-v2 {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--green-deep) 0%, var(--green-mid) 100%);
  color: var(--cream);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(4.5rem, 8vw, 7rem);
  border-radius: 0 0 clamp(28px, 4vw, 48px) clamp(28px, 4vw, 48px);
}

/* grid de pontinhos lime */
.hero-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgb(138 245 0 / .16) 1.5px, transparent 1.7px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 85% 95% at 72% 35%, #000 25%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 85% 95% at 72% 35%, #000 25%, transparent 72%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 1.3rem;
  justify-items: start;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgb(138 245 0 / .16);
  border: 1px solid rgb(138 245 0 / .45);
  color: var(--lime-bright);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .45rem 1.1rem;
  border-radius: 999px;
}

.hero-copy h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.4rem, 4.8vw, 4.3rem);
  line-height: 1.06;
  color: var(--cream);
  letter-spacing: 0;
}

.hl {
  display: inline-block;
  background: var(--lime);
  color: var(--green-deep);
  padding: 0 .28em;
  border-radius: .3em;
  rotate: -2deg;
  box-shadow: 0 6px 24px rgb(138 245 0 / .35);
}

.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: rgb(244 255 230 / .85);
  max-width: 34em;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
}

.btn-primary,
.btn-ghost {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  border-radius: 999px;
  padding: .95rem 1.9rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: transform .25s var(--ease-out), box-shadow .25s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.btn-primary {
  background: var(--lime);
  color: var(--green-deep);
  box-shadow: 0 10px 30px rgb(138 245 0 / .35);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgb(138 245 0 / .45);
}

.btn-primary:active {
  transform: scale(.97);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgb(244 255 230 / .35);
}

.btn-ghost:hover {
  border-color: var(--lime);
  color: var(--lime-bright);
  transform: translateY(-3px);
}

.hero-price {
  display: inline-flex;
  align-items: baseline;
  gap: .45rem;
  font-size: .98rem;
  color: rgb(244 255 230 / .75);
  border: 1px dashed rgb(138 245 0 / .5);
  border-radius: 14px;
  padding: .5rem 1rem;
}

.hero-price strong {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--lime-bright);
}

/* palco: blobs + cards flutuantes */
.hero-stage {
  position: relative;
  min-height: 560px;
}

.blob {
  position: absolute;
  border-radius: 58% 42% 55% 45% / 52% 58% 42% 48%;
}

.blob.b1 {
  width: 460px;
  height: 440px;
  right: 2%;
  top: 6%;
  background: radial-gradient(circle at 35% 30%, var(--lime-bright), var(--lime) 70%);
  opacity: .9;
  filter: drop-shadow(0 30px 60px rgb(0 0 0 / .25));
  rotate: -8deg;
}

.blob.b2 {
  width: 210px;
  height: 200px;
  left: 0;
  bottom: 4%;
  background: rgb(244 255 230 / .1);
  rotate: 14deg;
}

@keyframes bob {
  from {
    translate: 0 -7px;
  }

  to {
    translate: 0 8px;
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: .5rem;
  }

  .blob.b1 {
    width: 320px;
    height: 300px;
    right: -20%;
    top: -10%;
    opacity: .5;
  }

  .blob.b2 {
    display: none;
  }
}

@media (max-width: 560px) {
  .hero-stage {
    grid-template-columns: 1fr;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-ghost {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   REDESIGN V2 — ETAPA 2: pricing, parceiros, teatro, FAQ
   ============================================================ */

/* ---------- pricing 3 colunas (à la Meli+) ---------- */
.planos-v2 {
  background: var(--cream-soft);
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(4.5rem, 8vw, 7rem);
}

.planos-v2 .planos-head {
  margin-bottom: clamp(2.5rem, 5vw, 3.8rem);
}

.planos-v2 .planos-head h2 {
  color: var(--green-deep);
  font-size: clamp(1.9rem, 3.8vw, 3.3rem);
  font-weight: 800;
}

.planos-v2 .planos-head .sub {
  color: #5a6650;
  font-size: 1.15rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  max-width: 1080px;
  margin-inline: auto;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  color: var(--green-deep);
  border-radius: 26px;
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-1);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-3);
}

.price-card.featured {
  background: linear-gradient(165deg, var(--green-deep) 0%, #24390d 100%);
  color: var(--cream);
  border: 1px solid rgb(138 245 0 / .35);
  transform: translateY(-14px);
  box-shadow: var(--shadow-3);
}

.price-card.featured:hover {
  transform: translateY(-20px);
}

.price-card.featured .p-ic {
  background: var(--lime);
  color: var(--green-deep);
}

.price-card .p-ic {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--cream-soft);
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
}

.price-card .p-ic svg {
  width: 26px;
  height: 26px;
}

.price-card h3 {
  font-size: 1.45rem;
  font-weight: 800;
  margin: 0 0 .2rem;
}

.price-card .p-desc {
  font-size: .95rem;
  opacity: .8;
  margin: 0 0 1rem;
}

.price-card .p-benefit {
  display: flex;
  gap: .5rem;
  align-items: center;
  font-size: .88rem;
  margin: 0 0 1.4rem;
  opacity: .92;
}

.price-card .p-benefit svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.p-actions {
  display: grid;
  gap: .7rem;
  margin-top: auto;
}

.p-btn {
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: .85rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .25s var(--ease-out), box-shadow .25s ease, background .2s ease, border-color .2s ease;
}

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

.p-btn.lime {
  background: var(--lime);
  color: var(--green-deep);
  box-shadow: 0 8px 24px rgb(138 245 0 / .4);
}

.p-btn.lime:hover {
  background: var(--lime-bright);
}

.p-btn.outline {
  border: 2px solid rgb(47 75 18 / .25);
  color: var(--green-deep);
}

.p-btn.outline:hover {
  border-color: var(--green-deep);
}

.p-nota {
  font-size: .78rem;
  opacity: .7;
  margin: .8rem 0 0;
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .price-card.featured {
    transform: none;
  }

  .price-card.featured:hover {
    transform: translateY(-6px);
  }
}

/* ---------- parceiros v2: display gigante + marquee duplo ---------- */
.parceiros-v2 {
  position: relative;
  overflow: hidden;
  background: var(--green-deep);
  color: var(--cream);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.parceiros-v2 h2 {
  text-align: center;
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  font-weight: 800;
  max-width: 22ch;
  margin: 0 auto clamp(2.4rem, 5vw, 3.5rem);
  color: var(--cream);
}

.parceiros-v2 .marquee {
  margin-bottom: 1.2rem;
}

.parceiros-v2 .marquee:last-child {
  margin-bottom: 0;
}

.marquee.rev .marquee-track {
  animation-direction: reverse;
}

/* ---------- teatro de vídeo: moldura premium ---------- */
.videos-section {
  background: var(--cream);
}

/* ---------- passos: linha que se desenha no scroll ---------- */
@media (min-width: 1025px) {
  .steps-carousel::before {
    transform-origin: left center;
    animation: draw-line linear both;
    animation-timeline: view();
    animation-range: entry 30% cover 42%;
  }

  @keyframes draw-line {
    from {
      transform: scaleX(0);
    }

    to {
      transform: scaleX(1);
    }
  }
}

/* ---------- FAQ tipográfico (estilo Stripe) ---------- */
.faq-section {
  background: var(--cream-soft);
}

.faq-list {
  max-width: 820px;
  gap: 0;
}

.faq-item {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  border-top: 1px solid rgb(47 75 18 / .18);
}

.faq-item:last-child {
  border-bottom: 1px solid rgb(47 75 18 / .18);
}

.faq-item summary {
  padding: 1.35rem .4rem;
  font-size: clamp(1.12rem, 1.9vw, 1.45rem);
  color: var(--green-deep);
}

.faq-item summary .chev {
  width: 32px;
  height: 32px;
  background: var(--green-deep);
  color: var(--lime);
}

.faq-item[open] summary,
.faq-item summary:hover {
  color: var(--green-dark);
}

.faq-item .faq-body {
  padding: 0 .4rem 1.5rem;
  max-width: 62ch;
  font-size: 1rem;
}

/* ============================================================
   REDESIGN V2 — ETAPA 3: fotos nos planos + página de planos
   ============================================================ */

/* ---------- foto no topo de cada card ---------- */
.p-photo {
  height: 150px;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 1.15rem;
  position: relative;
}

.p-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(47 75 18 / 0) 45%, rgb(47 75 18 / .3));
}

.p-head {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: .55rem;
}

.p-head .p-ic {
  margin-bottom: 0;
  width: 46px;
  height: 46px;
}

.p-head h3 {
  margin: 0;
}

/* ---------- hero da página de planos: família recortada no blob ---------- */
.hero-stage--photo {
  min-height: 480px;
  display: grid;
  place-items: center;
}

.hero-photo {
  position: relative;
  width: min(540px, 100%);
  mix-blend-mode: lighten;
  z-index: 1;
}

@media (max-width: 1024px) {
  .hero-stage--photo {
    min-height: 0;
  }

  .hero-photo {
    width: min(420px, 88%);
  }
}

/* ============================================================
   REDESIGN V2 — ETAPA 3B: hero fotográfico + portas de entrada
   + ponte com a Lehn + exemplos nos benefícios
   ============================================================ */

/* ---------- hero com foto full-bleed (composição esq, texto dir) ---------- */
.hero-v2--photo {
  background:
    linear-gradient(90deg, rgb(36 57 13 / .28) 0%, rgb(36 57 13 / .5) 38%, rgb(36 57 13 / .96) 66%, #24390d 100%),
    linear-gradient(rgb(47 75 18 / .22), rgb(47 75 18 / .22)),
    url('../assets/img/fotos/foto-familia-bg.webp') 72% 30% / cover no-repeat;
}

.hero-v2--photo.hero-v2 {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.hero-v2--photo .hero-grid {
  grid-template-columns: 1fr 1.08fr;
}

.hero-v2--photo .hero-stage {
  order: -1;
  /* composição à esquerda */
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1rem;
  align-items: flex-start;
}

.hero-v2--photo .hero-copy {
  order: 1;
}

.hero-v2--photo .blob {
  display: none;
}

.tag-float {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: rgb(244 255 230 / .95);
  color: var(--green-deep);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  padding: .65rem 1.15rem;
  border-radius: 999px;
  box-shadow: var(--shadow-2);
  animation: bob 5.5s ease-in-out infinite alternate;
}

.tag-float svg {
  width: 18px;
  height: 18px;
  color: var(--green-dark);
  flex-shrink: 0;
}

.tag-float:nth-child(2) {
  animation-delay: -2.2s;
  rotate: 1.5deg;
}

.tag-float:nth-child(1) {
  rotate: -1.5deg;
}

@media (max-width: 1024px) {
  .hero-v2--photo {
    background:
      linear-gradient(180deg, rgb(36 57 13 / .35) 0%, rgb(36 57 13 / .8) 55%, #24390d 100%),
      url('../assets/img/fotos/foto-familia-bg.webp') center 30% / cover no-repeat;
  }

  .hero-v2--photo .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-v2--photo .hero-stage {
    order: 1;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: .5rem;
  }

  .hero-v2--photo .hero-copy {
    order: 0;
  }
}

/* ---------- duas formas de entrar no clube ---------- */
.entry-ways {
  background: #fff;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.entry-ways h2 {
  text-align: center;
  font-size: clamp(1.9rem, 3.8vw, 3.2rem);
  font-weight: 800;
  color: var(--green-deep);
  margin-bottom: clamp(1.8rem, 4vw, 2.8rem);
}

.ways-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 920px;
  margin-inline: auto;
}

.way-card {
  display: grid;
  gap: .8rem;
  justify-items: start;
  background: #fff;
  border-radius: 26px;
  padding: 2.2rem 1.9rem;
  box-shadow: var(--shadow-1);
  border: 1px solid rgb(47 75 18 / .07);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}

.way-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-3);
}

.way-card .w-ic {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.way-card .w-ic svg {
  width: 26px;
  height: 26px;
}

.way-card.bonus .w-ic {
  background: transparent;
  color: #003356;
  border: none;
}

.way-card.avulsa .w-ic {
  background: var(--green-mid);
  color: #fff;
}

.way-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--green-deep);
  margin: 0;
}

.way-card p {
  margin: 0;
  color: #4a5442;
  font-size: .98rem;
}

.way-card .w-link {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  color: var(--green-pag);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.way-card .w-link:hover {
  color: var(--green-deep);
  text-decoration: underline;
}

.btn-primary.sm {
  padding: .7rem 1.5rem;
  font-size: .95rem;
}

@media (max-width: 768px) {
  .ways-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- ponte com a Lehn Corretora ---------- */
.lehn-bridge-wrap {
  background: var(--cream-soft);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
}

.lehn-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  background: linear-gradient(160deg, var(--green-deep) 0%, #24390d 100%);
  border-radius: 32px;
  padding: clamp(2rem, 5vw, 3.5rem);
  color: var(--cream);
  box-shadow: var(--shadow-3);
}

.lehn-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgb(138 245 0 / .14) 1.5px, transparent 1.7px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 70% 90% at 85% 20%, #000 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 90% at 85% 20%, #000 20%, transparent 70%);
}

.lehn-card>* {
  position: relative;
}

.lehn-card h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: var(--cream);
  margin: 0 0 .6rem;
}

.lehn-card p {
  color: rgb(244 255 230 / .85);
  margin: 0;
}

.lehn-cta {
  display: grid;
  gap: .8rem;
  justify-items: start;
}

.lehn-site {
  color: rgb(244 255 230 / .85);
  font-family: var(--font-head);
  font-weight: 600;
  text-decoration: none;
  font-size: .95rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.lehn-site:hover {
  color: var(--lime-bright);
}

@media (max-width: 900px) {
  .lehn-card {
    grid-template-columns: 1fr;
  }
}

/* ---------- copy v3: CTA final ---------- */
.cta-final {
  background: var(--cream);
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}

.cta-final-box {
  display: grid;
  justify-items: center;
  gap: .7rem;
  text-align: center;
  background: linear-gradient(160deg, var(--green-deep) 0%, #24390d 100%);
  border-radius: 32px;
  padding: clamp(2.2rem, 6vw, 4rem) clamp(1.5rem, 5vw, 3rem);
  color: var(--cream);
  box-shadow: var(--shadow-3);
}

.cta-final-box h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  margin: 0;
}

.cta-final-box p {
  color: rgb(244 255 230 / .85);
  margin: 0;
}

.cta-final-box .btn-primary {
  margin-top: .8rem;
}

.parceiros-v2 .sub {
  max-width: 640px;
  margin: -1.4rem auto clamp(2rem, 4.5vw, 3rem);
  color: rgb(244 255 230 / .8);
  text-align: center;
}

/* ---------- v4: dobra clara (referência 21/09) ---------- */
.site-header--light {
  background: color-mix(in srgb, var(--cream) 88%, #fff);
}

.site-header--light.scrolled {
  background: rgb(250 253 243 / .92);
  box-shadow: 0 6px 24px rgb(36 64 12 / .08);
}

.site-header--light .nav-links a {
  color: var(--green-deep);
}

.site-header--light .nav-links a:hover,
.site-header--light .nav-links a[aria-current="page"] {
  color: var(--green-dark);
  border-bottom-color: var(--green-dark);
}

.site-header--light .menu-toggle {
  color: var(--green-deep);
}

.hero-v4 {
  background:
    radial-gradient(1100px 560px at 88% -12%, #ffffff 0%, transparent 58%),
    var(--cream);
  color: var(--green-deep);
  padding: clamp(1.5rem, 4vw, 3.5rem) 0 clamp(2.5rem, 6vw, 4.5rem);
}

.hero-v4 .hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero-v4 .chip {
  background: none;
  padding: 0;
  color: var(--green-dark);
  font-weight: 700;
}

.hero-v4 h1 {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 5.1vw, 4.65rem);
  line-height: .94;
  letter-spacing: -.025em;
  color: #24400c;
  margin: .9rem 0 1.2rem;
}

.hero-v4 .hero-sub {
  font-size: clamp(1.02rem, 1.6vw, 1.25rem);
  color: #44503a;
  max-width: 46ch;
  margin: 0 0 1.7rem;
}

.hero-v4 .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-bottom: 1.2rem;
}

.hero-v4 .btn-ghost {
  background: #fff;
  color: var(--green-deep);
  border: 1.5px solid rgb(47 75 18 / .35);
}

.hero-v4 .btn-ghost:hover {
  border-color: var(--green-deep);
  background: #fff;
}

.hero-v4 .hero-price {
  font-size: .95rem;
  color: #5a6650;
}

.hero-v4 .hero-price strong {
  color: #3c642c;
}

.hero-visual {
  position: relative;
  container-type: inline-size;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-3);
  align-self: center;
}

.hero-visual>img {
  display: block;
  width: 100%;
  height: auto;
}

.beneficios-v4 {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.beneficios-v4::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  right: -230px;
  top: -230px;
  border: 70px solid rgb(132 229 9 / .1);
  border-radius: 50%;
  pointer-events: none;
}

.beneficios-grid {
  position: relative;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: clamp(3rem, 6vw, 5.5rem);
  align-items: stretch;
}

.beneficios-foto {
  min-height: 680px;
  margin: 0;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgb(36 64 12 / .14);
}

.beneficios-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.beneficios-content {
  display: grid;
  align-content: center;
  min-width: 0;
}

.beneficios-head {
  max-width: 680px;
}

.beneficios-eyebrow {
  display: flex;
  align-items: center;
  gap: .8rem;
  color: var(--green-dark);
  font-family: var(--font-body);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.beneficios-eyebrow::after {
  content: '';
  width: 54px;
  height: 2px;
  background: var(--lime);
}

.beneficios-head h2 {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 4.2vw, 4rem);
  line-height: .96;
  letter-spacing: -.025em;
  color: #24400c;
  margin: .75rem 0 .9rem;
  text-wrap: balance;
}

.beneficios-intro {
  max-width: 54ch;
  color: #4b5840;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
}

.beneficios-lista {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(2rem, 4vw, 3.2rem);
}

.beneficio-item {
  min-width: 0;
  padding: 1.6rem 1.7rem 1.8rem 0;
  border-bottom: 1px solid rgb(59 102 3 / .2);
}

.beneficio-item:nth-child(2n) {
  padding-left: 1.7rem;
  padding-right: 0;
  border-left: 1px solid rgb(59 102 3 / .2);
}

.beneficio-item:nth-child(n + 3) {
  border-bottom: 0;
}

.beneficio-top {
  display: flex;
  align-items: center;
  gap: .9rem;
}

.beneficio-icon {
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  color: #66ad1b;
}

.beneficio-icon svg {
  width: 34px;
  height: 34px;
}

.beneficio-item h3 {
  position: relative;
  z-index: 0;
  display: inline-block;
  max-width: calc(100% - 50px);
  padding: .58rem .9rem .52rem;
  border-radius: 12px 16px 12px 16px;
  background: var(--green-deep);
  box-shadow: 5px 5px 0 var(--lime);
  color: #fff;
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: clamp(1.28rem, 1.8vw, 1.65rem);
  font-weight: 700;
  line-height: .95;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.beneficio-item:nth-child(2) h3,
.beneficio-item:nth-child(3) h3 {
  border-radius: 16px 12px 16px 12px;
}

.beneficio-item>p {
  max-width: 34ch;
  margin: 1.2rem 0 0;
  color: #44503a;
  font-size: .96rem;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .hero-v4 .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-visual {
    max-width: 430px;
    margin: 0 auto;
    width: 100%;
  }

  .beneficios-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .beneficios-foto {
    min-height: 0;
    max-width: 620px;
    margin: 0 auto;
    width: 100%;
    aspect-ratio: 4 / 5;
  }

  .beneficios-content {
    max-width: 720px;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .beneficios-v4 {
    padding: 3.5rem 0;
  }

  .beneficios-grid {
    gap: 2.4rem;
  }

  .beneficios-head h2 {
    font-size: clamp(2.45rem, 12vw, 3.35rem);
  }

  .beneficios-lista {
    grid-template-columns: 1fr;
    margin-top: 2.2rem;
  }

  .beneficio-item,
  .beneficio-item:nth-child(2n) {
    padding: 1.5rem 0 1.7rem;
    border-left: 0;
    border-bottom: 1px solid rgb(59 102 3 / .2);
  }

  .beneficio-item:first-child {
    padding-top: 0;
  }

  .beneficio-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .beneficio-item>p {
    max-width: none;
  }
}

/* ---------- v4 ajustes finos ---------- */
.site-header--light .brand img {
  filter: brightness(0);
}

.site-header--light .nav-cta a {
  color: var(--cream) !important;
}

.hero-v4 .chip {
  border: 0;
  padding: 0;
  text-transform: none;
  letter-spacing: .01em;
  font-size: .95rem;
  opacity: .92;
}

/* ---------- v4 hero: FOTO DE FUNDO full-bleed (texto sobre o bokeh esquerdo) ---------- */
.hero-v4 {
  background:
    linear-gradient(90deg, rgba(247, 250, 240, .95) 0%, rgba(247, 250, 240, .85) 32%, rgba(247, 250, 240, .35) 54%, rgba(247, 250, 240, 0) 68%),
    url('../assets/img/fotos/hero-mao-celular-app.webp') right center / cover no-repeat,
    var(--cream);
  padding: clamp(3.5rem, 9vw, 7rem) 0;
}

.hero-v4 .hero-grid {
  display: block;
}

.hero-v4 .hero-copy {
  max-width: 560px;
}

@media (max-width: 900px) {
  .hero-v4 {
    background:
      linear-gradient(180deg, #f7faf0 0%, #f7faf0 54%, rgba(247, 250, 240, .86) 60%, rgba(247, 250, 240, .12) 76%, rgba(247, 250, 240, 0) 100%),
      url('../assets/img/fotos/hero-mao-celular-app.webp') right bottom / auto 440px no-repeat,
      var(--cream);
    padding: 3rem 0 27rem;
  }

  .hero-v4 .hero-copy {
    max-width: 640px;
  }
}

@media (max-width: 560px) {
  .hero-v4 {
    background-position: center, right bottom, center;
    background-size: auto, auto 420px, auto;
    padding: 2.7rem 0 25rem;
  }

  .hero-v4 .hero-copy,
  .hero-v4 .hero-sub,
  .hero-v4 .hero-cta {
    width: 100%;
    min-width: 0;
  }

  .hero-v4 .hero-copy {
    max-width: none;
  }

  .hero-v4 .hero-cta {
    display: grid;
  }

  .hero-v4 .hero-cta a {
    width: 100%;
    justify-content: center;
  }

  .hero-v4 .hero-price {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    background: rgb(247 250 240 / .88);
  }

  .site-header .menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 2;
  }
}

/* ============================================================
   PLAYER POP — autoplay leve, controles próprios
   ============================================================ */
.videos-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream) 0%, #eaffce 100%);
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.videos-section::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  left: -330px;
  bottom: -360px;
  border: 90px solid rgb(59 102 3 / .08);
  border-radius: 50%;
}

.video-showcase {
  position: relative;
  display: grid;
  justify-items: center;
}

.pop-video {
  position: relative;
  isolation: isolate;
  width: min(980px, 100%);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 6px solid #fff;
  border-radius: 30px;
  background: #183408;
  box-shadow: 0 28px 80px rgb(36 64 12 / .24), 0 0 0 1px rgb(59 102 3 / .18);
}

.pop-video::after {
  content: '';
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(12 31 3 / .7) 0%, transparent 26%),
    linear-gradient(0deg, rgb(12 31 3 / .7) 0%, transparent 28%);
  pointer-events: none;
}

.pop-video__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #183408;
}

.pop-video__top {
  position: absolute;
  z-index: 3;
  top: clamp(1rem, 2.5vw, 1.8rem);
  left: clamp(1rem, 2.5vw, 1.8rem);
  display: flex;
  align-items: center;
  gap: .9rem;
  color: #fff;
  text-shadow: 0 2px 12px rgb(0 0 0 / .5);
  pointer-events: none;
}

.pop-video__top img {
  width: clamp(64px, 8vw, 92px);
  height: auto;
  filter: brightness(0) invert(1);
  opacity: .95;
}

.pop-video__top div {
  display: grid;
  line-height: 1.2;
}

.pop-video__top strong {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: clamp(1.15rem, 2.2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: .01em;
}

.pop-video__top span {
  color: rgb(255 255 255 / .78);
  font-size: clamp(.72rem, 1.2vw, .92rem);
}

.pop-video__controls {
  position: absolute;
  z-index: 4;
  inset: 50% auto auto 50%;
  display: flex;
  align-items: center;
  gap: clamp(.75rem, 2vw, 1.4rem);
  translate: -50% -50%;
  opacity: 0;
  transition: opacity .25s ease;
}

.pop-video:hover .pop-video__controls,
.pop-video:focus-within .pop-video__controls,
.pop-video.is-muted .pop-video__controls,
.pop-video.is-paused .pop-video__controls {
  opacity: 1;
}

.pop-video__controls button {
  display: grid;
  place-items: center;
  border: 1px solid rgb(255 255 255 / .45);
  border-radius: 50%;
  color: #fff;
  background: rgb(20 38 10 / .6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  box-shadow: 0 10px 30px rgb(0 0 0 / .22);
  transition: transform .2s ease, background .2s ease;
}

.pop-video__controls button:hover {
  transform: scale(1.08);
  background: rgb(47 75 18 / .88);
}

.pop-video__skip {
  width: clamp(48px, 6vw, 62px);
  height: clamp(48px, 6vw, 62px);
}

.pop-video__toggle {
  width: clamp(68px, 8vw, 88px);
  height: clamp(68px, 8vw, 88px);
  border-color: var(--lime) !important;
  background: var(--lime) !important;
  color: var(--green-deep) !important;
}

.pop-video__controls svg {
  width: 50%;
  height: 50%;
}

.pop-video__toggle .icon-pause {
  display: none;
}

.pop-video.is-playing .pop-video__toggle .icon-play {
  display: none;
}

.pop-video.is-playing .pop-video__toggle .icon-pause {
  display: block;
}

.pop-video__unmute {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: clamp(2.7rem, 5vw, 4.1rem);
  translate: -50% 0;
  display: flex;
  align-items: center;
  gap: .8rem;
  min-width: min(360px, calc(100% - 2rem));
  padding: .72rem 1.25rem .72rem .72rem;
  border: 0;
  border-radius: 999px;
  background: var(--green-deep);
  color: #fff;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 14px 38px rgb(0 0 0 / .3), 0 0 0 1px rgb(255 255 255 / .2);
  transition: transform .2s ease, opacity .25s ease;
}

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

.pop-video:not(.is-muted) .pop-video__unmute {
  opacity: 0;
  pointer-events: none;
}

.pop-video__sound {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--green-deep);
}

.pop-video__sound svg {
  width: 24px;
  height: 24px;
}

.pop-video__unmute>span:last-child {
  display: grid;
  line-height: 1.15;
}

.pop-video__unmute strong {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pop-video__unmute small {
  color: rgb(255 255 255 / .78);
  font-size: .82rem;
}

.pop-video__timeline {
  position: absolute;
  z-index: 4;
  left: clamp(1rem, 2.5vw, 1.8rem);
  right: clamp(1rem, 2.5vw, 1.8rem);
  bottom: clamp(.8rem, 1.8vw, 1.2rem);
  display: flex;
  align-items: center;
  gap: .8rem;
}

.pop-video__time {
  flex: none;
  color: rgb(255 255 255 / .82);
  font-size: .75rem;
  font-variant-numeric: tabular-nums;
}

.pop-video__progress {
  position: relative;
  flex: 1;
  height: 5px;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgb(255 255 255 / .3);
  cursor: pointer;
}

.pop-video__progress-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  border-radius: inherit;
  background: var(--lime);
}

@media (max-width: 640px) {
  .videos-section {
    padding: 3.5rem 0;
  }

  .pop-video {
    border-width: 4px;
    border-radius: 20px;
  }

  .pop-video__top {
    gap: .55rem;
  }

  .pop-video__top img {
    width: 54px;
  }

  .pop-video__top span {
    display: none;
  }

  .pop-video__skip {
    width: 42px;
    height: 42px;
  }

  .pop-video__toggle {
    width: 60px;
    height: 60px;
  }

  .pop-video__unmute {
    bottom: 2.25rem;
    gap: .6rem;
    min-width: calc(100% - 1.4rem);
    padding: .5rem .8rem .5rem .5rem;
  }

  .pop-video__sound {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }

  .pop-video__sound svg {
    width: 20px;
    height: 20px;
  }

  .pop-video__unmute strong {
    font-size: .78rem;
  }

  .pop-video__unmute small {
    font-size: .7rem;
  }

  .pop-video__time {
    display: none;
  }

  .pop-video__timeline {
    left: .75rem;
    right: .75rem;
    bottom: .65rem;
  }
}

@media (prefers-reduced-motion: reduce) {

  .pop-video__controls button,
  .pop-video__unmute {
    transition: none;
  }
}

/* ============================================================
   PLANOS V3 — composição aberta e transição orgânica
   ============================================================ */
.planos-v2 {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #fbfdf7;
  padding: clamp(4rem, 7vw, 6.75rem) 0 clamp(7rem, 10vw, 9rem);
}

.planos-v2 .container {
  position: relative;
  z-index: 2;
}

.planos-v2 .planos-head {
  max-width: 720px;
  margin: 0 auto clamp(3rem, 5vw, 4.5rem);
  text-align: center;
}

.planos-v2 .planos-head h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -.035em;
}

.planos-v2 .planos-head .sub {
  margin-top: .5rem;
  color: #66705d;
}

.plans-wave {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: clamp(62px, 7vw, 96px);
  pointer-events: none;
}

.pricing-grid {
  grid-template-columns: 1.08fr 1fr 1fr;
  gap: clamp(2.4rem, 4vw, 4.6rem);
  max-width: 1180px;
  align-items: start;
}

.price-card,
.price-card.featured {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--green-deep);
  box-shadow: none;
  transform: none;
  transition: none;
}

.price-card:hover,
.price-card.featured:hover {
  box-shadow: none;
  transform: none;
}

.p-photo {
  width: 100%;
  height: clamp(170px, 15vw, 220px);
  margin: 0 0 1.15rem;
  border-radius: 26px;
  background: #e9f4dc;
  box-shadow: 0 14px 38px rgb(47 75 18 / .09);
}

.p-photo::after {
  display: none;
}

.p-photo img {
  object-position: center;
}

.p-head {
  position: relative;
  z-index: 2;
  gap: .65rem;
  margin: 0 0 .9rem;
}

.p-head .p-ic,
.price-card .p-ic {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  margin: 0;
  background: #eff8e5;
  color: var(--green-deep);
  box-shadow: 0 0 0 7px #fbfdf7;
}

.p-head .p-ic svg {
  width: 22px;
  height: 22px;
}

.p-head h3,
.price-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.1;
}

.price-card.featured .p-head .p-ic {
  background: var(--lime);
  color: var(--green-deep);
  box-shadow: none;
}

.price-card .p-desc {
  min-height: 3rem;
  margin: 0 0 .65rem;
  color: #5d6756;
  font-size: .95rem;
  opacity: 1;
}

.price-card.featured .p-desc {
  min-height: auto;
  margin-top: .15rem;
  color: var(--green-deep);
  font-size: 1.05rem;
}

.price-card .p-benefit {
  min-height: 4.7rem;
  margin: .35rem 0 1.25rem;
  color: #26331e;
  line-height: 1.45;
  opacity: 1;
}

.price-card .p-benefit::before {
  content: '';
  align-self: flex-start;
  width: 24px;
  height: 2px;
  margin-top: -10px;
  background: var(--green-deep);
}

.price-card .p-benefit svg {
  width: 22px;
  height: 22px;
}

.p-choice {
  display: inline-flex;
  align-self: flex-start;
  justify-self: start;
  width: max-content;
  margin: 0 0 .45rem;
  padding: .25rem .7rem;
  border-radius: 999px;
  background: #e7f7d2;
  color: var(--green-deep);
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 800;
}

.p-actions {
  gap: .55rem;
  margin-top: auto;
}

.price-card.featured .p-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.p-btn {
  padding: .72rem 1rem;
  font-size: .9rem;
  line-height: 1.25;
}

.p-btn.lime {
  box-shadow: none;
}

.p-btn.outline {
  background: rgb(255 255 255 / .5);
}

.p-nota {
  margin-top: .75rem;
  color: #5e6658;
  line-height: 1.45;
  opacity: 1;
}

.entry-ways {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: clamp(3.5rem, 6vw, 5.75rem) 0 clamp(4rem, 7vw, 6rem);
}

.entry-ways h2 {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -.035em;
}

.ways-grid {
  position: relative;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(5.5rem, 10vw, 9rem);
  max-width: 1040px;
}

.ways-grid::before {
  content: '';
  position: absolute;
  top: 42px;
  left: calc(50% - 54px);
  width: 108px;
  height: 34px;
  border-bottom: 2px solid rgb(102 173 27 / .45);
  border-radius: 0 0 60px 60px;
}

.way-card {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: .35rem 1.35rem;
  align-content: start;
  justify-items: start;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: none;
}

.way-card:hover {
  transform: none;
  box-shadow: none;
}

.way-card .w-ic {
  grid-row: 1 / span 4;
  width: 64px;
  height: 64px;
  box-shadow: 0 10px 24px rgb(47 75 18 / .12);
}

.way-card .w-ic svg {
  width: 28px;
  height: 28px;
}

.way-card h3 {
  grid-column: 2;
  align-self: end;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.way-card p,
.way-card a {
  grid-column: 2;
}

.way-card p {
  max-width: 38ch;
  line-height: 1.55;
}

.way-card .btn-primary.sm {
  margin-top: .4rem;
  padding: .65rem 1.35rem;
}

.way-card .w-link {
  margin-top: .55rem;
}

/* ---------- Lehn Corretora — Identidade Azul ---------- */
.way-card--lehn {
  grid-template-columns: 110px minmax(0, 1fr);
  column-gap: 1.4rem;
}

.way-card--lehn .w-ic {
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  width: 110px;
  height: auto;
  min-height: 60px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  align-self: start;
}

.way-card--lehn .w-ic .w-ic-logo {
  width: 100%;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  display: block;
}

.way-card--lehn h3 {
  color: #003356;
}

.way-card--lehn p {
  color: #3b4e5d;
}

.way-card--lehn .w-link {
  color: #00598e;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  transition: color .2s var(--ease-out), transform .2s var(--ease-out);
}

.way-card--lehn .w-link:hover {
  color: #002e4d;
  transform: translateX(3px);
  text-decoration: underline;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 640px;
  }

  .price-card,
  .price-card.featured {
    display: grid;
    grid-template-columns: minmax(190px, .8fr) minmax(260px, 1.2fr);
    grid-template-rows: auto auto auto 1fr auto;
    column-gap: 2rem;
  }

  .p-photo,
  .price-card.featured .p-photo {
    grid-column: 1;
    grid-row: 1 / span 6;
    align-self: start;
    height: 230px;
  }

  .p-head,
  .price-card.featured .p-head {
    grid-column: 2;
    margin: 0 0 .55rem;
  }

  .price-card .p-desc,
  .price-card .p-benefit,
  .p-choice,
  .p-actions,
  .p-nota {
    grid-column: 2;
  }

  .price-card .p-desc,
  .price-card .p-benefit {
    min-height: 0;
  }

  .ways-grid {
    gap: 3rem;
  }

  .ways-grid::before {
    display: none;
  }
}

@media (max-width: 680px) {
  .planos-v2 {
    padding-top: 3.25rem;
  }

  .planos-v2 .planos-head {
    text-align: left;
  }

  .pricing-grid {
    gap: 4.5rem;
  }

  .price-card,
  .price-card.featured {
    display: flex;
  }

  .p-photo,
  .price-card.featured .p-photo {
    height: min(62vw, 250px);
  }

  .price-card.featured .p-actions {
    grid-template-columns: 1fr;
  }

  .price-card .p-desc,
  .price-card .p-benefit {
    min-height: 0;
  }

  .entry-ways h2 {
    text-align: left;
  }

  .ways-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .way-card {
    grid-template-columns: 58px minmax(0, 1fr);
    column-gap: 1rem;
  }

  .way-card .w-ic {
    width: 54px;
    height: 54px;
  }

  .way-card--lehn {
    grid-template-columns: 85px minmax(0, 1fr);
    column-gap: 1rem;
  }

  .way-card--lehn .w-ic {
    width: 85px;
    height: auto;
  }
}

/* ============================================================
   BANNER ROTATIVO — prova social antes do vídeo
   ============================================================ */
.proof-banner {
  position: relative;
  overflow: hidden;
  background: var(--green-deep);
  color: #fff;
}

.proof-banner::before {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  top: -250px;
  right: 11%;
  border: 70px solid rgb(132 229 9 / .1);
  border-radius: 50%;
  pointer-events: none;
}

.proof-banner::after {
  content: '';
  position: absolute;
  right: -4%;
  bottom: -80px;
  width: 44%;
  height: 95px;
  border-radius: 50% 0 0 0;
  background: rgb(132 229 9 / .08);
  pointer-events: none;
}

.proof-banner+.videos-section {
  padding-top: clamp(3.25rem, 6vw, 5.25rem);
}

/* ============================================================
   JORNADA POP V2 — editorial com celular e caminho vertical
   ============================================================ */
.passos-section {
  position: relative;
  overflow: hidden;
  background: #fbfdf7;
  color: var(--green-deep);
  padding: clamp(4.5rem, 8vw, 7.5rem) 0 clamp(3.5rem, 7vw, 6rem);
  text-align: left;
}

.passos-section::before {
  content: '';
  position: absolute;
  left: -13rem;
  bottom: -15rem;
  width: 40rem;
  height: 32rem;
  border-radius: 50%;
  background: rgb(132 229 9 / .08);
  rotate: -23deg;
  pointer-events: none;
}

.passos-editorial {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.passos-visual {
  position: relative;
  min-height: 560px;
}

.passos-copy {
  position: relative;
  z-index: 2;
  max-width: 34rem;
}

.passos-section h2 {
  max-width: 12ch;
  margin: 0 0 1rem;
  color: var(--green-deep);
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.045em;
}

.passos-section .intro {
  max-width: 34ch;
  margin: 0;
  color: #5a6650;
  font-size: clamp(1.1rem, 1.65vw, 1.35rem);
  line-height: 1.45;
}

.passos-section .intro strong {
  color: var(--green-pag);
}

.passos-phone {
  position: absolute;
  z-index: 1;
  left: auto;
  right: .25rem;
  bottom: -3rem;
  width: clamp(190px, 17vw, 240px);
  margin: 0;
  rotate: 8deg;
  filter: drop-shadow(0 24px 30px rgb(47 75 18 / .2));
}

.passos-phone-wash {
  position: absolute;
  z-index: -1;
  inset: 18% -22% 10% -26%;
  border-radius: 50%;
  background: rgb(132 229 9 / .14);
  rotate: -10deg;
}

.passos-phone img {
  position: relative;
  width: 100%;
  height: auto;
}

.steps-path {
  position: relative;
  display: grid;
  gap: clamp(2.2rem, 4.5vw, 4.4rem);
  padding: 1rem 0 1.5rem 5.25rem;
}

.steps-path__line {
  position: absolute;
  top: 2.2rem;
  bottom: 2.3rem;
  left: 1.65rem;
  width: 2px;
  border-radius: 999px;
  background: var(--green-pag);
}

.step-item {
  position: relative;
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr);
  align-items: center;
  gap: .9rem;
  min-height: 96px;
}

.step-item__number {
  position: absolute;
  top: 50%;
  left: -5.25rem;
  display: grid;
  width: 3.35rem;
  height: 3.35rem;
  place-items: center;
  translate: 0 -50%;
  border: 4px solid #fbfdf7;
  border-radius: 50%;
  background: var(--green-deep);
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  box-shadow: 0 0 0 2px var(--green-pag);
}

.step-item:last-child .step-item__number {
  background: var(--lime);
  color: var(--green-deep);
}

.step-item__icon {
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  place-items: center;
  border-radius: 50%;
  background: #eaf8d8;
  color: var(--green-deep);
}

.step-item__icon svg {
  width: 1.65rem;
  height: 1.65rem;
}

.step-item h3 {
  margin: 0 0 .2rem;
  color: var(--green-deep);
  font-size: clamp(1.35rem, 2.25vw, 1.9rem);
  line-height: 1.1;
}

.step-item p {
  margin: 0;
  color: #5a6650;
  font-size: clamp(.95rem, 1.25vw, 1.08rem);
  line-height: 1.45;
}

/* ---------- ponte Lehn com logo oficial ---------- */
.lehn-bridge-wrap {
  position: relative;
  overflow: hidden;
  background: #effbdc;
  padding: 0 0 clamp(3.2rem, 6vw, 5.5rem);
}

.lehn-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1.65fr) minmax(170px, .7fr);
  gap: clamp(1rem, 2.5vw, 2.2rem);
  align-items: center;
  min-height: 190px;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 4vw, 4rem);
  border: 0;
  border-radius: 0 0 34px 34px;
  background: transparent;
  color: var(--green-deep);
  box-shadow: none;
}

.lehn-card::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: -2.5rem;
  width: 3.5rem;
  border-radius: 0 60% 60% 0;
  background: var(--green-deep);
}

.lehn-card::after {
  content: '';
  position: absolute;
  right: -12rem;
  bottom: -14rem;
  width: 28rem;
  height: 22rem;
  border: 2.5rem solid rgb(132 229 9 / .12);
  border-radius: 50%;
  pointer-events: none;
}

.lehn-card>* {
  position: relative;
}

.lehn-card__mark {
  display: grid;
  width: 4.5rem;
  height: 4.5rem;
  place-items: center;
  border: 2px solid var(--green-deep);
  border-radius: 50%;
  background: var(--lime);
  color: var(--green-deep);
}

.lehn-card__mark svg {
  width: 2rem;
  height: 2rem;
}

.lehn-eyebrow {
  margin: 0 0 .2rem;
  color: var(--green-pag);
  font-family: var(--font-head);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.lehn-card h2 {
  margin: 0 0 .45rem;
  color: var(--green-deep);
  font-size: clamp(1.6rem, 3vw, 2.55rem);
  font-weight: 800;
  line-height: 1.05;
}

.lehn-card p {
  margin: 0;
  color: #53604b;
  line-height: 1.5;
}

.lehn-cta {
  display: grid;
  justify-items: start;
  gap: .55rem;
}

.lehn-cta img {
  width: min(185px, 100%);
  height: auto;
  max-height: 70px;
  object-fit: contain;
  object-position: left center;
}

.lehn-cta .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .68rem 1.3rem;
  background: var(--green-deep);
  color: #fff;
  box-shadow: none;
}

.lehn-cta .btn-primary:hover {
  background: var(--green-dark);
}

.lehn-site {
  color: var(--green-pag);
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
}

.lehn-site:hover {
  color: var(--green-deep);
  text-decoration: underline;
}

@media (max-width: 900px) {
  .passos-editorial {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .passos-visual {
    min-height: 500px;
  }

  .passos-copy {
    max-width: 38rem;
  }

  .passos-phone {
    left: clamp(3rem, 18vw, 11rem);
    bottom: -3rem;
  }

  .steps-path {
    max-width: 620px;
  }

  .lehn-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .lehn-cta {
    grid-column: 2;
    grid-template-columns: auto auto;
    align-items: center;
  }

  .lehn-cta img {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .passos-section {
    padding-top: 3.5rem;
  }

  .passos-visual {
    min-height: 440px;
  }

  .passos-section h2 {
    max-width: 13ch;
    font-size: clamp(2.25rem, 11vw, 3.4rem);
  }

  .passos-phone {
    left: 3.5rem;
    width: 185px;
  }

  .steps-path {
    padding-left: 3.9rem;
    gap: 2.5rem;
  }

  .steps-path__line {
    left: 1.25rem;
  }

  .step-item {
    grid-template-columns: 2.7rem minmax(0, 1fr);
    gap: .75rem;
  }

  .step-item__number {
    left: -3.9rem;
    width: 2.65rem;
    height: 2.65rem;
    font-size: 1.05rem;
  }

  .step-item__icon {
    width: 2.7rem;
    height: 2.7rem;
  }

  .step-item__icon svg {
    width: 1.35rem;
    height: 1.35rem;
  }

  .step-item>div {
    grid-column: 2;
  }

  .lehn-card {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-inline: 1.35rem;
  }

  .lehn-card__mark {
    width: 3.75rem;
    height: 3.75rem;
  }

  .lehn-cta {
    grid-column: auto;
    display: grid;
    grid-template-columns: 1fr;
  }

  .lehn-cta img {
    grid-column: auto;
    width: 170px;
  }
}

/* ---------- parceiros em tema claro ---------- */
.parceiros-v2 {
  background: var(--cream-soft);
  color: var(--green-deep);
}

.parceiros-v2 h2 {
  color: var(--green-deep);
}

.parceiros-v2 .sub {
  color: #5a6650;
}

.marquee img {
  height: 62px;
  max-width: 160px;
}

/* ---------- faixa rotativa de prova (marquee reto, estilo ticker) ---------- */
.proof-banner {
  padding: clamp(1.3rem, 2.6vw, 2rem) 0;
}

.proof-banner .marquee-group {
  gap: clamp(1.7rem, 3.2vw, 2.8rem);
  padding-right: clamp(1.7rem, 3.2vw, 2.8rem);
  align-items: center;
}

.proof-item {
  color: var(--cream);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.15rem, 2.1vw, 1.7rem);
  letter-spacing: -.01em;
  white-space: nowrap;
}

.proof-item em {
  font-style: normal;
  color: var(--lime-bright);
}

.proof-star {
  flex: none;
  width: clamp(14px, 1.6vw, 20px);
  height: clamp(14px, 1.6vw, 20px);
  color: var(--lime-bright);
  fill: currentColor;
}

/* ---------- header de conversão (cadastrar.html) ---------- */
.site-header--auth .header-inner {
  justify-content: space-between;
}

.auth-header-switch {
  display: flex;
  align-items: center;
  gap: .85rem;
}

.auth-switch-text {
  font-size: .95rem;
  color: #44503a;
  font-weight: 600;
}

.btn-auth-switch {
  display: inline-flex;
  align-items: center;
  padding: .5rem 1.25rem;
  border-radius: 999px;
  background: rgb(47 75 18 / .07);
  color: var(--green-deep);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .92rem;
  text-decoration: none;
  border: 1.5px solid rgb(47 75 18 / .18);
  transition: all .2s ease;
}

.btn-auth-switch:hover {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--green-deep);
  transform: translateY(-1px);
}

/* ---------- auth (cadastrar/entrar) no padrão v4 refinado ---------- */
.auth-hero {
  background:
    radial-gradient(900px 460px at 90% -8%, #ffffff 0%, transparent 55%),
    var(--cream);
  padding: clamp(2rem, 5vw, 3.8rem) 0 clamp(3.5rem, 7vw, 5.5rem);
}

.auth-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}

.auth-main {
  max-width: 620px;
}

.auth-main h1 {
  font-family: var(--font-head);
  font-weight: 760;
  font-size: clamp(2.1rem, 3.8vw, 3.1rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #24400c;
  margin: .8rem 0 .4rem;
}

.auth-sub {
  color: #44503a;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  margin: 0 0 1.5rem;
}

.auth-main .chip {
  background: none;
  padding: 0;
  border: 0;
  color: var(--green-dark);
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .88rem;
}

.auth-main .plan-summary:not([hidden]) {
  background: rgb(132 229 9 / .16);
  border: 1px solid rgb(132 229 9 / .45);
  border-radius: 14px;
  padding: .8rem 1.1rem;
  margin: 0 0 1.2rem;
}

.auth-main .plan-summary-line {
  margin: 0;
  font-weight: 700;
  color: var(--green-deep);
}

.auth-main .form-card {
  background: #fff;
  border: 1px solid rgb(47 75 18 / .12);
  border-radius: 24px;
  padding: clamp(1.6rem, 3.2vw, 2.3rem);
  box-shadow: 0 4px 28px rgb(47 75 18 / .07);
}

.auth-main .form-field {
  margin-bottom: 1.05rem;
}

.auth-main .form-field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .92rem;
  color: var(--green-deep);
  margin-bottom: .4rem;
}

.auth-main .form-field input {
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid rgb(47 75 18 / .22);
  border-radius: 14px;
  background: #fafdf6;
  color: var(--green-deep);
  font: inherit;
  font-size: .95rem;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.auth-main .form-field input:focus {
  outline: none;
  border-color: var(--green-pag);
  box-shadow: 0 0 0 4px rgb(102 173 27 / .18);
  background: #fff;
}

.auth-main .form-field input::placeholder {
  color: #9baa8f;
}

.auth-main .form-field input[aria-invalid="true"],
.auth-main .form-field.is-invalid input {
  border-color: #d32f2f;
  background: #fff8f8;
}

.auth-main .form-field input[aria-invalid="true"]:focus,
.auth-main .form-field.is-invalid input:focus {
  border-color: #d32f2f;
  box-shadow: 0 0 0 4px rgba(211, 47, 47, .15);
}

.field-error-msg {
  display: block;
  font-size: .8rem;
  color: #c62828;
  font-weight: 600;
  margin-top: .35rem;
  line-height: 1.3;
}

.auth-main .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.1rem;
}

.auth-main .form-grid .wide {
  grid-column: 1 / -1;
}

.pass-wrap {
  position: relative;
}

.pass-wrap input {
  padding-right: 3rem;
}

.pw-eye {
  position: absolute;
  right: .7rem;
  top: 50%;
  translate: 0 -50%;
  width: 2.1rem;
  height: 2.1rem;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #7b8670;
  cursor: pointer;
  transition: color .15s ease, background .15s ease;
}

.pw-eye:hover {
  color: var(--green-deep);
  background: rgb(47 75 18 / .07);
}

.pw-eye svg {
  width: 1.25rem;
  height: 1.25rem;
}

.pw-eye.on {
  color: var(--green-dark);
}

.pw-meter {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .35rem;
  margin-top: .55rem;
}

.pw-meter i {
  height: 5px;
  border-radius: 99px;
  background: rgb(47 75 18 / .12);
  transition: background .25s ease;
}

.pw-meter[data-level="1"] i:nth-child(1) {
  background: #e05b5b;
}

.pw-meter[data-level="2"] i:nth-child(-n+2) {
  background: #e8a13c;
}

.pw-meter[data-level="3"] i:nth-child(-n+3) {
  background: var(--green-pag);
}

.pw-meter-text {
  display: block;
  font-size: .78rem;
  color: #7b8670;
  margin-top: .35rem;
  min-height: 1em;
}

.auth-main .form-consent {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  background: #f4f9ec;
  border: 1px solid rgb(47 75 18 / .09);
  border-radius: 14px;
  padding: .85rem 1rem;
  margin: .6rem 0 1.3rem;
  font-size: .85rem;
  color: #53604b;
  line-height: 1.45;
}

.auth-main .form-consent input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: .15rem;
  accent-color: var(--green-dark);
  cursor: pointer;
  flex-shrink: 0;
}

.auth-main .form-consent a {
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.auth-main .btn-submit {
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 1.05rem 1.6rem;
  background: var(--lime);
  color: var(--green-deep);
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 26px rgb(138 245 0 / .35);
  transition: transform .2s var(--ease-out), background .2s ease, box-shadow .2s ease;
}

.auth-main .btn-submit:hover {
  background: var(--lime-bright);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgb(138 245 0 / .42);
}

.auth-main .form-note {
  text-align: center;
  font-size: .8rem;
  color: #838e78;
  margin: .9rem 0 0;
}

/* ---------- painel lateral de benefícios (lado direito) ---------- */
.auth-panel {
  position: sticky;
  top: 96px;
  background: linear-gradient(165deg, var(--green-deep) 0%, #1c300b 100%);
  border-radius: 28px;
  border: 1px solid rgb(255 255 255 / .08);
  overflow: hidden;
  color: var(--cream);
  box-shadow: 0 16px 40px rgb(20 38 6 / .22);
}

.auth-panel img {
  display: block;
  width: 100%;
  height: clamp(260px, 25vw, 305px);
  object-fit: cover;
  object-position: 50% 12%; /* Enquadramento perfeito: rosto e sorriso da mãe + filho */
}

.auth-panel__body {
  padding: clamp(1.4rem, 2.6vw, 1.9rem);
  display: grid;
  gap: .9rem;
}

.auth-panel__body h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.45rem;
  color: #fff;
  margin: 0 0 .2rem;
  line-height: 1.25;
}

.auth-panel__body ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .85rem;
}

.auth-panel__body li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  font-size: .92rem;
  line-height: 1.45;
  color: rgb(244 255 230 / .92);
}

.auth-panel__body li svg {
  flex: none;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: .1rem;
  color: var(--lime-bright);
}

.auth-panel__body li strong {
  color: #fff;
  font-weight: 700;
}

.auth-panel__secure {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin: .3rem 0 0;
  padding-top: .95rem;
  border-top: 1px solid rgb(244 255 230 / .16);
  color: rgb(244 255 230 / .80);
  font-size: .84rem;
  line-height: 1.35;
}

.auth-panel__secure svg {
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
  color: var(--lime-bright);
}

@media (max-width: 980px) {
  .auth-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .auth-main {
    max-width: 100%;
  }

  .auth-panel {
    position: static;
  }

  .auth-panel img {
    height: 250px;
    object-position: 50% 12%;
  }
}

@media (max-width: 560px) {
  .auth-main .form-grid {
    grid-template-columns: 1fr;
  }

  .auth-panel img {
    height: 210px;
    object-position: 50% 12%;
  }

  .auth-header-switch .auth-switch-text {
    display: none;
  }
}
/* Conta usada exclusivamente durante os testes locais de integração. */
.test-account { min-height: calc(100vh - 110px); padding: clamp(48px, 7vw, 100px) 0; }
.test-account .container { max-width: 760px; }
.test-account__content { margin-top: 32px; padding: 28px; border: 1px solid #d4e2c4; border-radius: 18px; background: #fff; }
.test-account__content p { margin: 0 0 12px; }
.test-account__button { display: inline-flex; width: auto; margin: 12px 10px 0 0; text-decoration: none; }
.test-account__notice { max-width: 650px; margin-top: 20px; font-size: 14px; line-height: 1.6; }
.form-status { margin: 12px 0 0; font-weight: 600; color: #2f4b12; }
.form-status[data-error="true"] { color: #9e2525; }
/* Área do assinante e telas transacionais do frontend HTML */
.auth-grid--single { grid-template-columns: minmax(0, 720px); justify-content: center; }
.account-page { min-height: 75vh; padding: clamp(3rem, 7vw, 6rem) 0; background: var(--cream, #f5f8eb); }
.account-page h1 { margin: .65rem 0 .4rem; }
.account-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; margin-top: 2rem; }
.account-card { background: #fff; border: 1px solid rgba(35, 67, 13, .12); border-radius: 20px; padding: clamp(1.25rem, 3vw, 2rem); box-shadow: 0 12px 35px rgba(35, 67, 13, .07); }
.account-card--wide { grid-column: 1 / -1; }
.account-card h2 { margin: 0 0 1.25rem; font-size: 1.35rem; color: var(--green-deep, #244c12); }
.account-list { margin: 0 0 1.25rem; }
.account-list div { display: flex; justify-content: space-between; gap: 1rem; padding: .7rem 0; border-bottom: 1px solid #edf0e7; }
.account-list dt { color: #67705f; }
.account-list dd { margin: 0; font-weight: 700; text-align: right; }
.account-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.account-actions .btn-submit, .account-actions .btn-auth-switch { width: auto; margin: 0; }
.account-link { display: inline-block; margin-top: 1rem; color: var(--green-deep, #244c12); font-weight: 700; }
.account-table-wrap { overflow-x: auto; }
.account-table { width: 100%; border-collapse: collapse; }
.account-table th, .account-table td { padding: .75rem; border-bottom: 1px solid #edf0e7; text-align: left; white-space: nowrap; }
.dependent-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .7rem 0; border-bottom: 1px solid #edf0e7; }
@media (max-width: 760px) { .account-grid { grid-template-columns: 1fr; } .account-card--wide { grid-column: auto; } }
[hidden] {
  display: none !important;
}

/* ---------- Otimização de performance de renderização ---------- */
.parceiros-v2,
.passos-section,
.lehn-bridge-wrap,
.faq-section,
.cta-final,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 500px;
}
