:root {
  --bg: #0A0F1C;
  --bg-alt: #0E1424;
  --surface: #141D33;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(79, 163, 227, 0.4);
  --ink-primary: #FFFFFF;
  --ink-secondary: #B9C0CE;
  --ink-secondary-alt: #D4D0C9;
  --ink-muted: #8891A3;
  --accent: #166FA5;
  --accent-hover: #2E8EEB;
  --highlight: #4FA3E3;
  --star: #E29343;
  --font-display: 'Lora', Georgia, serif;
  --font-body: 'Public Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink-secondary-alt);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--font-display);
  margin: 0;
  color: var(--ink-primary);
}

a { color: var(--highlight); }
a:hover { color: #7ebdf0; }

img { max-width: 100%; display: block; }

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  color: var(--highlight);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(24px, 3.6vw, 31px);
  font-weight: 600;
  letter-spacing: -0.01em;
  text-align: center;
  margin-bottom: 52px;
}

.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
  font-family: var(--font-body);
}
.cta-btn:hover { background: var(--accent-hover); color: #fff; transform: translateY(-1px); }

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(10, 15, 28, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .wrap {
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.site-header img { height: clamp(26px, 4vw, 32px); width: auto; }
.site-header .cta-btn { font-size: clamp(13px, 2.4vw, 14px); padding: 11px 20px; white-space: nowrap; }

/* HERO */
.hero {
  position: relative;
  width: 100%;
  padding: clamp(48px, 9vw, 88px) 24px;
}
.hero-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 6vw, 56px);
  align-items: center;
}
@media (min-width: 760px) {
  .hero-grid { grid-template-columns: repeat(2, 1fr); }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(79, 163, 227, 0.12);
  border: 1px solid rgba(79, 163, 227, 0.3);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--highlight);
  margin-bottom: 26px;
}
.hero h1 {
  font-size: clamp(30px, 4.8vw, 46px);
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.hero-lead {
  font-size: clamp(16px, 2vw, 18.5px);
  line-height: 1.65;
  color: var(--ink-secondary);
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-cta-row .cta-btn { font-size: 16px; padding: 17px 32px; box-shadow: 0 10px 28px -6px rgba(22, 111, 165, 0.45); }
.hero-cta-note { font-size: 13px; color: var(--ink-muted); font-weight: 600; }
.hero-facts {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hero-facts span.fact { font-size: 14px; color: var(--ink-secondary); font-weight: 600; }
.hero-facts .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--highlight); flex: none; }
.hero-image {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.6);
  width: 100%;
  max-width: 532px;
  aspect-ratio: 532 / 435;
  margin: 0 auto;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 640px) {
  .hero-copy, .hero-lead, .hero-badge { text-align: center; margin-left: auto; margin-right: auto; }
  .hero-cta-row { justify-content: center; text-align: center; }
}

/* GENERIC TEXT SECTION */
.text-section {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(56px, 9vw, 88px) 24px;
  text-align: center;
}
.text-section p {
  font-size: clamp(16.5px, 2vw, 19px);
  line-height: 1.75;
  color: var(--ink-secondary-alt);
}
.text-section p + p { margin-top: 22px; }
.text-section .cta-btn { margin-top: 36px; }
.text-section.narrow-pad { padding-top: 24px; }

.text-strong {
  font-size: clamp(18px, 2.4vw, 20px);
  line-height: 1.6;
  color: var(--ink-primary);
  font-weight: 600;
  margin-top: 26px;
}

.legal-body { text-align: left; }
@media (max-width: 640px) { .legal-body { text-align: center; } }

