/* ============================================
   LaPelota — Landing Page — styles.css
============================================ */

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: #0b1e11; font-family: 'DM Sans', sans-serif; color: #eef4f0; -webkit-font-smoothing: antialiased; }

/* Animations */
@keyframes float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-14px);} }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.3;} }

/* ---- Nav ---- */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 24px;
  transition: background 0.35s, backdrop-filter 0.35s, border-color 0.35s;
  background: transparent;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(11,30,17,0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(45,206,92,0.1);
}
.nav-inner {
  max-width: 1120px; margin: 0 auto; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.75rem; letter-spacing: 0.07em; color: #2dce5c; display: flex; align-items: center; gap: 0.4rem; }
.nav-logo-img { height: 1.75rem; width: auto; display: block; }
.nav-cta {
  background: #2dce5c; color: #061209; font-weight: 700; font-size: 0.83rem;
  padding: 10px 22px; border-radius: 100px; text-decoration: none;
  letter-spacing: 0.04em; transition: background 0.2s;
}
.nav-cta:hover { background: #50db79; }
.nav-login { color: #9dbdae; font-size: 0.84rem; font-weight: 600; text-decoration: none; transition: color 0.2s; }
.nav-login:hover { color: #2dce5c; }
.nav-right { display: flex; align-items: center; gap: 14px; }

/* Lang picker (dropdown custom com bandeiras) */
.lang-picker { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  color: #eef4f0;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 6px 12px;
  outline: none;
  transition: border-color 0.18s, background 0.18s;
}
.lang-btn:hover { border-color: rgba(45,206,92,0.35); background: rgba(255,255,255,0.09); }
.lang-picker.open .lang-btn { border-color: rgba(45,206,92,0.5); }
.lang-btn-flag svg, .lang-option-flag svg { width: 20px; height: 14px; display: block; border-radius: 3px; }
.lang-caret { color: #8db89f; transition: transform 0.22s ease; }
.lang-picker.open .lang-caret { transform: rotate(180deg); }

.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 168px; list-style: none; margin: 0; padding: 6px;
  background: #0f2916; border: 1px solid rgba(45,206,92,0.18);
  border-radius: 14px; box-shadow: 0 12px 40px rgba(0,0,0,0.45);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 200;
}
.lang-picker.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-option {
  display: flex; align-items: center; gap: 11px;
  padding: 9px 12px; border-radius: 9px; cursor: pointer;
  color: #cfe3d7; font-size: 0.88rem; font-weight: 500;
  outline: none; transition: background 0.15s, color 0.15s;
}
.lang-option:hover, .lang-option:focus { background: rgba(45,206,92,0.1); color: #eef4f0; }
.lang-option[aria-selected="true"] { background: rgba(45,206,92,0.14); color: #2dce5c; font-weight: 700; }

/* ---- Layout helpers ---- */
.container { max-width: 1120px; margin: 0 auto; }
.container--md { max-width: 960px; margin: 0 auto; }
.container--sm { max-width: 680px; margin: 0 auto; }

/* ---- Hero ---- */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 108px 24px 80px; background: #0b1e11;
  position: relative; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 55% 65% at 72% 46%, rgba(45,206,92,0.08) 0%, transparent 70%); }
.hero-bg2 { position: absolute; top:-120px; left:-120px; width:480px; height:480px; border-radius:50%; pointer-events:none;
  background: radial-gradient(circle, rgba(200,245,99,0.04) 0%, transparent 65%); }
.hero-cols { display: flex; align-items: center; gap: 56px; width: 100%; }
.hero-copy { flex: 1; min-width: 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(45,206,92,0.09); border: 1px solid rgba(45,206,92,0.22);
  border-radius: 100px; padding: 6px 16px; margin-bottom: 32px;
}
.hero-badge-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #2dce5c; animation: pulse 2s ease-in-out infinite; }
.hero-badge-text { font-size: 0.74rem; color: #2dce5c; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.hero-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.8rem,5.2vw,4.8rem); line-height: 1.04; letter-spacing: 0.03em; margin-bottom: 22px; text-wrap: balance; }
.hero-title .accent { color: #2dce5c; }
.hero-subtitle { font-size: 1.08rem; color: #b6d3c3; line-height: 1.7; max-width: 500px; margin-bottom: 14px; }
.hero-forwho { font-size: 0.92rem; color: #6b8c7a; line-height: 1.6; max-width: 460px; margin-bottom: 14px; }
.hero-tagline { font-size: 0.98rem; color: #c8f563; font-weight: 600; margin-bottom: 32px; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-cta {
  background: #2dce5c; color: #061209; font-weight: 700; font-size: 0.95rem;
  padding: 15px 34px; border-radius: 100px; text-decoration: none;
  box-shadow: 0 0 44px rgba(45,206,92,0.22);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s; display: inline-block;
}
.hero-cta:hover { background: #50db79; transform: translateY(-2px); box-shadow: 0 6px 52px rgba(45,206,92,0.38); }
.hero-cta-ghost {
  display: inline-block; padding: 14px 28px; border-radius: 100px; text-decoration: none;
  border: 1px solid rgba(200,245,99,0.34); color: #c8f563;
  font-weight: 600; font-size: 0.92rem;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.hero-cta-ghost:hover { background: rgba(200,245,99,0.09); border-color: rgba(200,245,99,0.6); transform: translateY(-2px); }
.hero-note { font-size: 0.8rem; color: #4a6459; margin-top: 18px; }
/* Reforços curtos e verificáveis, logo abaixo do CTA. */
.hero-proof { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 20px; }
.hero-proof li { display: flex; align-items: center; gap: 8px; font-size: 0.83rem; color: #8db89f; }
.hero-proof li::before {
  content: "✓"; flex-shrink: 0;
  width: 17px; height: 17px; border-radius: 50%;
  background: rgba(45,206,92,0.16); color: #2dce5c;
  font-size: 9px; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
}
.hero-illus { flex: 0 0 390px; animation: float 5s ease-in-out infinite; }

/* ---- Section title pattern ---- */
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4.4vw, 3rem);
  letter-spacing: 0.03em; text-align: center; line-height: 1.1;
  margin-bottom: 52px; text-wrap: balance;
}
.section-title .accent { color: #2dce5c; }
.section-title .accent-lime { color: #c8f563; }
.section-title--left { text-align: left; }
.eyebrow {
  display: inline-block; margin-bottom: 14px;
  font-size: 0.72rem; font-weight: 700; color: #2dce5c;
  letter-spacing: 0.16em; text-transform: uppercase;
}

/* ---- Problem ---- */
.section-problem { padding: 88px 24px; background: #0f2916; }
.probs-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 13px; }
.prob-item {
  display: flex; align-items: flex-start; gap: 13px;
  background: rgba(45,206,92,0.05); border: 1px solid rgba(45,206,92,0.1);
  border-radius: 12px; padding: 18px 20px;
  transition: background 0.2s, border-color 0.2s;
}
.prob-item:hover { background: rgba(45,206,92,0.09); border-color: rgba(45,206,92,0.22); }
.prob-check {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: #2dce5c; color: #061209; font-size: 11px; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center; margin-top: 1px;
}
.prob-text { color: #9dbdae; font-size: 0.94rem; line-height: 1.55; }
.prob-closing { margin-top: 52px; text-align: center; font-size: 1.04rem; color: #eef4f0; font-weight: 500; opacity: 0.6; }

/* ---- Para quem ---- */
.section-who { padding: 88px 24px; background: #0b1e11; }
.who-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.who-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px; padding: 28px 24px;
  transition: background 0.2s, border-color 0.2s;
}
.who-card:hover { background: rgba(45,206,92,0.06); border-color: rgba(45,206,92,0.24); }
.who-tag {
  display: inline-block; margin-bottom: 14px; padding: 5px 12px;
  background: rgba(45,206,92,0.1); border: 1px solid rgba(45,206,92,0.22); border-radius: 100px;
  font-size: 0.7rem; font-weight: 700; color: #2dce5c; letter-spacing: 0.09em; text-transform: uppercase;
}
.who-card-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 0.02em; line-height: 1.15; color: #eef4f0; margin-bottom: 10px; }
.who-card-p { font-size: 0.88rem; color: #8db89f; line-height: 1.65; }
.who-formats {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px;
  margin-top: 40px;
}
.who-formats-label { font-size: 0.83rem; color: #5a7d6a; font-weight: 600; }
.who-formats-list { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.who-formats-list li {
  padding: 7px 15px; border-radius: 100px;
  background: rgba(45,206,92,0.07); border: 1px solid rgba(45,206,92,0.16);
  font-size: 0.82rem; color: #9dbdae;
}
.who-notfor {
  max-width: 620px; margin: 32px auto 0; text-align: center;
  font-size: 0.86rem; color: #5a7d6a; line-height: 1.65;
}
.who-notfor strong { color: #8db89f; font-weight: 700; }

/* ---- Solution (três momentos da pelada) ---- */
.section-solution { padding: 88px 24px; background: #132b1a; }
.section-header { text-align: center; margin-bottom: 58px; }
.section-desc { font-size: 0.97rem; color: #8db89f; max-width: 520px; margin: 14px auto 0; line-height: 1.65; }
.pillars-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.pillar {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px; padding: 28px 24px;
  transition: border-color 0.2s;
}
.pillar:hover { border-color: rgba(45,206,92,0.24); }
.pillar-eyebrow {
  display: block; margin-bottom: 8px;
  font-size: 0.7rem; font-weight: 700; color: #2dce5c;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.pillar-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.65rem; letter-spacing: 0.02em;
  line-height: 1.12; color: #eef4f0; margin-bottom: 22px;
  padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.pillar-items { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.pillar-item { display: flex; gap: 12px; align-items: flex-start; }
.pillar-item::before {
  content: ""; flex-shrink: 0;
  width: 7px; height: 7px; border-radius: 50%; margin-top: 6px;
  background: #2dce5c;
}
.pillar-item-title { font-size: 0.89rem; font-weight: 700; color: #eef4f0; margin-bottom: 4px; line-height: 1.35; }
.pillar-item-desc { font-size: 0.82rem; color: #6b8c7a; line-height: 1.55; }
.pillar-pro {
  display: inline-block; margin-left: 7px; padding: 2px 8px;
  background: rgba(200,245,99,0.12); border: 1px solid rgba(200,245,99,0.28); border-radius: 100px;
  font-size: 0.62rem; font-weight: 800; color: #c8f563; letter-spacing: 0.08em; text-transform: uppercase;
  vertical-align: 1px;
}
.pillars-note { margin-top: 36px; text-align: center; font-size: 0.83rem; color: #5a7d6a; }

/* ---- Encontrar Peladeiro ---- */
.section-find { padding: 88px 24px; background: #0c2016; position: relative; overflow: hidden; }
.section-find-bg { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 44% 55% at 78% 50%, rgba(200,245,99,0.07) 0%, transparent 70%); }
.find-cols { display: flex; align-items: center; gap: 64px; }
.find-copy { flex: 1; min-width: 0; }
.find-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,245,99,0.09); border: 1px solid rgba(200,245,99,0.22);
  border-radius: 100px; padding: 6px 16px; margin-bottom: 28px;
}
.find-badge-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #c8f563; animation: pulse 2s ease-in-out infinite; }
.find-badge-text { font-size: 0.74rem; color: #c8f563; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.find-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem,4.4vw,3.2rem); letter-spacing: 0.03em; line-height: 1.08; margin-bottom: 18px; text-wrap: balance; }
.find-title .accent-lime { color: #c8f563; }
.find-desc { font-size: 0.97rem; color: #8db89f; line-height: 1.7; max-width: 460px; margin-bottom: 36px; }
.find-steps { display: flex; flex-direction: column; gap: 22px; }
.find-step { display: flex; gap: 16px; align-items: flex-start; }
.find-step-num {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  background: rgba(200,245,99,0.1); border: 1.5px solid rgba(200,245,99,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 1rem; color: #c8f563;
}
.find-step-title { font-size: 0.92rem; font-weight: 600; color: #eef4f0; margin-bottom: 3px; }
.find-step-p { font-size: 0.81rem; color: #5a7d6a; line-height: 1.5; }
.find-diagram { flex: 0 0 340px; max-width: 100%; }

/* ---- How it Works ---- */
.section-how { padding: 88px 24px; background: #0b1e11; }
.how-sub { text-align: center; color: #5a7d6a; margin-bottom: 60px; font-size: 0.95rem; }
.steps-wrapper { position: relative; }
.steps-line { position: absolute; top: 29px; left: 10%; right: 10%; height: 2px; pointer-events: none; background: linear-gradient(to right, rgba(45,206,92,0.05), rgba(45,206,92,0.22), rgba(45,206,92,0.05)); }
.steps-row { display: flex; gap: 12px; position: relative; z-index: 1; }
.step-item { flex: 1; text-align: center; padding: 0 4px; }
.step-circle {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(45,206,92,0.09); border: 2px solid rgba(45,206,92,0.28);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.35rem; color: #2dce5c; letter-spacing: 0.05em;
}
.step-title { font-size: 0.88rem; font-weight: 700; color: #eef4f0; margin-bottom: 6px; }
.step-p { font-size: 0.79rem; color: #5a7d6a; line-height: 1.45; }

/* ---- Por que confiar ---- */
.section-trust { padding: 88px 24px; background: #0f2916; }
.trust-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.trust-item {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px; padding: 26px 22px;
  transition: background 0.2s, border-color 0.2s;
}
.trust-item:hover { background: rgba(45,206,92,0.05); border-color: rgba(45,206,92,0.22); }
.trust-icon {
  width: 34px; height: 34px; border-radius: 10px; margin-bottom: 16px;
  background: rgba(45,206,92,0.12); border: 1px solid rgba(45,206,92,0.24);
  display: flex; align-items: center; justify-content: center;
  color: #2dce5c;
}
.trust-title { font-size: 0.94rem; font-weight: 700; color: #eef4f0; margin-bottom: 8px; line-height: 1.35; }
.trust-p { font-size: 0.85rem; color: #8db89f; line-height: 1.65; }
.trust-links {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px;
  margin-top: 40px; font-size: 0.84rem; color: #3d5a47;
}
.trust-links a { color: #6b8c7a; text-decoration: none; border-bottom: 1px dotted rgba(107,140,122,0.5); transition: color 0.2s, border-color 0.2s; }
.trust-links a:hover { color: #2dce5c; border-color: rgba(45,206,92,0.5); }

/* ---- CTA Section ---- */
.section-cta { padding: 88px 24px; background: #132b1a; position: relative; overflow: hidden; }
.section-cta-bg { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 50% 60% at 50% 0%, rgba(45,206,92,0.09) 0%, transparent 72%); }
.cta-inner { text-align: center; position: relative; }
.cta-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(45,206,92,0.09); border: 1px solid rgba(45,206,92,0.22);
  border-radius: 100px; padding: 6px 16px; margin-bottom: 28px;
}
.cta-badge-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #2dce5c; animation: pulse 2s ease-in-out infinite; }
.cta-badge-text { font-size: 0.74rem; color: #2dce5c; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.cta-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem,4.4vw,3rem); letter-spacing: 0.03em; line-height: 1.1; margin-bottom: 16px; text-wrap: balance; }
.cta-title .accent { color: #2dce5c; }
.cta-desc { color: #8db89f; line-height: 1.65; margin: 0 auto 44px; font-size: 0.97rem; max-width: 480px; }

/* Comparação de planos: torna a decisão explícita antes do CTA. */
.plans-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; max-width: 760px; margin: 0 auto 44px; text-align: left; }
.plan-card {
  display: flex; flex-direction: column;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px; padding: 26px 24px;
}
.plan-card--pro { border-color: rgba(45,206,92,0.32); background: rgba(45,206,92,0.05); }
.plan-head { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.plan-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 0.05em; color: #eef4f0; }
.plan-card--pro .plan-name { color: #2dce5c; }
.plan-price { white-space: nowrap; }
.plan-price-value { font-size: 1.05rem; font-weight: 700; color: #eef4f0; }
.plan-price-note { font-size: 0.78rem; color: #5a7d6a; }
.plan-badge {
  align-self: flex-start; margin-bottom: 16px; padding: 5px 13px;
  background: rgba(200,245,99,0.12); border: 1px solid rgba(200,245,99,0.3); border-radius: 100px;
  font-size: 0.72rem; font-weight: 700; color: #c8f563;
}
.plan-items { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; }
.plan-items li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.86rem; color: #9dbdae; line-height: 1.5; }
.plan-items li::before {
  content: "✓"; flex-shrink: 0;
  width: 17px; height: 17px; border-radius: 50%; margin-top: 2px;
  background: rgba(45,206,92,0.16); color: #2dce5c;
  font-size: 9px; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
}
.plan-cta {
  margin-top: auto; text-align: center; text-decoration: none;
  padding: 12px 20px; border-radius: 100px;
  border: 1px solid rgba(45,206,92,0.35); color: #2dce5c;
  font-size: 0.87rem; font-weight: 700;
  transition: background 0.2s, border-color 0.2s;
}
.plan-cta:hover { background: rgba(45,206,92,0.1); border-color: rgba(45,206,92,0.6); }
.plan-cta--pro { background: rgba(45,206,92,0.14); }
.plan-cta--pro:hover { background: rgba(45,206,92,0.22); }

.cta-actions { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.cta-main-btn {
  display: inline-block; background: #2dce5c; color: #061209; font-weight: 700; font-size: 1rem;
  padding: 17px 40px; border-radius: 100px; text-decoration: none;
  box-shadow: 0 0 52px rgba(45,206,92,0.26); letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.cta-main-btn:hover { background: #50db79; transform: translateY(-2px); box-shadow: 0 6px 60px rgba(45,206,92,0.4); }
.cta-ghost-btn {
  display: inline-block; padding: 16px 32px; border-radius: 100px; text-decoration: none;
  border: 1px solid rgba(200,245,99,0.34); color: #c8f563; font-weight: 600; font-size: 0.93rem;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.cta-ghost-btn:hover { background: rgba(200,245,99,0.09); border-color: rgba(200,245,99,0.6); transform: translateY(-2px); }

/* "O que acontece depois que eu clicar" — remove a incerteza do próximo passo. */
.cta-next { max-width: 560px; margin: 0 auto 28px; text-align: left; }
.cta-next-title { font-size: 0.83rem; font-weight: 700; color: #8db89f; text-align: center; margin-bottom: 18px; letter-spacing: 0.03em; }
.cta-next-list { list-style: none; counter-reset: ctastep; display: flex; flex-direction: column; gap: 12px; }
.cta-next-list li {
  counter-increment: ctastep;
  display: flex; gap: 13px; align-items: flex-start;
  font-size: 0.87rem; color: #9dbdae; line-height: 1.55;
}
.cta-next-list li::before {
  content: counter(ctastep); flex-shrink: 0;
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(45,206,92,0.1); border: 1px solid rgba(45,206,92,0.28);
  color: #2dce5c; font-family: 'Bebas Neue', sans-serif; font-size: 0.86rem;
  display: inline-flex; align-items: center; justify-content: center;
}
.cta-upgrade { color: #4a6459; font-size: 0.82rem; line-height: 1.55; max-width: 440px; margin: 0 auto; }

/* ---- FAQ ---- */
.section-faq { padding: 88px 24px; background: #0b1e11; }
.faq-list { border-top: 1px solid rgba(255,255,255,0.07); }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.07); }
.faq-btn { width: 100%; background: none; border: none; padding: 24px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-question { font-size: 0.97rem; font-weight: 600; color: #eef4f0; text-align: left; line-height: 1.4; }
.faq-icon { color: #2dce5c; font-size: 1.4rem; font-weight: 300; flex-shrink: 0; transition: transform 0.3s ease; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-answer { max-height: 560px; }
.faq-answer p { padding-bottom: 24px; color: #8db89f; line-height: 1.68; font-size: 0.92rem; }

/* ---- Footer ---- */
footer { background: #060f09; padding: 48px 24px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.55rem; letter-spacing: 0.07em; color: #2dce5c; margin-bottom: 4px; display: flex; align-items: center; gap: 0.4rem; }
.footer-logo-img { height: 1.55rem; width: auto; display: block; }
.footer-tagline { font-size: 0.81rem; color: #3d5a47; }
.footer-links { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }
.footer-link { color: #6b8c7a; font-size: 0.84rem; text-decoration: none; transition: color 0.2s; }
.footer-link:hover { color: #2dce5c; }
.footer-bottom { margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.04); }
.footer-copy { font-size: 0.73rem; color: #1e3328; }

/* ---- Legal pages (termos.html / privacidade.html) ---- */
.legal-page { padding: 120px 24px 88px; background: #0b1e11; min-height: 100vh; }
.legal-eyebrow {
  display: inline-block; font-size: 0.74rem; font-weight: 700; color: #2dce5c;
  letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 14px;
}
.legal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4.4vw, 3.2rem);
  letter-spacing: 0.03em; line-height: 1.08;
  margin-bottom: 12px; color: #eef4f0;
}
.legal-update { font-size: 0.82rem; color: #6b8c7a; margin-bottom: 44px; }
.legal-doc { color: #9dbdae; font-size: 0.94rem; line-height: 1.78; }
.legal-doc h2 {
  font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.04em;
  font-size: 1.55rem; color: #eef4f0;
  margin: 40px 0 14px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06);
}
.legal-doc h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.legal-doc h3 {
  font-size: 0.98rem; font-weight: 700; color: #eef4f0;
  margin: 26px 0 10px; letter-spacing: 0.01em;
}
.legal-doc p { margin-bottom: 14px; }
.legal-doc ul, .legal-doc ol { margin: 0 0 16px 22px; }
.legal-doc li { margin-bottom: 8px; }
.legal-doc strong { color: #eef4f0; font-weight: 700; }
.legal-doc a { color: #2dce5c; text-decoration: none; border-bottom: 1px dotted rgba(45,206,92,0.4); }
.legal-doc a:hover { border-bottom-style: solid; }
.legal-back {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 48px; padding: 10px 20px;
  border: 1px solid rgba(45,206,92,0.28); border-radius: 100px;
  color: #2dce5c; font-size: 0.84rem; font-weight: 600; text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.legal-back:hover { background: rgba(45,206,92,0.08); border-color: rgba(45,206,92,0.5); }

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .hero-cols, .find-cols { flex-direction: column; }
  .hero-illus { display: none; }
  .find-diagram { width: 100%; max-width: 340px; margin: 32px auto 0; }
  .probs-grid { grid-template-columns: 1fr !important; }
  .steps-row { flex-wrap: wrap; }
  .step-item { flex: 0 0 calc(50% - 6px) !important; }
  .steps-line { display: none; }
  .who-grid, .pillars-grid, .trust-grid { grid-template-columns: repeat(2,1fr); }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 580px) {
  .step-item { flex: 0 0 100% !important; }
  .who-grid, .pillars-grid, .trust-grid, .plans-grid { grid-template-columns: 1fr; }
  .nav-login { display: none; }
  .hero-actions .hero-cta, .hero-actions .hero-cta-ghost { width: 100%; text-align: center; }
  .cta-actions .cta-main-btn, .cta-actions .cta-ghost-btn { width: 100%; text-align: center; }
}
