/* === Endereço Virtual landing styles ===
   Brand:
     navy   #0B1B47
     blue   #1E88FF
     green  #25D366  (WhatsApp / primary CTA)
     yellow #FFD60A  (urgency / offer chips)
     bone   #F5F1EA  (warm off-white block)
*/

:root {
  --navy: #0B1B47;
  --navy-ink: #0a1740;
  --blue: #1E88FF;
  --blue-soft: #DCEBFF;
  --green: #25D366;
  --green-dark: #1FAE54;
  --yellow: #FFD60A;
  --bone: #F5F1EA;
  --paper: #FFFFFF;
  --ink: #0B1B47;
  --ink-2: #54607A;
  --line: #E6E2D9;
  --line-2: #D6DBE6;
  --radius: 10px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Helvetica Neue', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: 'Manrope', 'Helvetica Neue', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
  color: var(--navy);
}
h1 { font-size: clamp(34px, 5vw, 62px); line-height: 1.02; }
h2 { font-size: clamp(28px, 3.6vw, 44px); line-height: 1.05; }
h3 { font-size: clamp(20px, 1.8vw, 24px); line-height: 1.2; }
p  { margin: 0 0 12px 0; text-wrap: pretty; }

.wrap       { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.wrap-tight { max-width: 980px;  margin: 0 auto; padding: 0 24px; }

/* ---------- atoms ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 12px;
  background: var(--navy);
  color: var(--yellow);
  font-family: 'Manrope', sans-serif;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.eyebrow::before {
  content: ""; width: 6px; height: 6px;
  background: var(--yellow);
  display: inline-block;
  flex-shrink: 0;
}
.eyebrow .dot { display: none; }
.eyebrow.on-dark {
  background: var(--yellow);
  color: var(--navy);
}
.eyebrow.on-dark::before { background: var(--navy); }
@media (max-width: 560px) {
  .eyebrow {
    white-space: normal;
    line-height: 1.3;
  }
}

.section { padding: 88px 0; }
.section--dark { background: var(--navy); color: #fff; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--bone { background: var(--bone); }

.muted { color: var(--ink-2); }
.section--dark .muted { color: #B6C1D9; }

.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; margin-bottom: 8px;
}
.section-head-side { max-width: 380px; margin: 0; }
.section-head-cta { align-self: flex-end; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800; font-size: 16px;
  letter-spacing: 0.01em;
  border: 0; border-radius: var(--radius);
  background: var(--navy); color: #fff;
  transition: transform 0.06s ease, box-shadow 0.15s ease, background 0.15s ease;
  box-shadow: 0 2px 0 rgba(0,0,0,0.18);
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--sm { padding: 10px 14px; font-size: 14px; }

.btn--whats {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 0 var(--green-dark);
}
.btn--whats:hover { background: #1FBD5C; }
.btn--whats.btn--sm { box-shadow: 0 2px 0 var(--green-dark); }

.btn--xl { padding: 20px 32px; font-size: 18px; }

.btn--outline {
  background: transparent; color: var(--navy);
  box-shadow: inset 0 0 0 2px var(--navy);
}
.btn--outline:hover { background: var(--navy); color: #fff; }

.btn--ghost-light {
  background: rgba(255,255,255,0.08);
  color: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.25);
}
.btn--ghost-light:hover { background: rgba(255,255,255,0.16); }

/* chip */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--yellow); color: var(--navy);
}

