/* ============================================================
   ORGANIZARÁ — Landing Page — style.css v2
   ============================================================ */

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

:root {
  --blue:       #6B9DFc;
  --blue-hover: #588bf0;
  --blue-dark:  #4A7CE0;
  --deep:       #0a2540;
  --bg:         #F4F7FB;
  --white:      #ffffff;
  --gray-50:    #f8fafc;
  --gray-100:   #f1f5f9;
  --gray-200:   #e2e8f0;
  --gray-400:   #94a3b8;
  --gray-500:   #64748b;
  --gray-600:   #475569;
  --gray-700:   #334155;
  --green:      #10b981;
  --green-light:#d1fae5;
  --red:        #DC2626;
  --red-light:  #FEE2E2;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--deep);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ──────────────────────────────────────────
   NAVBAR
────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow 0.3s;
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto;
  padding: 0.875rem 1.5rem;
}
.logo-link { display: flex; align-items: center; gap: 0.625rem; text-decoration: none; }
.logo-icon  { width: 32px; height: 32px; object-fit: contain; border-radius: 8px; }
.logo-text  { font-size: 1.125rem; font-weight: 800; color: var(--deep); letter-spacing: -0.03em; }

.hamburger { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--deep); border-radius: 2px; transition: all .3s; }

.nav-desktop { display: none; align-items: center; gap: 2rem; }
.nav-links   { display: flex; align-items: center; gap: 1.75rem; }
.nav-links a { color: var(--gray-600); font-size: .875rem; font-weight: 500; text-decoration: none; transition: color .2s; }
.nav-links a:hover { color: var(--deep); }
.nav-actions { display: flex; align-items: center; gap: .75rem; }

.btn-nav-primary {
  background: var(--blue); color: #fff;
  padding: .5rem 1.25rem; border-radius: 10px;
  font-size: .875rem; font-weight: 700;
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 4px 12px rgba(107,157,252,.3);
  transition: background .2s, transform .15s;
}
.btn-nav-primary:hover { background: var(--blue-hover); transform: translateY(-1px); }

.btn-nav-quiz {
  background: rgba(107,157,252,0.1); color: var(--blue-dark);
  padding: .5rem 1rem; border-radius: 10px;
  font-size: .8125rem; font-weight: 700;
  text-decoration: none; white-space: nowrap;
  border: 1.5px solid var(--blue);
  transition: all .2s;
}
.btn-nav-quiz:hover { background: var(--blue); color: #fff; transform: translateY(-1px); }

/* Mobile Menu */
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: #fff; z-index: 200;
  flex-direction: column; padding: 1.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.close-btn { background: var(--gray-100); border: none; border-radius: 50%; width: 36px; height: 36px; cursor: pointer; font-size: 1rem; color: var(--gray-600); display: flex; align-items: center; justify-content: center; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.mobile-nav-links a { color: var(--deep); font-size: 1.125rem; font-weight: 600; text-decoration: none; padding: .75rem 0; border-bottom: 1px solid var(--gray-100); }
.mobile-nav-actions { display: flex; flex-direction: column; gap: .75rem; margin-top: auto; }
.btn-mobile-primary { background: var(--blue); color: #fff; text-align: center; padding: 1rem; border-radius: 14px; font-weight: 700; text-decoration: none; font-size: 1rem; margin-top: 0.5rem; }
.btn-mobile-quiz { background: rgba(107,157,252,0.1); color: var(--blue-dark); text-align: center; padding: 1rem; border-radius: 14px; font-weight: 700; text-decoration: none; font-size: 1rem; border: 1.5px solid var(--blue); }

/* ──────────────────────────────────────────
   HERO (CENTRALIZADO — estilo Poupa.ai)
────────────────────────────────────────── */
.hero-centered {
  position: relative; overflow: hidden;
  background: #fafbff;
  padding: 4rem 1.5rem 20px;
  display: flex; flex-direction: column; align-items: center;
}

/* Floating particles */
.hero-particles { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.particle {
  position: absolute; line-height: 1;
  animation: floatParticle 8s ease-in-out infinite;
  opacity: 0.55;
}
@keyframes floatParticle {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.55; }
  50% { transform: translateY(-16px) rotate(8deg); opacity: 0.8; }
}

.hero-center-content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  width: 100%; max-width: 1100px;
  text-align: center;
  gap: 0;
}

.hero-center-text { max-width: 640px; display: flex; flex-direction: column; align-items: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #EBF1FA; color: var(--blue-dark);
  font-size: .6875rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .375rem 1rem; border-radius: 100px;
  margin-bottom: 1.5rem;
}
.badge-dot { width: 7px; height: 7px; background: var(--blue); border-radius: 50%; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.4);opacity:.7} }

