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

:root {
  --brand: #5f79ea;
  --brand-dark: #4560d4;
  --brand-light: #7b8fef;
  --bg: #0A0A0A;
  --bg2: #111111;
  --bg3: #1A1A1A;
  --bg4: #222222;
  --border: rgba(255,255,255,0.08);
  --border2: rgba(255,255,255,0.14);
  --text: #F5F5F5;
  --text2: #A0A0A0;
  --text3: #666666;
  --white: #FFFFFF;
  --green: #00D97E;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Sora', sans-serif; line-height: 1.2; letter-spacing: -0.02em; }
a { text-decoration: none; color: inherit; }
a:hover { color: var(--brand-light); }
img { max-width: 100%; display: block; }

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 60px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
}
.nav-logo img { height: 34px; width: auto; display: block; }
.nav-logo .wordmark > span { color: var(--brand); }
footer .foot-logo { display: flex; align-items: center; gap: 10px; font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 800; letter-spacing: -0.03em; color: var(--white); }
footer .foot-logo img { height: 28px; width: auto; display: block; }
footer .foot-logo .wordmark > span { color: var(--brand); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text2); transition: color var(--transition); }
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--brand); color: var(--white);
  font-size: 14px; font-weight: 600; padding: 10px 22px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: var(--brand-dark); color: var(--white); transform: translateY(-1px); }

section { padding: 90px 60px; }
.container { max-width: 1160px; margin: 0 auto; }

.section-divider { height: 1px; background: var(--border); }

.eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--brand-light); margin-bottom: 16px;
}
.section-title { font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; color: var(--white); margin-bottom: 16px; }
.section-sub { font-size: 17px; color: var(--text2); max-width: 620px; line-height: 1.75; }

/* HERO */
.p-hero {
  padding: 160px 60px 90px;
  position: relative;
  overflow: hidden;
}
.p-hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.p-hero-glow {
  position: absolute; top: -240px; right: -200px; width: 720px; height: 720px; pointer-events: none;
  background: radial-gradient(circle, rgba(95,121,234,0.14) 0%, transparent 65%);
}
.p-hero-inner { position: relative; z-index: 1; max-width: 1160px; margin: 0 auto; }

.crumb { font-size: 13px; color: var(--text3); margin-bottom: 26px; }
.crumb a { color: var(--text2); }

.p-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(95,121,234,0.12);
  border: 1px solid rgba(95,121,234,0.25);
  color: var(--brand-light);
  font-size: 13px; font-weight: 500;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 26px;
}
.p-badge span.dot { width: 6px; height: 6px; background: var(--brand); border-radius: 50%; }

.p-title { font-size: clamp(36px, 4.6vw, 58px); font-weight: 800; color: var(--white); line-height: 1.1; margin-bottom: 22px; max-width: 900px; }
.p-title em { font-style: normal; color: var(--brand); }
.p-sub { font-size: 18px; color: var(--text2); line-height: 1.75; max-width: 640px; margin-bottom: 38px; }

.actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand); color: var(--white);
  font-size: 15px; font-weight: 600; padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: var(--brand-dark); color: var(--white); transform: translateY(-2px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text);
  font-size: 15px; font-weight: 500; padding: 14px 28px;
  border-radius: var(--radius-sm); border: 1px solid var(--border2);
  transition: border-color var(--transition), color var(--transition);
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.3); color: var(--white); }

/* STATS */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-top: 60px; }
.stat { background: var(--bg2); padding: 28px 26px; }
.stat-val { font-family: 'Sora', sans-serif; font-size: 30px; font-weight: 800; color: var(--white); }
.stat-lbl { font-size: 13.5px; color: var(--text2); margin-top: 6px; line-height: 1.5; }

/* CARDS */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 48px; }
.card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: border-color var(--transition), transform var(--transition);
}
.card:hover { border-color: var(--border2); transform: translateY(-3px); }
.card-icon {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  background: rgba(95,121,234,0.12); border: 1px solid rgba(95,121,234,0.22);
  border-radius: var(--radius-sm); margin-bottom: 18px;
}
.card h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.card p { font-size: 14.5px; color: var(--text2); line-height: 1.7; }