/* ---------- TOPBAR ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.topbar-row {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  gap: 16px;
}
.topbar-logo { display: inline-flex; flex-shrink: 0; }
.topbar-nav {
  display: flex; gap: 26px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700; font-size: 14px;
}
.topbar-nav a { color: var(--navy); }
.topbar-nav a:hover { color: var(--blue); }
.topbar-actions { display: flex; gap: 10px; align-items: center; }
.topbar-mobile-toggle {
  display: none; background: none; border: 0; color: var(--navy);
  padding: 6px; cursor: pointer;
}

@media (max-width: 900px) {
  .topbar-row { height: 64px; }
  .topbar-nav { display: none; }
  .topbar-mobile-toggle { display: inline-flex; }
  .topbar .btn--whats { padding: 9px 12px; font-size: 14px; }
  .topbar .btn--whats svg { width: 14px; height: 14px; }
  .hide-mobile { display: none; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: var(--bone);
  overflow: hidden;
  padding: 72px 0 88px;
}
.hero::before {
  content: ""; position: absolute;
  right: -100px; bottom: -80px;
  width: 480px; height: 480px;
  background: repeating-linear-gradient(45deg, transparent 0 18px, rgba(11,27,71,0.05) 18px 22px);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 .hl { color: var(--blue); }
.hero h1 .hl-yellow {
  background: var(--yellow);
  padding: 0 8px;
  display: inline-block;
}
.hero-sub {
  font-size: 18px;
  color: var(--ink-2);
  max-width: 560px;
  margin-top: 18px;
}

.hero-promo {
  display: flex; align-items: center; gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.hero-promo .promo-line {
  display: inline-flex; align-items: baseline; gap: 8px;
  font-family: 'Manrope', sans-serif;
}
.promo-line .strike {
  text-decoration: line-through;
  color: var(--ink-2);
  font-weight: 700;
  font-size: 16px;
}
.promo-line .promo-by { font-size: 14px; color: var(--ink-2); font-weight: 700; }
.promo-line .promo-price {
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.promo-line .promo-price .cents { font-size: 18px; vertical-align: top; margin-left: 2px; }
.promo-line .promo-suffix { font-size: 16px; color: var(--ink-2); font-weight: 700; }

.hero-cta-row {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 28px;
}
.hero-microtrust {
  display: flex; flex-wrap: wrap; gap: 16px 24px;
  margin-top: 28px;
  font-size: 14px; color: var(--ink-2);
}
.hero-microtrust > div { display: flex; align-items: center; gap: 8px; }
.hero-microtrust b { color: var(--navy); font-weight: 800; }

.hero-photo {
  position: relative;
  aspect-ratio: 4/3;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 8px 8px 0 var(--navy);
  overflow: hidden;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-tag {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(11,27,71,0.92);
  color: #fff;
  padding: 8px 12px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex; align-items: center; gap: 6px;
}

@media (max-width: 900px) {
  .hero { padding: 40px 0 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-photo { box-shadow: 6px 6px 0 var(--navy); aspect-ratio: 16/10; }
  .hero-cta-row { flex-direction: column; }
  .hero-cta-row .btn { width: 100%; }
  .promo-line .promo-price { font-size: 36px; }
}

/* ---------- TRUST STRIP ---------- */
.trust-strip {
  background: var(--navy);
  color: #fff;
  padding: 28px 0;
  border-top: 4px solid var(--yellow);
}
.trust-strip-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  align-items: center;
}
.trust-strip-row--3 { grid-template-columns: repeat(3, 1fr); }
.trust-item { display: flex; gap: 14px; align-items: center; padding: 0 8px; }
.trust-item + .trust-item { border-left: 1px solid rgba(255,255,255,0.12); }
.trust-item .num {
  font-family: 'Manrope', sans-serif;
  font-weight: 800; font-size: 28px; line-height: 1;
  color: var(--yellow);
  letter-spacing: -0.02em;
}
.trust-item .lbl {
  font-size: 11px; color: #B6C1D9;
  text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700;
  margin-top: 4px;
}
.trust-item .num-row { display: flex; align-items: baseline; gap: 6px; }
@media (max-width: 900px) {
  .trust-strip-row, .trust-strip-row--3 { grid-template-columns: 1fr 1fr; gap: 18px 12px; }
  .trust-item + .trust-item { border-left: 0; }
  .trust-item .num { font-size: 24px; }
}
@media (max-width: 560px) {
  .trust-strip-row--3 { grid-template-columns: 1fr; }
}

/* ---------- BENEFITS ---------- */
.benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border: 1px solid var(--line);
  margin-top: 44px;
}
.benefit {
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.benefit:nth-child(3n) { border-right: 0; }
.benefit:nth-last-child(-n+3) { border-bottom: 0; }
.benefit .ic {
  width: 52px; height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--blue-soft); color: var(--blue);
  margin-bottom: 18px;
}
.benefit h3 { font-size: 20px; margin-bottom: 6px; }
.benefit p { color: var(--ink-2); font-size: 15px; margin: 0; }
@media (max-width: 900px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit { border-right: 0; }
  .benefit:nth-last-child(-n+3):not(:last-child) { border-bottom: 1px solid var(--line); }
}