.hero-center-title {
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 900;
  color: var(--deep);
  letter-spacing: -.05em;
  line-height: 1.1;
  margin-bottom: 1.125rem;
}
.title-highlight { color: var(--blue); }

.hero-center-subtitle {
  font-size: 1.0625rem; color: var(--gray-500);
  line-height: 1.7; margin-bottom: 1.25rem; max-width: 480px;
}

.hero-proof { display: flex; align-items: center; gap: .5rem; margin-bottom: 2rem; justify-content: center; flex-wrap: wrap; }
.proof-stars { color: #FBBF24; font-size: 1rem; letter-spacing: .1em; }
.proof-text  { font-size: .875rem; font-weight: 600; color: var(--gray-500); }

.hero-center-buttons { display: flex; flex-direction: column; align-items: center; gap: .875rem; margin-bottom: 1rem; }

.btn-hero-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: .625rem;
  background: var(--blue); color: #fff;
  padding: 1rem 2rem; border-radius: 16px;
  font-weight: 800; font-size: 1.0625rem;
  border: none; cursor: pointer;
  box-shadow: 0 8px 24px rgba(107,157,252,.35);
  transition: all .25s;
  text-decoration: none;
}
.btn-hero-primary:hover { background: var(--blue-hover); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(107,157,252,.45); }
.btn-icon { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }

.btn-hero-ghost { color: var(--gray-500); font-size: .9375rem; font-weight: 600; text-decoration: none; transition: color .2s; }
.btn-hero-ghost:hover { color: var(--deep); }

.hero-disclaimer { font-size: .8125rem; color: var(--gray-400); font-weight: 500; margin-bottom: 20px; }

/* ── Phone / simulator ── */
.hero-phone-wrap {
  width: 100%; display: flex; justify-content: center;
  position: relative; margin-top: 0;
}