/* STEPS */
.steps { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-top: 48px; }
.step { background: var(--bg2); padding: 28px 30px; display: grid; grid-template-columns: 64px 1fr; gap: 20px; align-items: start; }
.step-num { font-family: 'Sora', sans-serif; font-size: 30px; font-weight: 800; color: rgba(95,121,234,0.35); line-height: 1; }
.step h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--text2); line-height: 1.7; }

/* LIST */
.checklist { list-style: none; display: grid; gap: 14px; margin-top: 32px; }
.checklist li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; font-size: 15.5px; color: var(--text2); line-height: 1.7; }
.checklist svg { margin-top: 5px; }
.checklist strong { color: var(--white); font-weight: 600; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }

/* FAQ */
.faq { display: grid; gap: 16px; margin-top: 44px; }
.faq article { padding: 24px; border: 1px solid var(--border2); border-radius: var(--radius); background: var(--bg3); }
.faq h3 { font-size: 17px; margin-bottom: 10px; color: var(--white); }
.faq p { color: var(--text2); font-size: 15px; line-height: 1.7; }

/* CTA */
.cta-section { position: relative; overflow: hidden; text-align: left; padding: 96px 60px; background: var(--bg2); border-top: 1px solid var(--border); }
.cta-glow { position: absolute; bottom: -300px; left: 50%; transform: translateX(-50%); width: 900px; height: 700px; background: radial-gradient(circle, rgba(95,121,234,0.16) 0%, transparent 65%); pointer-events: none; }
.cta-inner { position: relative; z-index: 1; max-width: 1160px; margin: 0 auto; }
.cta-title { font-size: clamp(28px, 3.4vw, 42px); font-weight: 800; color: var(--white); margin-bottom: 16px; max-width: 760px; }
.cta-sub { font-size: 17px; color: var(--text2); max-width: 620px; margin-bottom: 34px; line-height: 1.75; }

/* FOOTER */
footer { padding: 48px 60px; border-top: 1px solid var(--border); display: grid; gap: 18px; }
footer img { height: 34px; }
.footer-contact a { color: var(--text2); font-size: 14.5px; }
.footer-contact address { font-style: normal; color: var(--text3); font-size: 14px; margin-top: 4px; }
.footer-copy { color: var(--text3); font-size: 13px; }

/* WHATSAPP */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  transition: transform var(--transition);
}
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

@media (max-width: 900px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  section, .p-hero, .cta-section, footer { padding-left: 20px; padding-right: 20px; }
  .p-hero { padding-top: 130px; }
  .grid-3, .grid-2, .stats, .split { grid-template-columns: 1fr; }
  .split { gap: 40px; }
  .step { grid-template-columns: 1fr; gap: 8px; }
}


/* ===== BLOCOS DE CONTEÚDO PROFUNDO ===== */

/* faixa de destaques do hero */
.trust {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; margin-top: 54px;
}
.trust-item { background: var(--bg2); padding: 24px 24px; }
.trust-val { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 800; color: var(--white); line-height: 1.25; }
.trust-lbl { font-size: 13px; color: var(--text2); margin-top: 6px; line-height: 1.55; }

/* grid de entregas com descrição longa */
.incluso { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 48px; }
.inc {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px; transition: border-color var(--transition), transform var(--transition);
}
.inc:hover { border-color: var(--border2); transform: translateY(-3px); }
.inc-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.inc-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--brand-light); background: rgba(95,121,234,0.12);
  border: 1px solid rgba(95,121,234,0.22); padding: 4px 10px; border-radius: 100px; white-space: nowrap;
}
.inc h3 { font-size: 19px; font-weight: 700; color: var(--white); }
.inc p { font-size: 14.5px; color: var(--text2); line-height: 1.75; }

/* canais */
.canais { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-top: 48px; }
.canal { background: var(--bg2); padding: 32px; }
.canal-kicker { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text3); margin-bottom: 10px; }
.canal h3 { font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.canal p { font-size: 14.5px; color: var(--text2); line-height: 1.7; margin-bottom: 18px; }
.canal ul { list-style: none; display: grid; gap: 9px; }
.canal li { display: grid; grid-template-columns: 16px 1fr; gap: 10px; font-size: 14px; color: var(--text2); line-height: 1.6; }
.canal li svg { margin-top: 4px; }

/* conteúdo longo SEO */
.longform { display: grid; gap: 20px; margin-top: 48px; }
.lf { border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg2); padding: 34px; display: grid; grid-template-columns: 70px 1fr; gap: 24px; }
.lf-num { font-family: 'Sora', sans-serif; font-size: 34px; font-weight: 800; color: rgba(95,121,234,0.3); line-height: 1; }
.lf h3 { font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 14px; }
.lf p { font-size: 15.5px; color: var(--text2); line-height: 1.85; }
.lf p + p { margin-top: 14px; }

