@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='black' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
   
}
::-webkit-scrollbar-thumb {
    background-color:#00A497;
}

  :root {
    --teal:        #00A497;
    --teal-dark:   #007A70;
    --teal-light:  #00C4B5;
    --yellow:      #F4AF23;
    --yellow-sat:  #FFB81C;
    --purple:      #7E5475;
    --purple-light:#A06B92;
    --offwhite:    #F1E7E4;
    --white:       #FFFFFF;
    --dark:        #1A2626;
    --mid:         #3D5A57;
  }
  *, *::before, *::after { box-sizing:border-box; margin:0; padding:0; }
  html { scroll-behavior:smooth; }
  body { font-family:'Nunito',sans-serif; background:var(--offwhite); color:var(--dark); overflow-x:hidden; }

  /* ── NAV — verde, mas agora só o nav é verde sólido ── */
  nav {
    position:fixed; top:0; left:0; right:0; z-index:100;
    display:flex; align-items:center; justify-content:space-between;
    padding:10px 48px;
    background:var(--teal);
  }
  .nav-logo { font-family:'Fraunces',serif; font-weight:900; font-style:italic; font-size:1.9rem; letter-spacing:-1px; color:white; }
  .nav-brand { display:flex; flex-direction:column; align-items:flex-start; gap:3px; }
  .nav-logo-img { height:40px; width:auto; display:block; }
  .nav-logo .dot { color:var(--yellow); }
  .nav-slogan { font-size:.68rem; font-weight:700; font-style:italic; color:rgba(255,255,255,.85); letter-spacing:.01em; line-height:1; }
  .nav-pill {
    background:var(--yellow); color:var(--dark);
    font-family:'Nunito',sans-serif; font-size:.82rem; font-weight:900;
    letter-spacing:.04em; text-transform:uppercase;
    padding:10px 22px; border-radius:999px; cursor:pointer; border:none;
    text-decoration:none; display:inline-block;
    transition:background .15s, transform .15s;
    box-shadow:0 3px 0 #c98b00;
  }
  .nav-pill:hover { background:var(--yellow-sat); transform:translateY(-2px); }

  /* ── HERO — off-white com acentos coloridos, NÃO tela verde ── */
  .hero {
    min-height:100vh;
    display:grid; grid-template-columns:1fr 1fr;
    align-items:center; padding:100px 48px 80px; gap:60px;
    position:relative; overflow:hidden;
    background:var(--offwhite);
  }
  /* blob roxo grande no canto */
  .hero::before {
    content:''; position:absolute; top:-140px; right:-140px;
    width:520px; height:520px;
    background:var(--purple); border-radius:50%; opacity:.08; pointer-events:none;
  }
  /* blob amarelo suave embaixo */
  .hero::after {
    content:''; position:absolute; bottom:-80px; left:30%;
    width:340px; height:340px;
    background:var(--yellow); border-radius:50%; opacity:.1; pointer-events:none;
  }
  .hero-left { position:relative; z-index:2; }


  .hero-badge {
    display:inline-flex; align-items:center; gap:8px;
    background:var(--teal); color:white;
    font-size:.76rem; font-weight:900; padding:6px 16px 6px 10px;
    border-radius:999px; margin-bottom:28px;
    letter-spacing:.05em; text-transform:uppercase;
    animation:fadeSlideDown .6s ease both;
  }
  .badge-dot { width:8px; height:8px; background:var(--yellow); border-radius:50%; animation:pulse 1.8s ease-in-out infinite; }
  @keyframes pulse { 0%,100%{transform:scale(1);} 50%{transform:scale(1.5);} }

  /* headline: cor escura com italico teal e linha 3 roxo */
  .hero-headline {
    font-family:'Fraunces',serif; font-weight:900;
    font-size:clamp(3rem,4.8vw,5rem); line-height:1.0; letter-spacing:-2px;
    color:var(--dark);
    animation:fadeSlideDown .6s .1s ease both;
  }
  .hero-headline em { font-style:italic; font-weight:300; color:var(--teal); }
  .hero-headline .hl-purple { display:block; color:var(--yellow); }

  .hero-sub {
    font-size:1.1rem; line-height:1.7; color:var(--mid);
    max-width:480px; margin:22px 0 36px; font-weight:700;
    animation:fadeSlideDown .6s .2s ease both;
  }

  .waitlist-form { animation:fadeSlideDown .6s .3s ease both; }
  .form-row {
    display:flex; gap:8px; background:white;
    border:3px solid var(--dark); border-radius:18px;
    padding:6px 6px 6px 20px;
    box-shadow:5px 5px 0 var(--yellow); max-width:500px;
    transition:box-shadow .2s;
  }
  .form-row:focus-within { box-shadow:5px 5px 0 var(--yellow); }
  .form-row input { flex:1; border:none; outline:none; font-family:'Nunito',sans-serif; font-size:1rem; font-weight:700; color:var(--dark); background:transparent; }
  .form-row input::placeholder { color:#AACCC9; }
  .form-btn {
    background:var(--teal); color:white;
    font-family:'Nunito',sans-serif; font-size:.86rem; font-weight:900;
    padding:12px 18px; border:none; border-radius:12px; cursor:pointer;
    white-space:nowrap; box-shadow:0 3px 0 var(--teal-dark);
    transition:background .15s, transform .15s;
  }
  .form-btn:hover { background:var(--teal-dark); transform:translateY(-2px); }
  .form-note { font-size:.78rem; color:var(--mid); margin-top:10px; font-weight:700; }
  .launch-note {
    display:flex; align-items:center; justify-content:center; gap:8px;
    font-family:'Fraunces',serif;
    font-size:.95rem; font-weight:700; font-style:italic;
    color:var(--teal);
    margin-top:12px; text-align:center;
  }
  .launch-dot {
    width:7px; height:7px; border-radius:50%;
    background:var(--teal); flex-shrink:0;
    animation:pulse 1.8s ease-in-out infinite;
  }

  .social-proof { display:flex; align-items:center; gap:16px; margin-top:34px; animation:fadeSlideDown .6s .4s ease both; }
  .avatars { display:flex; }
  .avatar { width:36px; height:36px; border-radius:50%; border:3px solid var(--offwhite); margin-left:-10px; display:flex; align-items:center; justify-content:center; font-size:1.1rem; background:white; }
  .avatar:first-child { margin-left:0; }
  .sp-text { font-size:.88rem; color:var(--mid); line-height:1.4; font-weight:700; }
  .sp-text strong { color:var(--teal); font-weight:900; }

  /* ── PHONE ── */
  .hero-right { position:relative; z-index:2; display:flex; justify-content:center; animation:fadeSlideUp .8s .2s ease both; }
  .phone-wrap { position:relative; width:280px; }
  .phone-outer { background:var(--dark); border-radius:44px; padding:12px; box-shadow:20px 24px 60px rgba(0,0,0,0.2), -6px -6px 0 var(--yellow); }
  .phone-inner { background:#0D1F1D; border-radius:36px; overflow:hidden; height:520px; display:flex; flex-direction:column; }
  .phone-status { display:flex; justify-content:space-between; padding:14px 20px 6px; font-size:.62rem; color:rgba(255,255,255,.35); font-weight:700; }
  .phone-app-header { padding:6px 20px 14px; display:flex; align-items:center; justify-content:space-between; }
  .phone-logo { font-family:'Fraunces',serif; font-size:1.5rem; font-weight:900; font-style:italic; color:var(--teal); letter-spacing:-1px; }
  .phone-notif { width:28px; height:28px; background:rgba(244,175,35,.15); border-radius:8px; display:flex; align-items:center; justify-content:center; font-size:.9rem; }
  /* card roxo no phone — diferente do exterior verde */
  .phone-card { margin:0 16px 12px; background:linear-gradient(135deg,var(--purple),var(--purple-light)); border-radius:20px; padding:16px; position:relative; overflow:hidden; }
  .phone-card::after { content:'🐾'; position:absolute; right:10px; bottom:-4px; font-size:3rem; opacity:.2; }
  .card-label { font-size:.58rem; color:rgba(255,255,255,.7); text-transform:uppercase; letter-spacing:.12em; margin-bottom:4px; font-weight:800; }
  .card-pet { font-size:1.3rem; font-weight:900; color:white; }
  .card-xp { font-size:.68rem; color:rgba(255,255,255,.8); margin-top:6px; font-weight:700; }
  .xp-bar { background:rgba(255,255,255,.2); border-radius:99px; height:4px; margin-top:6px; overflow:hidden; }
  .xp-fill { background:var(--yellow); height:100%; width:68%; border-radius:99px; }
  .phone-section-label { padding:0 16px 8px; font-size:.6rem; text-transform:uppercase; letter-spacing:.12em; color:rgba(255,255,255,.3); font-weight:800; }
  .phone-challenge { margin:0 16px 12px; background:rgba(0,164,151,.15); border-radius:14px; padding:12px; display:flex; align-items:center; gap:10px; border:1px solid rgba(0,164,151,.25); }
  .challenge-icon { width:36px; height:36px; background:var(--yellow); border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:1.1rem; flex-shrink:0; }
  .challenge-text { font-size:.68rem; color:rgba(255,255,255,.85); line-height:1.4; font-weight:600; }
  .challenge-text strong { color:white; font-weight:900; }
  .challenge-check { margin-left:auto; width:22px; height:22px; background:var(--teal); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:.6rem; flex-shrink:0; color:white; font-weight:900; }
  .phone-feed-item { margin:0 16px 10px; background:rgba(255,255,255,.05); border-radius:14px; padding:12px; display:flex; gap:10px; align-items:flex-start; }
  .feed-avatar { width:30px; height:30px; border-radius:50%; background:var(--teal); display:flex; align-items:center; justify-content:center; font-size:.9rem; flex-shrink:0; }
  .feed-name { font-size:.68rem; font-weight:800; color:white; margin-bottom:2px; }
  .feed-text { font-size:.62rem; color:rgba(255,255,255,.5); line-height:1.4; }
  .feed-actions { display:flex; gap:10px; margin-top:6px; }
  .feed-action { font-size:.58rem; color:rgba(255,255,255,.3); font-weight:700; }
  .phone-bottom-nav { margin-top:auto; background:rgba(0,164,151,.1); display:flex; justify-content:space-around; padding:10px 48px; border-top:1px solid rgba(0,164,151,.15); }
  .nav-icon { display:flex; flex-direction:column; align-items:center; gap:3px; font-size:1rem; opacity:.35; }
  .nav-icon.active { opacity:1; }
  .nav-dot { width:4px; height:4px; background:var(--yellow); border-radius:50%; }

  /* floaters */
  .float-tag { position:absolute; right:-36px; top:80px; background:white; border-radius:16px; padding:12px 14px; box-shadow:0 8px 30px rgba(0,0,0,.12); display:flex; align-items:center; gap:8px; animation:float 3s ease-in-out infinite; border:2px solid var(--yellow); }
  .float-tag-text { font-size:.7rem; line-height:1.3; }
  .float-tag-text strong { font-size:.75rem; color:var(--dark); display:block; font-weight:900; }
  .float-tag-text span { color:var(--teal); font-weight:800; }
  .float-racao { position:absolute; left:-52px; bottom:100px; background:var(--purple); border-radius:16px; padding:12px 16px; color:white; box-shadow:0 8px 30px rgba(126,84,117,.3); animation:float 3.5s 1s ease-in-out infinite; }
  .float-racao-num { font-family:'Fraunces',serif; font-size:1.6rem; font-weight:900; line-height:1; }
  .float-racao-num span { color:var(--yellow); }
  .float-racao-label { font-size:.65rem; opacity:.9; margin-top:2px; font-weight:800; }

  @keyframes float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-8px);} }
  @keyframes fadeSlideDown { from{opacity:0;transform:translateY(-20px);} to{opacity:1;transform:translateY(0);} }
  @keyframes fadeSlideUp { from{opacity:0;transform:translateY(30px);} to{opacity:1;transform:translateY(0);} }

  /* ── RAÇÃO STRIP — amarelo, não verde ── */
  .racao-strip {
    background:var(--yellow); color:var(--dark);
    padding:22px 48px; display:flex; align-items:center; justify-content:center; gap:40px;
    position:relative; overflow:hidden;
  }
  .racao-strip::before { content:''; position:absolute; inset:0; background:repeating-linear-gradient(90deg,transparent,transparent 40px,rgba(0,0,0,.03) 40px,rgba(0,0,0,.03) 41px); }
  .racao-main { display:flex; align-items:center; gap:14px; position:relative; }
  .racao-num { font-family:'Fraunces',serif; font-size:3rem; font-weight:900; line-height:1; letter-spacing:-2px; }
  .racao-num span { color:var(--teal); }
  .racao-desc { font-size:.88rem; line-height:1.55; max-width:210px; font-weight:800; }
  .racao-bar-wrap { flex:1; max-width:280px; }
  .racao-bar-label { font-size:.68rem; margin-bottom:6px; text-align:right; font-weight:800; opacity:.6; }
  .racao-bar-bg { background:rgba(0,0,0,.15); border-radius:99px; height:8px; overflow:hidden; }
  .racao-bar-fill { background:var(--teal); height:100%; width:34%; border-radius:99px; position:relative; }
  .racao-bar-fill::after { content:''; position:absolute; right:0; top:50%; transform:translate(50%,-50%); width:14px; height:14px; background:white; border-radius:50%; border:3px solid var(--teal); }
  .racao-next { font-size:.68rem; margin-top:6px; font-weight:800; opacity:.6; }

  /* ── FEATURES — fundo off-white, cards variados ── */
  .features { padding:100px 48px; max-width:1200px; margin:0 auto; }
  .section-eyebrow { font-size:.72rem; font-weight:900; text-transform:uppercase; letter-spacing:.18em; color:var(--teal); margin-bottom:10px; }
  .section-title { font-family:'Fraunces',serif; font-size:clamp(2rem,3.5vw,3.2rem); font-weight:900; line-height:1.05; letter-spacing:-1.5px; color:var(--dark); max-width:520px; margin-bottom:56px; }
  .section-title em { font-style:italic; color:var(--teal); font-weight:300; }
  .features-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
  .feat-card { background:white; border-radius:24px; padding:32px; border:2px solid transparent; transition:transform .2s, border-color .2s, box-shadow .2s; }
  .feat-card:hover { transform:translateY(-5px); box-shadow:0 16px 40px rgba(0,0,0,.08); }
  /* apenas 2 cards verdes de 6 — os outros são roxo e amarelo */
  .feat-card.ac-teal   { background:var(--teal);   border-color:var(--teal);   }
  .feat-card.ac-purple { background:var(--purple); border-color:var(--purple); }
  .feat-card.ac-yellow { background:var(--yellow); border-color:var(--yellow); }
  .feat-card.ac-teal .feat-title,
  .feat-card.ac-purple .feat-title { color:white; }
  .feat-card.ac-teal .feat-text,
  .feat-card.ac-purple .feat-text  { color:rgba(255,255,255,.82); }
  .feat-card.ac-yellow .feat-title { color:var(--dark); }
  .feat-card.ac-yellow .feat-text  { color:rgba(26,38,38,.72); }
  .feat-card:hover.feat-card:not([class*="ac-"]) { border-color:var(--purple); }
  .feat-icon { width:50px; height:50px; border-radius:14px; display:flex; align-items:center; justify-content:center; font-size:1.5rem; margin-bottom:18px; background:rgba(255,255,255,.2); }
  .feat-card:not([class*="ac-"]) .feat-icon { background:var(--offwhite); }
  .feat-title { font-size:1.1rem; font-weight:900; color:var(--dark); margin-bottom:8px; }
  .feat-text  { font-size:.88rem; line-height:1.65; color:var(--mid); font-weight:600; }

  /* ── WHO — fundo roxo, não verde ── */
  .who { background:var(--purple); padding:100px 48px; position:relative; overflow:hidden; }
  .who::before { content:''; position:absolute; right:-100px; top:-100px; width:400px; height:400px; background:rgba(255,255,255,.05); border-radius:50%; pointer-events:none; }
  .who::after  { content:''; position:absolute; left:-80px; bottom:-80px; width:300px; height:300px; background:rgba(0,164,151,.1); border-radius:50%; pointer-events:none; }
  .who-inner { max-width:1200px; margin:0 auto; position:relative; z-index:1; }
  .who .section-eyebrow { color:var(--yellow); }
  .who .section-title { color:white; }
  .who .section-title em { color:var(--teal-light); }
  .who-cards { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
  .who-card { border-radius:24px; padding:32px; transition:transform .2s; }
  .who-card:hover { transform:translateY(-4px); }
  /* 1 teal, 1 amarelo, 1 offwhite/dark — verde não domina aqui */
  .who-card.c-teal   { background:var(--teal); }
  .who-card.c-yellow { background:var(--yellow); }
  .who-card.c-dark   { background:rgba(255,255,255,.1); border:2px solid rgba(255,255,255,.2); }
  .who-card.c-offwhite { background:var(--offwhite); }
  .who-card.c-offwhite .who-title { color:var(--dark); }
  .who-card.c-offwhite .who-text  { color:var(--mid); }
  .who-card.c-offwhite .who-tag   { border-color:rgba(0,0,0,.2); color:var(--dark); }
  .who-card.c-yellow .who-title,
  .who-card.c-yellow .who-text { color:var(--dark); }
  .who-card.c-yellow .who-tag  { border-color:rgba(0,0,0,.2); color:var(--dark); }
  .who-emoji { font-size:2.4rem; margin-bottom:14px; }
  .who-title { font-size:1.25rem; font-weight:900; color:white; margin-bottom:10px; }
  .who-text  { font-size:.87rem; line-height:1.65; color:rgba(255,255,255,.78); font-weight:600; }
  .who-tag   { display:inline-block; margin-top:16px; font-size:.7rem; font-weight:900; letter-spacing:.07em; text-transform:uppercase; color:white; border:1.5px solid rgba(255,255,255,.4); padding:4px 12px; border-radius:999px; }

  /* ── BOTTOM CTA — teal aqui sim, mas com amarelo dominando o botão ── */
  .bottom-cta { padding:120px 48px; text-align:center; position:relative; overflow:hidden; background:var(--teal); }
  .bottom-cta::before { content:''; position:absolute; top:-180px; left:-180px; width:480px; height:480px; background:rgba(255,255,255,.06); border-radius:50%; pointer-events:none; }
  .bottom-cta::after  { content:''; position:absolute; bottom:-140px; right:-140px; width:400px; height:400px; background:rgba(126,84,117,.12); border-radius:50%; pointer-events:none; }
  .bottom-cta .section-eyebrow { color:var(--yellow); }
  .cta-headline { font-family:'Fraunces',serif; font-size:clamp(2.5rem,5vw,4.5rem); font-weight:900; letter-spacing:-2px; line-height:1.0; color:white; margin-bottom:18px; position:relative; z-index:1; }
  .cta-headline em { font-style:italic; font-weight:300; color:var(--yellow); }
  .cta-sub { font-size:1.05rem; color:rgba(255,255,255,.88); max-width:460px; margin:0 auto 44px; line-height:1.7; font-weight:700; position:relative; z-index:1; }
  .cta-form-wrap { max-width:460px; margin:0 auto; position:relative; z-index:1; }
  .cta-form-row { display:flex; flex-direction:column; gap:12px; }
  .cta-input { background:white; border:3px solid var(--yellow); border-radius:16px; padding:16px 22px; font-family:'Nunito',sans-serif; font-size:1rem; font-weight:700; color:var(--dark); outline:none; width:100%; box-shadow:4px 4px 0 var(--teal-dark); transition:box-shadow .2s; }
  .cta-input::placeholder { color:#AACCC9; }
  .cta-input:focus { box-shadow:4px 4px 0 var(--yellow); }
  .cta-button { background:var(--yellow); color:var(--dark); font-family:'Fraunces',serif; font-size:1.15rem; font-weight:900; padding:16px 32px; border:3px solid var(--dark); border-radius:16px; cursor:pointer; box-shadow:4px 4px 0 var(--dark); transition:transform .15s, box-shadow .15s; width:100%; }
  .cta-button:hover { transform:translate(-2px,-2px); box-shadow:6px 6px 0 var(--dark); }
  .cta-perks { display:flex; justify-content:center; gap:24px; margin-top:28px; flex-wrap:wrap; }
  .perk { font-size:.82rem; color:var(--dark); font-weight:800; background:var(--yellow); padding:6px 14px; border-radius:999px; }

  .success-state { display:none; flex-direction:column; align-items:center; gap:12px; padding:32px; background:white; border:3px solid var(--yellow); border-radius:20px; box-shadow:4px 4px 0 var(--teal-dark); }
  .success-state.visible { display:flex; }
  .success-emoji { font-size:3rem; animation:bounceIn .5s ease; }
  .success-title { font-family:'Fraunces',serif; font-size:1.6rem; font-weight:900; color:var(--teal); }
  .success-text { font-size:.9rem; color:var(--mid); text-align:center; line-height:1.6; font-weight:700; }
  @keyframes bounceIn { 0%{transform:scale(0);} 60%{transform:scale(1.2);} 100%{transform:scale(1);} }

  /* ── FOOTER — roxo, fecha com personalidade ── */
  footer { background:var(--purple); color:rgba(255,255,255,.5); padding:32px 48px; display:flex; align-items:center; justify-content:space-between; font-size:.82rem; font-weight:700; }
  .footer-logo { font-family:'Fraunces',serif; font-size:1.6rem; font-weight:900; font-style:italic; color:white; }
  .footer-logo-img { height:60px; width:auto; display:block; }
  .footer-brand { display:flex; flex-direction:column; align-items:center; gap:6px; }
  .footer-slogan { font-size:.82rem; font-weight:700; font-style:italic; color:rgba(255,255,255,.7); text-align:center; }
  .footer-logo .dot { color:var(--yellow); }
  .footer-slogan { font-size:.82rem; font-weight:700; font-style:italic; color:rgba(255,255,255,.7); text-align:center; }
  .footer-links { display:flex; gap:24px; }
  .footer-links a { color:rgba(255,255,255,.5); text-decoration:none; transition:color .15s; font-weight:700; }
  .footer-links a:hover { color:white; }


  /* ── PHOTO CAROUSEL ── */
  .photo-carousel {
    position:relative; width:100%; max-width:480px;
    animation:fadeSlideUp .8s .2s ease both;
  }
  .photo-slides { position:relative; overflow:hidden; border-radius:28px; aspect-ratio:4/5; box-shadow:16px 20px 60px rgba(0,0,0,0.18), -6px -6px 0 var(--yellow); }
  .photo-slide { position:absolute; inset:0; opacity:0; transition:opacity .7s ease; }
  .photo-slide.active { opacity:1; }
  .photo-slide img { width:100%; height:100%; object-fit:cover; display:block; }
  .photo-caption {
    position:absolute; bottom:0; left:0; right:0;
    background:linear-gradient(transparent, rgba(0,0,0,0.55));
    color:white; font-size:.88rem; font-weight:800;
    padding:40px 20px 18px; font-family:'Nunito',sans-serif;
  }
  .photo-dots {
    display:flex; justify-content:center; gap:8px; margin-top:16px;
  }
  .pdot {
    width:8px; height:8px; border-radius:50%;
    background:rgba(0,164,151,0.25); cursor:pointer;
    transition:background .2s, transform .2s;
  }
  .pdot.active { background:var(--teal); transform:scale(1.3); }

  .reveal { opacity:0; transform:translateY(28px); transition:opacity .6s ease, transform .6s ease; }
  .reveal.visible { opacity:1; transform:translateY(0); }
  
  .waitlist-form input.wpcf7-form-control.wpcf7-submit {
    font-size: .86rem;
    color: #ffffff;
    background: #00a497;
    }
    
    .waitlist-form input.wpcf7-form-control.wpcf7-submit:hover {
        background: #007a70;
    }
    
    .waitlist-form .form-row input {
        width: 100%;
    }
    
    .waitlist-form span.wpcf7-spinner {
        position: absolute;
        right: 30%;
        top: 10px;
    }
    
    .waitlist-form .form-submit-wrap {
        position: relative;
    }
    
    .waitlist-form .wpcf7-form-control-wrap {
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    
    .waitlist-form .wpcf7-response-output {
        max-width: 500px;
        margin: 20px 0 0 !important;
    }
    
    .cta-form-wrap .successState {
        display: none;
    }
    
    .cta-form-wrap .wpcf7-not-valid-tip {
        margin-top: 10px;
    }
    
    .cta-form-wrap .wpcf7-submit.cta-button {
        white-space: normal;
    }
    
    .cta-form-wrap .submit-form-wrap {
        position: relative;
    }
    
    .cta-form-wrap .wpcf7-spinner {
        position: absolute;
        top: 22px;
        left: 40%;
        transform: translateX(50%);
    }
    
    body.admin-bar nav {
        margin-top: 32px;
    }
    
    .nav-logo-img {
        width: 100px;
        height: auto;
    }

  @media (max-width:920px) {
    .hero { grid-template-columns:1fr; padding:100px 48px 80px; }
    .hero-right { display:none; }
    .features-grid { grid-template-columns:1fr 1fr; gap:14px; }
    .who-cards { grid-template-columns:1fr; gap:14px; }
    nav { padding:10px 48px; }
    .features, .bottom-cta, .who { padding:70px 24px; }
    .racao-strip { flex-direction:column; gap:20px; padding:28px 24px; text-align:center; }
    .racao-bar-wrap { width:100%; max-width:100%; }
    footer { flex-direction:column; gap:16px; text-align:center; padding:28px 24px; }
    .footer-links { justify-content:center; }
  }
  @media(max-width: 782px) {
    body.admin-bar nav {
        margin-top: 46px;
    }
  }
  @media (max-width:600px) {
    .features-grid { grid-template-columns:1fr; }
    .form-row { flex-direction:column; padding:12px; }
    .form-btn { width:100%; padding:14px; }
  }