.phone-frame {
  width: 300px;
  background: var(--deep);
  border-radius: 40px;
  padding: 12px;
  box-shadow:
    0 40px 100px rgba(10,37,64,.35),
    0 0 0 1px rgba(255,255,255,.06),
    0 0 0 3px rgba(107,157,252,.6),
    0 0 30px 8px rgba(107,157,252,.25);
  animation: phoneGlow 2.5s ease-in-out infinite, phoneEntrance 0.8s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes phoneGlow {
  0%, 100% {
    box-shadow:
      0 40px 100px rgba(10,37,64,.35),
      0 0 0 1px rgba(255,255,255,.06),
      0 0 0 3px rgba(107,157,252,.5),
      0 0 20px 4px rgba(107,157,252,.15);
  }
  50% {
    box-shadow:
      0 40px 100px rgba(10,37,64,.35),
      0 0 0 1px rgba(255,255,255,.06),
      0 0 0 4px rgba(107,157,252,.9),
      0 0 40px 14px rgba(107,157,252,.35);
  }
}
@keyframes phoneEntrance {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.phone-notch { width: 100px; height: 24px; background: var(--deep); border-radius: 0 0 18px 18px; margin: 0 auto 6px; }

.phone-screen {
  background: #f0f2f5; border-radius: 30px;
  overflow: hidden; display: flex; flex-direction: column;
  height: 520px;
}

/* WA elements */
.wpp-header { background: #075e54; padding: 10px 14px; display: flex; align-items: center; gap: 10px; }
.wpp-avatar { width: 34px; height: 34px; border-radius: 50%; border: 2px solid rgba(255,255,255,.3); background: #EBF1FA; object-fit: contain; }
.wpp-name   { color: #fff; font-size: 13px; font-weight: 700; }
.wpp-status { color: rgba(255,255,255,.7); font-size: 10px; }

.wpp-body {
  flex: 1; padding: 10px 10px 0; display: flex; flex-direction: column;
  gap: 7px; overflow-y: auto;
}
.wpp-body::-webkit-scrollbar { width: 3px; }
.wpp-body::-webkit-scrollbar-thumb { background: rgba(0,0,0,.12); border-radius: 10px; }

.wpp-bubble {
  max-width: 87%; padding: 8px 11px; border-radius: 12px;
  font-size: 11.5px; line-height: 1.45; position: relative;
}
.wpp-bubble.received { background: #fff; align-self: flex-start; border-bottom-left-radius: 4px; box-shadow: 0 1px 2px rgba(0,0,0,.07); color: var(--deep); }
.wpp-bubble.sent     { background: #dcf8c6; align-self: flex-end; border-bottom-right-radius: 4px; color: var(--deep); }
.wpp-bubble.ai-reply { background: #fff; align-self: flex-start; border-bottom-left-radius: 4px; box-shadow: 0 1px 2px rgba(0,0,0,.07); color: var(--deep); border-left: 3px solid var(--blue); }
.wpp-time { display: block; font-size: 9px; color: rgba(0,0,0,.3); text-align: right; margin-top: 2px; }

/* Typing indicator */
.wpp-typing { padding: 10px 10px 0; }
.typing-bubble {
  display: inline-flex; align-items: center; gap: 4px;
  background: #fff; padding: 10px 14px; border-radius: 12px;
  border-bottom-left-radius: 4px; box-shadow: 0 1px 2px rgba(0,0,0,.07);
}
.typing-bubble span {
  display: block; width: 7px; height: 7px; background: var(--gray-400);
  border-radius: 50%; animation: typingDot 1.4s infinite;
}
.typing-bubble span:nth-child(2) { animation-delay: .2s; }
.typing-bubble span:nth-child(3) { animation-delay: .4s; }
@keyframes typingDot { 0%,60%,100%{transform:translateY(0);opacity:.4} 30%{transform:translateY(-6px);opacity:1} }

/* CTA bar (after sim) */
.wpp-cta-bar { padding: 8px 10px 10px; }
.wpp-cta-btn {
  width: 100%; padding: 10px 12px;
  background: var(--blue); color: #fff;
  border: none; border-radius: 12px;
  font-size: 11.5px; font-weight: 700;
  cursor: pointer; line-height: 1.4; text-align: center;
  box-shadow: 0 4px 12px rgba(107,157,252,.4);
  transition: all .2s;
}
.wpp-cta-btn:hover { background: var(--blue-hover); }

/* Input bar */
.wpp-input-bar {
  background: #fff; display: flex; align-items: center;
  padding: 8px 10px; gap: 8px;
  border-top: 1px solid rgba(0,0,0,.06);
  margin-top: auto;
}
.wpp-input {
  flex: 1; border: none; outline: none;
  font-size: 12px; font-family: inherit;
  background: transparent; color: var(--deep);
}
.wpp-input::placeholder { color: var(--gray-400); }
.wpp-input:disabled { opacity: .5; cursor: not-allowed; }
.wpp-send-btn {
  background: var(--blue); color: #fff; border: none;
  border-radius: 50%; width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0; transition: background .2s;
}
.wpp-send-btn:hover { background: var(--blue-hover); }
/* Input hint label */
.wpp-input-hint {
  display: flex; align-items: center; gap: 6px;
  padding: 5px 10px 0;
  font-size: 10px; font-weight: 700; color: var(--blue);
  animation: hintPulse 1.8s ease-in-out infinite;
  letter-spacing: .02em;
}
.hint-cursor {
  display: inline-block;
  width: 2px; height: 11px;
  background: var(--blue); border-radius: 1px;
  animation: blinkCursor .9s step-end infinite;
}
@keyframes hintPulse {
  0%,100% { opacity: 1; }
  50%      { opacity: .5; }
}
@keyframes blinkCursor {
  0%,100% { opacity: 1; }
  50%      { opacity: 0; }
}

.wpp-send-btn:disabled { background: var(--gray-400); cursor: not-allowed; }

/* ──────────────────────────────────────────
   SECTION HELPERS
────────────────────────────────────────── */
.section-inner { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; text-align: center; }
.section-label {
  display: inline-block; font-size: .75rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue); background: #EBF1FA;
  padding: .375rem 1rem; border-radius: 100px; margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800;
  color: var(--deep); letter-spacing: -.04em; line-height: 1.15;
  margin-bottom: 1rem;
}
.section-desc { font-size: 1.0625rem; color: var(--gray-500); max-width: 520px; margin: 0 auto 3rem; line-height: 1.7; }

/* ──────────────────────────────────────────
   PAIN
────────────────────────────────────────── */
.pain-section { background: var(--red-light); padding: 5rem 1.5rem; }
.pain-label { font-size: .75rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; color: var(--red); text-align: center; margin-bottom: 1rem; }
.pain-title { font-size: clamp(1.75rem,4vw,2.25rem); font-weight: 800; color: var(--deep); letter-spacing: -.04em; line-height: 1.2; text-align: center; margin-bottom: 1rem; }
.pain-desc  { text-align: center; color: var(--gray-600); font-size: 1rem; max-width: 520px; margin: 0 auto 2.5rem; line-height: 1.7; }
.pain-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; max-width: 560px; margin: 0 auto 2rem; }
.pain-card  { background: #fff; border-radius: 16px; padding: 1.25rem; text-align: center; border: 1px solid rgba(220,38,38,.1); }
.pain-emoji { font-size: 1.75rem; display: block; margin-bottom: .5rem; }
.pain-card-text { font-size: .875rem; font-weight: 600; color: var(--gray-700); }
.pain-bridge { text-align: center; background: #fff; border-radius: 16px; padding: 1.25rem 2rem; max-width: 420px; margin: 0 auto; border: 2px solid var(--blue); box-shadow: 0 4px 16px rgba(107,157,252,.15); }
.pain-bridge p { font-size: 1.0625rem; font-weight: 700; color: var(--deep); }

/* ──────────────────────────────────────────
   HOW IT WORKS
────────────────────────────────────────── */
.how-section { background: #fff; padding: 5rem 1.5rem; }
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 900px; margin: 0 auto; }
.step-card {
  background: var(--gray-50); border-radius: 20px; padding: 2rem;
  text-align: left; border: 1px solid var(--gray-100);
  position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(107,157,252,.12); }
.step-number { font-size: 3rem; font-weight: 900; color: var(--blue); opacity: .12; position: absolute; top: 1rem; right: 1.5rem; line-height: 1; }
.step-icon  { font-size: 2rem; margin-bottom: .75rem; }
.step-title { font-size: 1.125rem; font-weight: 700; color: var(--deep); margin-bottom: .625rem; }
.step-desc  { font-size: .9375rem; color: var(--gray-500); line-height: 1.65; }

/* ──────────────────────────────────────────
   BENEFITS
────────────────────────────────────────── */
.benefits-section { width: 100%; }
.benefit-row {
  display: flex; flex-direction: column; align-items: center;
  gap: 3rem; padding: 5rem 1.5rem;
}
.benefit-blue  { background: var(--blue); color: #fff; }
.benefit-white { background: #fff; color: var(--deep); }
.benefit-media { width: 100%; max-width: 480px; }

.benefit-chat-demo { background: #f0f2f5; border-radius: 24px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.15); }
.chat-header  { background: #075e54; padding: 14px 18px; display: flex; align-items: center; gap: 12px; }
.chat-avatar  { width: 36px; height: 36px; border-radius: 50%; background: #EBF1FA; border: 2px solid rgba(255,255,255,.3); object-fit: contain; }
.chat-name    { color: #fff; font-size: 14px; font-weight: 700; }
.chat-online  { color: rgba(255,255,255,.7); font-size: 11px; }
.chat-messages{ padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.chat-msg { padding: 10px 14px; border-radius: 16px; font-size: 13px; line-height: 1.45; max-width: 82%; }
.chat-msg.left  { background: #fff; align-self: flex-start; border-bottom-left-radius: 4px; box-shadow: 0 1px 3px rgba(0,0,0,.07); color: var(--deep); }
.chat-msg.right { background: #dcf8c6; align-self: flex-end; border-bottom-right-radius: 4px; color: var(--deep); }
.typing { display: flex; align-items: center; gap: 5px; padding: 10px 14px; background:#fff; border-radius:16px; border-bottom-left-radius:4px; width:fit-content; box-shadow:0 1px 3px rgba(0,0,0,.07); }
.typing span { display: block; width: 7px; height: 7px; background: var(--gray-400); border-radius: 50%; animation: typingDot 1.4s infinite; }
.typing span:nth-child(2) { animation-delay: .2s; }
.typing span:nth-child(3) { animation-delay: .4s; }

.benefit-alert-demo { display: flex; flex-direction: column; gap: 1rem; }
.alert-card { display: flex; align-items: flex-start; gap: 1rem; background: rgba(255,255,255,.15); border-radius: 18px; padding: 1.25rem; border: 1px solid rgba(255,255,255,.25); }
.alert-card.green  { background: rgba(16,185,129,.12); border-color: rgba(16,185,129,.3); }
.alert-card.orange { background: rgba(249,115,22,.12); border-color: rgba(249,115,22,.3); }
.alert-icon  { font-size: 1.5rem; flex-shrink: 0; }
.alert-title { font-size: .9375rem; font-weight: 700; color: #fff; margin-bottom: .25rem; }
.alert-sub   { font-size: .875rem; color: rgba(255,255,255,.8); line-height: 1.5; }

.benefit-text { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1rem; max-width: 480px; }
.benefit-icon-row { font-size: 2.5rem; letter-spacing: .25rem; }
.benefit-title { font-size: clamp(1.5rem,3.5vw,2rem); font-weight: 800; line-height: 1.2; letter-spacing: -.03em; max-width: 400px; }
.benefit-desc  { font-size: 1rem; line-height: 1.7; opacity: .85; max-width: 420px; }
.benefit-cta-white { color: #fff; font-weight: 700; text-decoration: none; font-size: 1rem; }
.benefit-cta-white:hover { text-decoration: underline; }
.benefit-cta-dark  { color: var(--blue); font-weight: 700; text-decoration: none; font-size: 1rem; transition: color .2s; }
.benefit-cta-dark:hover  { color: var(--blue-hover); }

/* ──────────────────────────────────────────
   TESTIMONIALS
────────────────────────────────────────── */
.testimonials-section { background: var(--gray-50); padding: 5rem 1.5rem; }
.stars-row  { color: #FBBF24; font-size: 1.5rem; letter-spacing: .15em; text-align: center; margin-bottom: .5rem; }
.stars-label{ text-align: center; font-weight: 700; color: var(--deep); font-size: 1rem; margin-bottom: 2.5rem; }
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
.testimonial-card { background: #fff; border-radius: 24px; padding: 2rem; border: 1px solid var(--gray-100); box-shadow: 0 4px 12px rgba(0,0,0,.04); }
.testimonial-text { font-size: .9375rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-footer { display: flex; align-items: center; gap: .75rem; background: var(--gray-50); padding: .75rem 1rem; border-radius: 14px; }
.testimonial-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--blue); color: #fff; font-weight: 800; font-size: 1rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.testimonial-name   { font-weight: 700; font-size: .9375rem; color: var(--deep); }
.testimonial-badge  { margin-left: auto; background: var(--green-light); color: #059669; font-size: .6875rem; font-weight: 700; padding: .25rem .625rem; border-radius: 8px; text-transform: uppercase; letter-spacing: .05em; white-space: nowrap; }

/* ──────────────────────────────────────────
   GUARANTEE
────────────────────────────────────────── */
.guarantee-section { background: #F0FDF4; padding: 5rem 1.5rem; border-top: 1px solid #BBF7D0; text-align: center; }
.guarantee-icon  { font-size: 3rem; margin-bottom: 1.25rem; }
.guarantee-title { font-size: clamp(1.5rem,3.5vw,2rem); font-weight: 800; color: #064E3B; letter-spacing: -.04em; line-height: 1.2; margin-bottom: 1rem; }
.guarantee-desc  { font-size: 1rem; color: #065F46; max-width: 460px; margin: 0 auto 2.5rem; line-height: 1.7; font-weight: 500; }
.guarantee-cards { display: grid; grid-template-columns: 1fr; gap: 1rem; max-width: 680px; margin: 0 auto; }
.guarantee-card  { background: #fff; border-radius: 16px; padding: 1.5rem; border: 1px solid #BBF7D0; text-align: center; }
.guarantee-card span { font-size: 2rem; display: block; margin-bottom: .625rem; }
.g-card-title { font-size: .9375rem; font-weight: 700; color: #064E3B; margin-bottom: .25rem; }
.g-card-desc  { font-size: .8125rem; color: #065F46; }

/* ──────────────────────────────────────────
   URGENCY
────────────────────────────────────────── */
.urgency-section { background: #FFF8F7; border-top: 1px solid #FEE2E2; padding: 3.5rem 1.5rem; }
.urgency-label { font-size: .75rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; color: var(--red); text-align: center; margin-bottom: .875rem; }
.urgency-title { font-size: clamp(1.25rem,3vw,1.75rem); font-weight: 800; color: var(--deep); text-align: center; margin-bottom: .75rem; line-height: 1.3; }
.urgency-sub   { font-size: 1rem; color: var(--gray-600); text-align: center; font-weight: 500; }
.text-green { color: #059669; font-weight: 700; }

/* ──────────────────────────────────────────
   OFFER (exato do quiz)
────────────────────────────────────────── */
.offer-section { background: #f8fafc; padding: 5rem 1.5rem; border-top: 1px solid var(--gray-200); }
.offer-inner   { max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; text-align: center; }

.offer-reconnect {
  background: #fff; border-radius: 16px; padding: 1.25rem 1.5rem;
  border: 1px solid var(--gray-200); margin-bottom: 2rem;
  font-size: 1rem; color: var(--gray-600); line-height: 1.7; font-weight: 500;
}
.red-text   { color: var(--red); font-weight: 700; }
.green-text { color: #059669; font-weight: 700; }

.offer-title    { font-size: clamp(1.375rem,3vw,1.625rem); font-weight: 800; color: var(--deep); letter-spacing: -.03em; margin-bottom: .375rem; }
.offer-subtitle { font-size: .9375rem; color: var(--gray-400); font-weight: 400; margin-bottom: 2rem; }

.offer-card {
  background: #fff; border-radius: 20px;
  padding: 2rem 1.5rem; width: 100%;
  border: 2px solid #A5C8FE;
  box-shadow: 0 8px 32px rgba(107,157,252,.1);
  text-align: left;
}
.offer-card-top { text-align: center; margin-bottom: 1.75rem; }
.offer-card-name { font-size: 1.0625rem; font-weight: 800; color: var(--deep); margin-bottom: .5rem; }
.offer-card-after { font-size: .875rem; color: var(--gray-400); margin-bottom: .75rem; }
.offer-price-row { display: flex; align-items: baseline; justify-content: center; gap: .375rem; }
.offer-price  { font-size: 2.75rem; font-weight: 900; color: var(--deep); letter-spacing: -.05em; }
.offer-period { font-size: 1rem; color: var(--gray-400); }

.offer-features { list-style: none; display: flex; flex-direction: column; gap: .875rem; margin-bottom: 1.75rem; }
.offer-features li { display: flex; align-items: flex-start; gap: .75rem; font-size: .9375rem; color: var(--gray-700); line-height: 1.5; }
.feat-check { width: 18px; height: 18px; color: #4ade80; flex-shrink: 0; margin-top: 2px; }

.btn-offer-primary {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  width: 100%; padding: 1rem; border-radius: 12px;
  background: #7095F2; color: #fff;
  font-size: 1rem; font-weight: 700; border: none; cursor: pointer;
  transition: background .2s, transform .2s;
  margin-bottom: 1rem;
  box-shadow: 0 4px 16px rgba(112,149,242,.35);
}
.btn-offer-primary:hover { background: #5c7fe8; transform: translateY(-1px); }

.offer-guarantee-note { display: flex; align-items: center; justify-content: center; gap: .5rem; font-size: .8125rem; color: var(--gray-400); }
.offer-secure-note { font-size: .8125rem; color: var(--gray-400); margin-top: 1.5rem; }

/* ──────────────────────────────────────────
   FAQ
────────────────────────────────────────── */
.faq-section { background: #fff; padding: 5rem 1.5rem; }
.faq-list { max-width: 680px; margin: 2rem auto 0; border-top: 1px solid var(--gray-200); }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 1.375rem 0; background: none; border: none; cursor: pointer; text-align: left; gap: 1rem; }
.faq-question span { font-size: 1rem; font-weight: 700; color: var(--deep); flex: 1; }
.faq-icon { width: 1.5rem; height: 1.5rem; color: var(--gray-400); flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .5s ease; }
.faq-answer p { color: var(--gray-600); font-size: .9375rem; line-height: 1.7; padding-bottom: 1.375rem; }
.faq-item.open .faq-answer { max-height: 600px; }

/* ──────────────────────────────────────────
   FOOTER
────────────────────────────────────────── */
.footer { background: var(--deep); color: rgba(255,255,255,.75); padding: 4rem 1.5rem 2rem; }
.footer-top { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand .logo-text { color: #fff; }
.footer-tagline { font-size: .875rem; color: rgba(255,255,255,.5); margin-top: .5rem; }
.footer-links-group { display: flex; flex-direction: column; gap: .625rem; }
.footer-links-group h4 { color: #fff; font-size: .8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .75rem; }
.footer-links-group a { color: rgba(255,255,255,.55); font-size: .875rem; text-decoration: none; transition: color .2s; }
.footer-links-group a:hover { color: #fff; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 2rem; display: flex; flex-direction: column; align-items: center; gap: .5rem; text-align: center; }
.copyright    { font-size: .8125rem; color: rgba(255,255,255,.35); }
.footer-secure{ font-size: .8125rem; color: rgba(255,255,255,.4); }

/* Footer legal buttons — look like links */
.footer-legal-btn {
  background: none; border: none; cursor: pointer; padding: 0;
  color: rgba(255,255,255,.55); font-size: .875rem;
  font-family: inherit; text-align: left;
  transition: color .2s; text-decoration: underline;
  text-decoration-color: transparent;
}
.footer-legal-btn:hover { color: #fff; text-decoration-color: rgba(255,255,255,.4); }

/* ──────────────────────────────────────────
   LEGAL MODALS (Privacidade / Termos)
────────────────────────────────────────── */
.legal-modal-overlay {
  position: fixed; inset: 0; z-index: 400;
  background: rgba(10,37,64,.65); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  animation: fadeInOverlay .25s ease;
}

.legal-modal-box {
  background: #fff; border-radius: 24px;
  width: 100%; max-width: 560px;
  max-height: 85vh;
  display: flex; flex-direction: column;
  box-shadow: 0 40px 100px rgba(0,0,0,.3);
  overflow: hidden;
  animation: scaleIn .3s cubic-bezier(.34,1.56,.64,1);
}

.legal-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.375rem 1.5rem;
  border-bottom: 1px solid var(--gray-100);
  flex-shrink: 0;
}
.legal-modal-title {
  font-size: 1.125rem; font-weight: 800;
  color: var(--deep); letter-spacing: -.03em;
}
.legal-modal-close {
  background: var(--gray-100); border: none; border-radius: 50%;
  width: 32px; height: 32px; cursor: pointer;
  color: var(--gray-500); font-size: .875rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s; flex-shrink: 0;
}
.legal-modal-close:hover { background: var(--gray-200); }

.legal-modal-content {
  flex: 1; overflow-y: auto;
  padding: 1.375rem 1.5rem;
  scroll-behavior: smooth;
}
.legal-modal-content::-webkit-scrollbar { width: 4px; }
.legal-modal-content::-webkit-scrollbar-thumb { background: var(--gray-200); border-radius: 10px; }

.legal-section { margin-bottom: 1.375rem; }
.legal-section:last-child { margin-bottom: 0; }
.legal-section-title {
  font-size: .875rem; font-weight: 700;
  color: var(--deep); margin-bottom: .5rem;
}
.legal-section p {
  font-size: .8125rem; color: var(--gray-600);
  line-height: 1.75;
}
.legal-section ul {
  margin: .375rem 0 0 1rem;
  font-size: .8125rem; color: var(--gray-600);
  line-height: 1.75;
}

.legal-modal-footer {
  background: var(--gray-50); border-top: 1px solid var(--gray-100);
  padding: .875rem 1.5rem; flex-shrink: 0; text-align: center;
}
.legal-modal-footer p {
  font-size: .6875rem; color: var(--gray-400); line-height: 1.6;
}

/* ── Mobile tweaks for legal on tiny screens ── */
@media (max-width: 379px) {
  .legal-modal-box { border-radius: 18px; }
  .legal-modal-header { padding: 1rem; }
  .legal-modal-content { padding: 1rem; }
}

/* ──────────────────────────────────────────
   MODAL (exato do quiz)
────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(17,24,39,.6); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  animation: fadeInOverlay .25s ease;
}
@keyframes fadeInOverlay { from{opacity:0} to{opacity:1} }

.modal-box {
  background: #fff; border-radius: 32px;
  width: 100%; max-width: 400px;
  box-shadow: 0 32px 80px rgba(0,0,0,.25);
  overflow: hidden; position: relative;
  animation: scaleIn .3s cubic-bezier(.34,1.56,.64,1);
}
@keyframes scaleIn { from{transform:scale(.94) translateY(16px);opacity:0} to{transform:scale(1) translateY(0);opacity:1} }

.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--gray-100); border: none; border-radius: 50%;
  width: 32px; height: 32px; cursor: pointer;
  color: var(--gray-500); font-size: 1rem; z-index: 10;
  display: flex; align-items: center; justify-content: center; transition: background .2s;
}
.modal-close:hover { background: var(--gray-200); }

.modal-body   { padding: 2rem 2rem 1.5rem; }
.modal-title  { text-align: center; font-size: 1.25rem; font-weight: 900; color: var(--deep); letter-spacing: -.03em; margin-bottom: .5rem; }
.modal-subtitle { text-align: center; font-size: .8125rem; color: var(--gray-500); line-height: 1.6; margin-bottom: 1.5rem; padding: 0 .5rem; }

.modal-option { border-radius: 20px; padding: 1.25rem; margin-bottom: 1rem; }
.modal-option.white { background: #fff; border: 1px solid var(--gray-200); box-shadow: 0 4px 16px rgba(0,0,0,.05); }
.modal-option.pix-bg { background: #F0FDF4; border: 1px solid #BBF7D0; }

.modal-option-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: .875rem; }
.modal-option-title  { font-size: 1rem; font-weight: 900; color: var(--deep); display: flex; align-items: center; gap: .5rem; }
.green-title { color: #064E3B; }
.modal-badge { font-size: .625rem; font-weight: 900; padding: .25rem .625rem; border-radius: 6px; text-transform: uppercase; letter-spacing: .08em; white-space: nowrap; }
.blue-badge  { background: #EFF6FF; color: #1D4ED8; }
.green-badge { background: #D1FAE5; color: #065F46; }
.modal-option-desc { font-size: .8125rem; color: var(--gray-500); line-height: 1.6; margin-bottom: 1rem; font-weight: 500; }
.green-desc { color: #065F46; }

.btn-modal-blue {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 52px;
  background: #0082FF; color: #fff;
  border-radius: 14px; font-weight: 700; font-size: 1rem;
  text-decoration: none; box-shadow: 0 4px 16px rgba(0,130,255,.3);
  transition: background .2s;
}
.btn-modal-blue:hover { background: #006ee6; }

.btn-modal-green {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 52px;
  background: #10B981; color: #fff;
  border-radius: 14px; font-weight: 700; font-size: 1rem;
  text-decoration: none; box-shadow: 0 4px 16px rgba(16,185,129,.3);
  transition: background .2s;
}
.btn-modal-green:hover { background: #059669; }

.modal-footer-note { text-align: center; font-size: .6875rem; color: var(--gray-400); display: flex; align-items: center; justify-content: center; gap: .5rem; }
.modal-bottom-bar  { background: var(--gray-50); padding: .875rem; text-align: center; border-top: 1px solid var(--gray-100); }
.modal-bottom-text { font-size: .6875rem; font-weight: 800; color: var(--gray-400); text-transform: uppercase; letter-spacing: .1em; }

/* ──────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────── */

/* ── Tiny phones (< 380px) ── */
@media (max-width: 379px) {
  .navbar-inner { padding: 0.75rem 1rem; }
  .hero-centered { padding: 2.5rem 1rem 20px; }
  .phone-frame { width: calc(100vw - 2rem) !important; max-width: 300px; }
  .hero-center-title { font-size: 1.625rem; }
  .hero-disclaimer { font-size: .75rem; }
  .btn-hero-primary { font-size: .9375rem; padding: .875rem 1.5rem; }
  .pain-cards { gap: .625rem; }
  .pain-card { padding: .875rem .625rem; }
  .testimonial-card { padding: 1.25rem .875rem; }
  .offer-card { padding: 1.5rem 1rem; }
  .modal-box { border-radius: 24px; }
  .modal-body { padding: 1.5rem 1rem 1rem; }
  .benefit-row { padding: 3rem 1rem; gap: 2rem; }
  .section-inner { padding: 0 1rem; }
}

/* ── Mobile default (< 640px) ── */
@media (max-width: 639px) {
  .pain-cards { grid-template-columns: 1fr 1fr; max-width: 100%; }
  .section-desc { margin-bottom: 2rem; }
  .how-section, .testimonials-section, .guarantee-section,
  .offer-section, .faq-section, .urgency-section { padding-left: 1rem; padding-right: 1rem; }
  .pain-section { padding: 3.5rem 1rem; }
  .benefit-alert-demo { gap: .875rem; }
  .guarantee-cards { grid-template-columns: 1fr; }
  .footer-top { gap: 2rem; padding-bottom: 2.5rem; }
  .footer-bottom { gap: .375rem; }
  .modal-body { padding: 1.75rem 1.25rem 1.25rem; }
}

/* ── Small-medium (640px+) ── */
@media (min-width: 640px) {
  .pain-cards { grid-template-columns: repeat(4, 1fr); max-width: 860px; }
  .guarantee-cards { grid-template-columns: repeat(3, 1fr); }
  .hero-center-buttons { flex-direction: row; justify-content: center; }
}

/* ── Tablet (768px+) ── */
@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .benefit-row { padding: 4rem 2rem; }
}

/* ── Tablet hero: side-by-side layout (700px–1023px) ── */
@media (min-width: 700px) and (max-width: 1023px) {
  .hero-centered { padding: 3.5rem 2.5rem 20px; }
  .hero-center-content {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    text-align: left;
  }
  .hero-center-text {
    text-align: left;
    align-items: flex-start;
    max-width: 420px;
    flex: 1 1 auto;
  }
  .hero-proof { justify-content: flex-start; }
  .hero-center-buttons { flex-direction: column; align-items: flex-start; }
  .hero-phone-wrap {
    width: auto;
    flex: 0 0 auto;
  }
  .hero-phone-wrap .phone-frame { width: 280px; }
  .hero-phone-wrap .phone-screen { height: 500px; }
}

/* ── Desktop (1024px+) ── */
@media (min-width: 1024px) {
  .hamburger { display: none; }
  .nav-desktop { display: flex; }

  /* Hero layout */
  .hero-centered { padding: 5rem 3rem 20px; }
  .hero-phone-wrap .phone-frame { width: 340px; }
  .hero-phone-wrap .phone-screen { height: 580px; }

  /* Benefit rows horizontal */
  .benefit-row { flex-direction: row; padding: 6rem 3rem; gap: 5rem; justify-content: center; }
  .benefit-reverse { flex-direction: row-reverse; }
  .benefit-media { width: 50%; max-width: 500px; }
  .benefit-text  { width: 50%; max-width: 460px; text-align: left; align-items: flex-start; }

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

  .footer-top    { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* ── Mid-desktop: avoid navbar crowding (1024–1200px) ── */
@media (min-width: 1024px) and (max-width: 1199px) {
  .nav-links { gap: 1.25rem; }
  .nav-links a { font-size: .8125rem; }
  .btn-nav-quiz { font-size: .75rem; padding: .4rem .875rem; }
  .btn-nav-primary { font-size: .8125rem; padding: .45rem 1rem; }
  .nav-actions { gap: .5rem; }
}

/* ── Large desktop (1200px+) ── */
@media (min-width: 1200px) {
  .benefit-row { padding: 6rem 4rem; gap: 6rem; }
  .hero-phone-wrap .phone-frame { width: 360px; }
  .hero-phone-wrap .phone-screen { height: 600px; }
}