/* ---------- AUDIENCE (now in carousel) ---------- */
.aud {
  background: #fff;
  border: 1px solid var(--line);
  padding: 22px;
  height: 100%;
}
.aud .tag {
  font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 12px;
  color: var(--blue); letter-spacing: 0.06em; text-transform: uppercase;
}
.aud h4 { font-family: 'Manrope', sans-serif; font-weight: 800; margin: 6px 0 4px; color: var(--navy); font-size: 18px; }
.aud p  { font-size: 14px; color: var(--ink-2); margin: 0; }

/* ---------- COMPARE ---------- */
.compare {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  margin-top: 44px;
  border: 2px solid var(--navy);
}
.compare > div { padding: 28px 32px; }
.compare .col-no { background: #fff; border-right: 1px solid var(--line); }
.compare .col-yes { background: var(--navy); color: #fff; }
.compare h4 {
  font-family: 'Manrope', sans-serif; font-weight: 800;
  font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase;
  margin: 0 0 18px;
}
.compare .col-no h4 { color: #C0392B; }
.compare .col-yes h4 { color: var(--yellow); }
.compare ul { list-style: none; padding: 0; margin: 0; }
.compare li { display: flex; gap: 10px; padding: 8px 0; font-size: 15px; line-height: 1.5; }
.compare .col-no li svg { color: #C0392B; flex-shrink: 0; margin-top: 3px; }
.compare .col-yes li svg { color: var(--green); flex-shrink: 0; margin-top: 3px; }
.compare .col-no li { color: #54607A; }
@media (max-width: 900px) {
  .compare { grid-template-columns: 1fr; }
  .compare .col-no { border-right: 0; border-bottom: 1px solid var(--line); }
  .compare > div { padding: 22px 20px; }
}

/* ---------- COMO FUNCIONA ---------- */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  margin-top: 44px; position: relative;
}
.step { position: relative; padding: 24px 24px 24px 0; }
.step .num {
  font-family: 'Manrope', sans-serif;
  font-weight: 800; font-size: 56px; line-height: 1;
  color: var(--blue);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.step h4 { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 18px; margin: 0 0 4px; color: var(--navy); }
.step p { font-size: 14px; color: var(--ink-2); margin: 0; }
.step:not(:last-child)::after {
  content: ""; position: absolute; right: 18px; top: 36px;
  width: 16px; height: 2px; background: var(--blue);
}
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr 1fr; gap: 12px 24px; }
  .step:not(:last-child)::after { display: none; }
  .step .num { font-size: 44px; }
}

/* ---------- PLANS ---------- */
.plans-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 44px;
}
.plan {
  background: #fff;
  border: 2px solid var(--navy);
  padding: 32px 28px 36px;
  position: relative;
  display: flex; flex-direction: column;
}
.plan--hl {
  background: var(--navy);
  color: #fff;
  transform: translateY(-12px);
}
.plan--hl h3 { color: #fff; }
.plan--hl .plan-price { color: var(--yellow); }
.plan--hl .plan-feat svg { color: var(--yellow); }
.plan--hl .plan-feat { color: rgba(255,255,255,0.92); }

.plan-tag {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--yellow); color: var(--navy);
  font-family: 'Manrope', sans-serif; font-weight: 800;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 8px 14px; white-space: nowrap;
}
.plan h3 { font-size: 22px; }
.plan-sub { font-size: 14px; color: var(--ink-2); margin-top: 4px; }
.plan--hl .plan-sub { color: rgba(255,255,255,0.7); }

.plan-price-row {
  margin: 18px 0 6px;
  display: flex; align-items: baseline; gap: 8px;
}
.plan-price {
  font-family: 'Manrope', sans-serif;
  font-weight: 800; font-size: 56px; line-height: 1;
  color: var(--navy);
  letter-spacing: -0.03em;
}
.plan-price .cents { font-size: 22px; vertical-align: top; margin-left: 2px; }
.plan-price-suffix { font-size: 14px; color: var(--ink-2); font-weight: 700; }
.plan--hl .plan-price-suffix { color: rgba(255,255,255,0.7); }
.plan-old {
  font-size: 13px;
  color: var(--ink-2);
  margin-bottom: 0;
}
.plan-old.promo-old { margin-top: 18px; }
.plan-old .strike { text-decoration: line-through; }
.plan--hl .plan-old { color: rgba(255,255,255,0.55); }

.plan-feats { list-style: none; padding: 0; margin: 18px 0 24px; flex: 1; }
.plan-feat { display: flex; gap: 10px; padding: 8px 0; font-size: 15px; line-height: 1.45; }
.plan-feat svg { flex-shrink: 0; margin-top: 3px; color: var(--green); }
.plan-feat.dis { color: #B0B6C3; }
.plan-feat.dis svg { color: #C3C9D3; }

.plan .btn { width: 100%; }

.plan-foot {
  display: flex; justify-content: center; gap: 28px;
  margin-top: 32px; flex-wrap: wrap; font-size: 14px;
}

@media (max-width: 900px) {
  .plans-grid { grid-template-columns: 1fr; gap: 24px; }
  .plan--hl { transform: none; margin-top: 8px; }
  .plan-foot { gap: 12px 20px; font-size: 13px; }
}

/* ---------- SEDE ---------- */
.sede-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  margin-top: 44px;
  align-items: stretch;
}
.sede-carousel-col { min-width: 0; }
.sede-carousel-col .carousel { margin-top: 0; }
.sede-photo {
  height: 460px;
  background: var(--bone);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.sede-photo img { width: 100%; height: 100%; object-fit: cover; }
.sede-photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #16306b 0%, #0B1B47 100%);
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.sede-photo-placeholder::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0 16px, rgba(255,255,255,0.04) 16px 18px);
}
.sede-photo-placeholder.ph-interior-2::before {
  background:
    repeating-linear-gradient(-45deg, transparent 0 18px, rgba(255,214,10,0.06) 18px 20px);
}
.sede-photo-placeholder-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.55);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sede-info-card {
  background: var(--navy);
  color: #fff;
  padding: 28px;
}
.sede-info-card h3 { color: #fff; margin-bottom: 14px; }
.sede-info-card .addr {
  font-family: 'Manrope', sans-serif; font-weight: 600;
  font-size: 16px; line-height: 1.5;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.95);
}
.sede-map-link { display: block; }
.sede-info-card .map {
  height: 160px;
  background: linear-gradient(180deg, #16306b 0%, #0B1B47 100%);
  position: relative;
  margin-bottom: 18px;
  overflow: hidden;
  cursor: pointer;
}
.sede-info-card .map::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 22px 22px;
}
.sede-info-card .map .pinmark {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -100%);
}
.sede-info-card .map-label {
  position: absolute; bottom: 8px; right: 10px;
  font-family: 'Manrope', sans-serif; font-size: 11px;
  color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.08em;
}
.sede-info-card .meta {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  font-size: 13px; margin-bottom: 18px; line-height: 1.5;
}
.sede-info-card .meta b {
  display: block; color: var(--yellow);
  font-family: 'Manrope', sans-serif;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 4px;
}