/* BAND SECTIONS (alt background) */
.band {
  background: var(--bg-alt);
  padding: clamp(56px, 9vw, 88px) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.band .wrap { padding-top: 0; padding-bottom: 0; }

/* CAROUSEL (shared: modalidades + depoimentos) */
.carousel-mask {
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 40px, #000 calc(100% - 40px), transparent);
  mask-image: linear-gradient(to right, transparent, #000 40px, #000 calc(100% - 40px), transparent);
}
.carousel-mask:active { cursor: grabbing; }
.carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
  padding: 0 24px;
  user-select: none;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--border-hover);
  box-shadow: 0 16px 32px -16px rgba(0, 0, 0, 0.5);
}
.card-title { font-weight: 700; color: var(--ink-primary); font-size: 16px; margin-bottom: 10px; }
.card-text { font-size: 14.5px; line-height: 1.65; color: #9BA3B5; margin: 0; }

.modal-card { flex: 0 0 clamp(260px, 78vw, 300px); }

/* COMO FUNCIONA (steps) */
.steps-wrap { max-width: 640px; margin: 0 auto; }
.step-row { display: grid; grid-template-columns: 38px 1fr; gap: 20px; }
.step-num-col { display: flex; flex-direction: column; align-items: center; }
.step-num {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; font-family: var(--font-display); flex: none;
}
.step-connector { width: 2px; flex: 1; min-height: 24px; background: rgba(79, 163, 227, 0.25); }
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 24px;
  margin-bottom: 26px;
}
.step-title { font-weight: 700; color: var(--ink-primary); font-size: 15.5px; margin-bottom: 8px; }
.step-text { font-size: 14px; line-height: 1.6; color: #9BA3B5; margin: 0; }

/* POR QUE CONFIAR */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(36px, 6vw, 52px);
  align-items: center;
  margin-bottom: 72px;
}
.trust-photo {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-width: 430px;
  margin: 0 auto;
  width: 100%;
}
.trust-photo img { width: 100%; height: 100%; object-fit: cover; }
.trust-copy h2 { font-size: clamp(24px, 3.6vw, 31px); margin-bottom: 22px; }
.trust-copy p { font-size: clamp(15.5px, 2vw, 16.5px); line-height: 1.75; color: var(--ink-secondary); margin-bottom: 18px; }
.trust-copy .address { font-size: 14.5px; color: var(--ink-muted); margin-bottom: 26px; }
@media (max-width: 640px) {
  .trust-copy { text-align: center; }
  .trust-copy .cta-btn { display: block; margin: 0 auto; width: max-content; }
}

.testi-heading { font-size: clamp(19px, 2.6vw, 23px); font-weight: 600; text-align: center; margin-bottom: 36px; }
.testi-card { flex: 0 0 clamp(280px, 82vw, 340px); display: flex; flex-direction: column; gap: 14px; }
.testi-stars { color: var(--star); font-size: 15px; letter-spacing: 2px; }
.testi-quote { font-size: 14.5px; line-height: 1.65; color: var(--ink-secondary-alt); margin: 0; font-style: italic; }
.testi-name { font-size: 13.5px; font-weight: 700; color: var(--ink-primary); margin-top: auto; }
.testi-location { font-size: 12.5px; color: var(--ink-muted); margin-top: -10px; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}
.faq-question span.q { font-size: 15px; font-weight: 700; color: var(--ink-primary); }
.faq-icon { font-size: 20px; color: var(--highlight); flex: none; line-height: 1; transition: transform .25s ease; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
  padding: 0 22px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-secondary);
}
.faq-answer p { margin: 0 0 22px; }
.faq-item.open .faq-answer { max-height: 400px; }

/* CTA FINAL */
.cta-final { padding: clamp(64px, 10vw, 96px) 24px; text-align: center; }
.cta-final-inner { max-width: 680px; margin: 0 auto; }
.cta-final h2 { font-size: clamp(26px, 4vw, 33px); font-weight: 600; letter-spacing: -0.01em; margin-bottom: 18px; }
.cta-final p { font-size: clamp(15px, 2vw, 16.5px); line-height: 1.7; color: var(--ink-secondary); margin-bottom: 34px; }
.cta-final .cta-btn { font-size: 17px; padding: 18px 36px; margin-bottom: 16px; }
.cta-final .note { font-size: 13px; color: var(--ink-muted); font-weight: 600; }

/* FOOTER */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 44px 24px;
}
.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo-block { display: flex; flex-direction: column; gap: 10px; min-width: 220px; }
.footer-logo-block img { height: 26px; width: auto; opacity: 0.95; }
.footer-logo-block p { font-size: 13px; color: #66708A; margin: 0; }
.footer-contact { font-size: 13.5px; color: #9BA3B5; line-height: 1.8; }
.footer-links { font-size: 13.5px; color: #9BA3B5; display: flex; flex-direction: column; gap: 6px; }
.footer-links a { color: #9BA3B5; text-decoration: none; }
.footer-links a:hover { color: var(--highlight); }

@media (max-width: 640px) {
  .footer-logo-block { align-items: center; text-align: center; margin: 0 auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