/* bloco de destaque em linha */
.pullout {
  margin-top: 44px; padding: 30px 34px;
  border: 1px solid rgba(95,121,234,0.3); background: rgba(95,121,234,0.07);
  border-radius: var(--radius);
}
.pullout p { font-family: 'Sora', sans-serif; font-size: 19px; font-weight: 600; color: var(--white); line-height: 1.55; }
.pullout span { color: var(--brand-light); }

@media (max-width: 900px) {
  .trust, .incluso, .canais { grid-template-columns: 1fr; }
  .lf { grid-template-columns: 1fr; gap: 10px; padding: 26px; }
}


/* faixa de avaliação no topo do hero */
.rating-bar {
  display: inline-flex; align-items: center; gap: 16px;
  background: var(--bg2); border: 1px solid var(--border2);
  border-radius: 100px; padding: 9px 22px; margin-bottom: 24px;
}
.rating-stars { display: inline-flex; align-items: center; gap: 3px; }
.rating-stars svg { display: block; }
.rating-score { font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 700; color: var(--white); }
.rating-sep { width: 1px; height: 18px; background: var(--border2); }
.rating-years { font-size: 14px; color: var(--text2); }
.rating-years strong { color: var(--white); font-weight: 700; }
@media (max-width: 600px) {
  .rating-bar { gap: 12px; padding: 8px 16px; }
  .rating-years { font-size: 13px; }
}


/* botão WhatsApp destacado */
.btn-wa {
  display: inline-flex; align-items: center; gap: 16px;
  background: #22c55e; color: var(--white);
  padding: 14px 16px 14px 20px; border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition);
}
.btn-wa:hover { background: #1ead51; color: var(--white); transform: translateY(-2px); }
.btn-wa .wa-ico { width: 30px; height: 30px; fill: #fff; flex: none; }
.btn-wa-txt { display: grid; gap: 1px; }
.btn-wa-top { font-family: 'Sora', sans-serif; font-size: 19px; font-weight: 700; line-height: 1.2; }
.btn-wa-sub { font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.88); line-height: 1.3; }
.btn-wa-arrow {
  width: 38px; height: 38px; border-radius: 50%; flex: none;
  background: rgba(255,255,255,0.22);
  display: flex; align-items: center; justify-content: center;
}
@media (max-width: 480px) {
  .btn-wa { gap: 12px; padding: 12px 14px; }
  .btn-wa-top { font-size: 17px; }
}


/* faixa final centralizada */
.band {
  padding: 96px 60px; text-align: center;
  background: var(--bg2); border-top: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.band-glow { position: absolute; top: -280px; left: 50%; transform: translateX(-50%); width: 900px; height: 640px; background: radial-gradient(circle, rgba(95,121,234,0.14) 0%, transparent 65%); pointer-events: none; }
.band-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.band-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--bg3); border: 1px solid var(--border2);
  color: var(--text); font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 8px 20px; border-radius: 100px; margin-bottom: 28px;
}
.band-pill .dot { width: 7px; height: 7px; background: var(--brand); border-radius: 50%; }
.band h2 { font-size: clamp(32px, 4.4vw, 54px); font-weight: 800; color: var(--white); line-height: 1.1; margin-bottom: 22px; }
.band h2 em { font-style: normal; color: var(--brand); display: block; }
.band p { font-size: 17px; color: var(--text2); line-height: 1.7; }
.band p strong { color: var(--white); font-weight: 600; }
.band .actions { justify-content: center; margin-top: 36px; }
@media (max-width: 900px) { .band { padding: 70px 20px; } }