@media (max-width: 900px) {
  .sede-grid { grid-template-columns: 1fr; }
  .sede-photo { height: 280px; }
}

/* ---------- ANNUAL BANNER ---------- */
.annual-banner-wrap {
  padding: 0 0 88px;
}
.annual-banner {
  position: relative;
  background: var(--navy);
  color: #fff;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  padding: 56px 56px;
  overflow: hidden;
  border: 4px solid var(--yellow);
}
.annual-stripes {
  position: absolute;
  right: -100px; top: -60px;
  width: 380px; height: 380px;
  background: repeating-linear-gradient(45deg, transparent 0 16px, rgba(255,214,10,0.12) 16px 19px);
  pointer-events: none;
}
.annual-content {
  position: relative; z-index: 1;
}
.annual-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy);
  padding: 7px 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 18px;
}
.annual-h {
  color: #fff;
  font-size: clamp(28px, 3.8vw, 48px);
  line-height: 1.05;
  margin: 0 0 14px;
}
.annual-h-hl { color: var(--yellow); }
.annual-p {
  color: #B6C1D9;
  font-size: 17px;
  max-width: 520px;
  margin: 0;
}
.annual-card {
  position: relative; z-index: 1;
  background: #fff;
  color: var(--navy);
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 3px solid var(--yellow);
  align-self: center;
}
.annual-card-label {
  font-family: 'Manrope', sans-serif;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 8px;
}
.annual-card-price {
  display: flex; align-items: baseline; gap: 6px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.annual-card-price > span:first-child { font-size: 24px; }
.annual-card-num { font-size: 64px; letter-spacing: -0.03em; }
.annual-card-meta {
  margin-top: 10px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.45;
}
.annual-card-meta b { color: var(--navy); }
@media (max-width: 900px) {
  .annual-banner-wrap { padding: 0 0 56px; }
  .annual-banner {
    grid-template-columns: 1fr;
    padding: 36px 24px;
    gap: 28px;
  }
  .annual-card-num { font-size: 52px; }
}

/* ---------- BAIRROS ---------- */
.bairro {
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.bairro-img {
  height: 180px; overflow: hidden; background: var(--bone);
}
.bairro-img img { width: 100%; height: 100%; object-fit: cover; }
.bairro h4 {
  font-family: 'Manrope', sans-serif; font-weight: 800;
  font-size: 20px; margin: 18px 22px 6px;
}
.bairro p {
  font-size: 14px; color: var(--ink-2);
  margin: 0 22px 22px;
  line-height: 1.55;
}

/* ---------- CAROUSEL ---------- */
.carousel { margin-top: 36px; }
.carousel-track {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-item {
  scroll-snap-align: start;
  min-width: 0;
}
.carousel-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 16px;
  margin-top: 22px;
}
.carousel-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  border: 0;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease, opacity 0.15s ease;
}
.carousel-arrow:hover { background: #16306b; }
.carousel-arrow:disabled { opacity: 0.3; cursor: not-allowed; }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(11,27,71,0.18);
  cursor: pointer;
  padding: 0;
  transition: background 0.15s ease, transform 0.15s ease;
}
.carousel-dot.active { background: var(--navy); transform: scale(1.2); }

/* ---------- DEPOIMENTOS ---------- */
.testi-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.gmn-badge {
  display: inline-flex; align-items: center; gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 14px 18px;
}
.gmn-badge .g-logo {
  font-family: 'Manrope', sans-serif; font-weight: 800;
  font-size: 22px; letter-spacing: -0.02em; color: var(--navy);
}
.gmn-badge .g-logo .b { color: #4285F4; }
.gmn-badge .g-logo .r { color: #EA4335; }
.gmn-badge .g-logo .y { color: #FBBC05; }
.gmn-badge .g-logo .g { color: #34A853; }
.gmn-badge .rating { display: flex; align-items: baseline; gap: 6px; }
.gmn-badge .score { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 26px; color: var(--navy); line-height: 1; }
.gmn-badge .stars { display: flex; gap: 1px; margin-top: 2px; }
.gmn-badge .count { font-size: 12px; color: var(--ink-2); margin-top: 2px; }

.testi {
  background: #fff;
  border: 1px solid var(--line);
  padding: 22px;
  height: 100%;
  display: flex; flex-direction: column;
}
.testi-stars { display: flex; gap: 1px; margin-bottom: 10px; }
.testi-quote { font-size: 15px; line-height: 1.55; color: var(--navy); flex: 1; }
.testi-foot {
  display: flex; align-items: center; gap: 12px;
  margin-top: 18px; padding-top: 14px;
  border-top: 1px solid var(--line);
}
.testi-avatar {
  width: 40px; height: 40px;
  background: var(--blue-soft);
  color: var(--blue);
  font-family: 'Manrope', sans-serif; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  border-radius: 50%;
  flex-shrink: 0;
}
.testi-name { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 14px; color: var(--navy); }
.testi-meta { font-size: 12px; color: var(--ink-2); }
.testi .gmn-mini {
  margin-left: auto; font-size: 11px; color: var(--ink-2);
  display: flex; align-items: center; gap: 4px;
  font-family: 'Manrope', sans-serif;
}
.testi .gmn-mini span { color: var(--blue); font-weight: 800; }

/* RECLAME AQUI banner */
.ra-banner {
  margin-top: 48px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  background: #fff;
  border: 2px solid var(--navy);
  padding: 22px 28px;
}
.ra-logo {
  font-family: 'Manrope', sans-serif;
  font-weight: 800; color: #fff;
  background: #0EA5A4;
  padding: 10px 14px;
  font-size: 16px; letter-spacing: 0.02em;
}
.ra-logo i { font-style: normal; color: #FFD60A; }
.ra-text h4 { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 18px; color: var(--navy); margin: 0 0 4px; }
.ra-text p { font-size: 14px; color: var(--ink-2); margin: 0; }
.ra-link {
  font-family: 'Manrope', sans-serif;
  font-weight: 800; font-size: 14px;
  letter-spacing: 0.05em;
  color: #0EA5A4;
  border: 2px solid #0EA5A4;
  padding: 10px 16px;
  white-space: nowrap;
}
.ra-link:hover { background: #0EA5A4; color: #fff; }
@media (max-width: 760px) {
  .ra-banner { grid-template-columns: 1fr; text-align: left; gap: 14px; padding: 18px 20px; }
  .ra-link { text-align: center; }
}

/* ---------- FAQ ---------- */
.faq-list {
  margin-top: 36px;
  border-top: 1px solid var(--line);
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  background: transparent; border: 0;
  text-align: left;
  padding: 22px 0;
  font-family: 'Manrope', sans-serif;
  font-weight: 800; font-size: 17px;
  color: var(--navy);
}
.faq-q:hover { color: var(--blue); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.25s ease;
  font-size: 15px; line-height: 1.6;
  color: var(--ink-2);
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 22px; }
.faq-q .chev { transition: transform 0.2s ease; flex-shrink: 0; color: var(--blue); }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }

/* ---------- FINAL CTA ---------- */
.final-cta {
  background: var(--navy);
  color: #fff;
  padding: 80px 0;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ""; position: absolute;
  left: -100px; top: -50px;
  width: 320px; height: 320px;
  background: repeating-linear-gradient(45deg, transparent 0 14px, rgba(30,136,255,0.18) 14px 16px);
}
.final-cta::after {
  content: ""; position: absolute;
  right: -120px; bottom: -120px;
  width: 320px; height: 320px;
  background: repeating-linear-gradient(45deg, transparent 0 14px, rgba(255,214,10,0.16) 14px 16px);
}
.final-cta-inner {
  position: relative;
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: 48px; align-items: center;
}
.final-cta h2 { color: #fff; }
.final-cta p { color: #B6C1D9; font-size: 18px; max-width: 540px; }
.final-cta .actions { display: flex; flex-direction: column; gap: 12px; }
.final-cta .actions .btn { width: 100%; }
.final-cta-foot { color: #B6C1D9; font-size: 13px; margin-top: 4px; margin-bottom: 0; }
@media (max-width: 900px) {
  .final-cta-inner { grid-template-columns: 1fr; gap: 28px; }
  .final-cta { padding: 56px 0; }
}

/* ---------- FOOTER ---------- */
.footer {
  background: #060f2b;
  color: #fff;
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px;
}
.footer h5 {
  font-family: 'Manrope', sans-serif; font-weight: 800;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 14px;
}
.footer a, .footer p, .footer li { color: #B6C1D9; font-size: 14px; }
.footer a:hover { color: #fff; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-contact li { display: flex; gap: 8px; align-items: flex-start; line-height: 1.4; }
.footer-contact li svg { flex-shrink: 0; margin-top: 4px; }
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; gap: 20px;
  font-size: 12px; color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------- FLOATING WHATS ---------- */
.float-whats {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 60;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 18px 14px 14px;
  background: var(--green);
  color: #fff;
  font-family: 'Manrope', sans-serif; font-weight: 800;
  font-size: 15px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2), 0 2px 0 var(--green-dark);
  border-radius: 999px;
  text-decoration: none;
}
.float-whats:hover { transform: translateY(-2px); }
.float-whats .pulse {
  position: absolute; inset: 0;
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(37,211,102,0.55);
  animation: pulse 2s infinite;
  pointer-events: none;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
  70%  { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
@media (max-width: 760px) {
  .float-whats {
    right: 14px; bottom: 14px;
    width: 56px; height: 56px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
  .float-whats-label { display: none; }
}

/* ---------- MOBILE DRAWER ---------- */
.mobile-drawer {
  position: fixed; inset: 0;
  background: #fff;
  z-index: 100;
  padding: 24px;
  display: flex; flex-direction: column; gap: 6px;
  transform: translateX(100%);
  transition: transform 0.25s ease;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 12px;
}
.mobile-drawer .x {
  background: none; border: 0;
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.mobile-drawer a {
  font-family: 'Manrope', sans-serif; font-weight: 800;
  font-size: 22px; color: var(--navy);
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-drawer .btn {
  margin-top: 18px;
  width: 100%;
}

/* helpers */
.center { text-align: center; }