/* bloco de CTA repetido por seção */
.cta-block { margin-top: 44px; display: grid; justify-items: start; gap: 12px; }
.cta-note { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; color: var(--text2); }
.cta-note .sq { width: 12px; height: 12px; background: #22c55e; border-radius: 3px; flex: none; }
.band .cta-block { justify-items: center; }


/* comparativo duas colunas */
.versus { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
.vs { border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg2); padding: 30px; }
.vs.good { border-color: rgba(95,121,234,0.35); background: rgba(95,121,234,0.06); }
.vs h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.vs ul { list-style: none; display: grid; gap: 14px; }
.vs li { display: grid; grid-template-columns: 20px 1fr; gap: 12px; font-size: 15px; color: var(--text2); line-height: 1.65; }
.vs .mk { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 15px; line-height: 1.5; }
.vs.bad .mk { color: #8a8a8a; }
.vs.good .mk { color: var(--brand); }
.vs.good li { color: var(--text); }

/* depoimentos */
.deps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.dep { border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg2); padding: 28px; display: grid; align-content: start; gap: 16px; }
.dep-stars { color: #f5b301; font-size: 15px; letter-spacing: 2px; }
.dep p { font-size: 14.5px; color: var(--text2); line-height: 1.75; }
.dep-who { font-size: 14px; color: var(--white); font-weight: 600; }
.dep-who span { display: block; font-weight: 400; font-size: 13px; color: var(--text3); }

/* info local */
.local { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-top: 44px; }
.local div { background: var(--bg2); padding: 26px 28px; }
.local dt { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text3); margin-bottom: 8px; }
.local dd { font-size: 15px; color: var(--text); line-height: 1.6; }

@media (max-width: 900px) { .versus, .deps, .local { grid-template-columns: 1fr; } }


/* selo de avaliação no hero */
.rating-pill {
  display: inline-flex; align-items: center; gap: 16px;
  background: var(--bg2); border: 1px solid var(--border2);
  border-radius: 100px; padding: 9px 22px; margin-bottom: 26px;
}
.rating-pill .stars { color: #f5b301; font-size: 15px; letter-spacing: 3px; }
.rating-pill .score { font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 700; color: var(--white); }
.rating-pill .sep { width: 1px; height: 20px; background: var(--border2); }
.rating-pill .years { font-size: 14.5px; color: var(--text2); }
.rating-pill .years strong { font-family: 'Sora', sans-serif; color: var(--white); font-weight: 700; }
@media (max-width: 480px) { .rating-pill { gap: 12px; padding: 8px 16px; } }


/* ===== RESPONSIVO ===== */

/* tablet */
@media (max-width: 1024px) {
  nav { padding: 14px 32px; }
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 13px; }
  .nav-cta { font-size: 13px; padding: 9px 16px; white-space: nowrap; }
  section, .cta-section, footer { padding-left: 32px; padding-right: 32px; }
  .p-hero { padding: 140px 32px 70px; }
  .band { padding: 80px 32px; }
  .trust { grid-template-columns: repeat(2, 1fr); }
  .canais, .versus, .deps, .local { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .deps, .local { grid-template-columns: 1fr; }
}

/* mobile */
@media (max-width: 640px) {
  nav { padding: 12px 18px; }
  .nav-logo { font-size: 18px; gap: 8px; }
  .nav-logo img { height: 28px; }
  .nav-cta { font-size: 12.5px; padding: 8px 14px; border-radius: 6px; }

  section, .cta-section, footer { padding-left: 18px; padding-right: 18px; }
  section, .cta-section { padding-top: 60px; padding-bottom: 60px; }
  .p-hero { padding: 120px 18px 56px; }
  .band { padding: 60px 18px; }

  .crumb { font-size: 12px; margin-bottom: 20px; }
  .p-title { font-size: clamp(28px, 8.5vw, 36px); }
  .p-sub { font-size: 16px; }
  .section-title { font-size: clamp(24px, 7vw, 30px); }
  .section-sub { font-size: 15.5px; }

  .rating-pill {
    gap: 10px; padding: 8px 14px; margin-bottom: 20px;
    flex-wrap: nowrap; max-width: 100%;
  }
  .rating-pill .stars { font-size: 12px; letter-spacing: 1.5px; }
  .rating-pill .score { font-size: 13px; }
  .rating-pill .years { font-size: 12.5px; white-space: nowrap; }
  .rating-pill .sep { height: 16px; }

  .actions { flex-direction: column; align-items: stretch !important; gap: 12px; }
  .btn-primary, .btn-secondary { justify-content: center; width: 100%; }

  .btn-wa { width: 100%; gap: 12px; padding: 12px 14px; }
  .btn-wa-top { font-size: 15.5px; }
  .btn-wa-sub { font-size: 12.5px; }
  .btn-wa .wa-ico { width: 26px; height: 26px; }
  .btn-wa-arrow { width: 32px; height: 32px; margin-left: auto; }
  .cta-block { justify-items: stretch; }
  .cta-note { font-size: 13px; align-items: flex-start; }
  .cta-note .sq { margin-top: 4px; }

  .trust, .canais, .versus, .deps, .local, .grid-3, .grid-2, .incluso, .strats { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: 6px; padding: 24px 20px; }
  .step-num { font-size: 24px; }
  .lf { grid-template-columns: 1fr; gap: 8px; padding: 24px 20px; }
  .pullout { padding: 22px 20px; }
  .pullout p { font-size: 16.5px; }
  .band h2 { font-size: clamp(26px, 8vw, 34px); }
  .band p { font-size: 15.5px; }
  .cta-title { font-size: clamp(24px, 7vw, 30px); }
  .cta-sub { font-size: 15.5px; }
  .faq article { padding: 20px; }
  .vs, .canal, .card, .inc, .strat, .dep { padding: 22px 20px; }

  .wa-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .wa-float svg { width: 27px; height: 27px; }
}

@media (max-width: 380px) {
  .nav-logo .wordmark { display: none; }
  .rating-pill .years { font-size: 12px; }
}


/* nav: nunca quebrar linha */
nav { gap: 20px; flex-wrap: nowrap; }
.nav-logo { flex: none; white-space: nowrap; }
.nav-links { flex-wrap: nowrap; }
.nav-links a { white-space: nowrap; }
.nav-cta { flex: none; white-space: nowrap; }

@media (max-width: 1180px) {
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 13px; }
}
@media (max-width: 1050px) {
  .nav-links { display: none; }
}


/* nav mobile: alinhar com a home */
@media (max-width: 900px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
}


/* nav mobile: botão visível à direita, em uma linha */
@media (max-width: 900px) {
  nav { padding: 12px 16px; gap: 12px; }
  .nav-cta { display: inline-flex; align-items: center; font-size: 12.5px; padding: 9px 14px; line-height: 1; white-space: nowrap; }
  .nav-logo { font-size: 18px; gap: 8px; }
  .nav-logo img { height: 26px; }
}
@media (max-width: 400px) {
  .nav-logo .wordmark { display: none; }
  .nav-cta { font-size: 12px; padding: 8px 12px; }
}


/* ===== NAV: espelho exato da home ===== */
nav {
  padding: 20px 60px;
  gap: 20px;
  flex-wrap: nowrap;
  transition: var(--transition);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px; flex: none;
  font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 800;
  letter-spacing: -0.03em; color: var(--white); white-space: nowrap;
}
.nav-logo img { height: 34px; width: auto; display: block; }
.nav-logo .wordmark > span { color: var(--brand); }
.nav-links { display: flex; gap: 28px; list-style: none; flex-wrap: nowrap; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text2); white-space: nowrap; transition: color var(--transition); }
.nav-links a:hover { color: var(--white); }
.nav-cta {
  flex: none; background: var(--brand); color: var(--white);
  font-size: 14px; font-weight: 600; padding: 10px 22px;
  border-radius: var(--radius-sm); white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: var(--brand-dark); color: var(--white); transform: translateY(-1px); }

@media (max-width: 1100px) {
  nav { padding: 16px 32px; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 12px; }
  .nav-cta { font-size: 12px; padding: 8px 14px; }
}
@media (max-width: 900px) {
  nav { padding: 12px 16px; gap: 12px; }
  .nav-links { display: none; }
  .nav-cta { display: inline-flex; align-items: center; font-size: 12.5px; padding: 9px 14px; line-height: 1; }
  .nav-logo { font-size: 18px; gap: 8px; }
  .nav-logo img { height: 26px; }
}
@media (max-width: 400px) {
  .nav-logo .wordmark { display: none; }
  .nav-cta { font-size: 12px; padding: 8px 12px; }
}
