:root {
  --cobalt: #0b56d0;
  --azure: #2b8cf0;
  --azure-soft: #e7f1ff;
  --sun: #ffd23f;
  --sun-deep: #f4b400;
  --ink: #0e1a2b;
  --slate: #4a5a70;
  --white: #ffffff;
  --paper: #f6f9ff;
  --radius: 28px;
  --radius-sm: 16px;
  --shadow: 0 18px 48px rgba(11, 86, 208, 0.16);
  --shadow-sm: 0 8px 24px rgba(14, 26, 43, 0.08);
  --maxw: 1180px;
  --font-head: "Gabarito", system-ui, sans-serif;
  --font-body: "Onest", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 0.4em;
}

p { margin: 0 0 1rem; }

a { color: inherit; text-decoration: none; }

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cobalt);
  background: var(--sun);
  padding: 7px 16px;
  border-radius: 999px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--sun); color: var(--ink); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(244, 180, 0, .4); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn-dark { background: var(--cobalt); color: var(--white); }
.btn-dark:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(11,86,208,.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--cobalt);
}
.brand img { width: 34px; height: 34px; }
.main-nav { display: flex; gap: 28px; }
.main-nav a {
  font-weight: 500;
  font-size: 0.96rem;
  color: var(--slate);
  transition: color .15s;
}
.main-nav a:hover { color: var(--cobalt); }
.header-tools { display: flex; align-items: center; gap: 14px; }

.lang-switcher { position: relative; }
.lang-current {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1.5px solid rgba(11,86,208,.18);
  background: var(--white);
  color: var(--cobalt);
  cursor: pointer;
}
.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11,86,208,.1);
  padding: 6px;
  min-width: 140px;
  display: none;
}
.lang-menu.open { display: block; }
.lang-menu button {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 9px 12px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--ink);
  cursor: pointer;
}
.lang-menu button:hover,
.lang-menu button[aria-current="true"] { background: var(--azure-soft); color: var(--cobalt); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--cobalt); margin: 5px 0; border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--cobalt) 0%, var(--azure) 100%);
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 520px; height: 520px;
  background: var(--sun);
  border-radius: 50%;
  top: -160px; right: -140px;
  opacity: .9;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding: 84px 0 96px;
}
.hero h1 { font-size: clamp(2.6rem, 5vw, 4rem); margin-bottom: .35em; }
.hero p.lead { font-size: 1.18rem; max-width: 30em; color: rgba(255,255,255,.92); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-trust { margin-top: 30px; display: flex; gap: 28px; flex-wrap: wrap; }
.hero-trust div { display: flex; flex-direction: column; }
.hero-trust strong { font-family: var(--font-head); font-size: 1.7rem; }
.hero-trust span { font-size: .86rem; color: rgba(255,255,255,.8); }

.hero-media { position: relative; display: flex; justify-content: center; }
.hero-circle {
  width: min(420px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 10px solid var(--white);
  box-shadow: var(--shadow);
}
.hero-circle img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  bottom: 18px; left: 0;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; gap: 12px;
  max-width: 230px;
}
.hero-badge .dot { width: 40px; height: 40px; border-radius: 50%; background: var(--sun); flex: none; display: grid; place-items: center; font-size: 1.2rem; }
.hero-badge small { color: var(--slate); display: block; font-size: .78rem; }
.hero-badge b { font-family: var(--font-head); }

/* ---------- Logos / reassurance strip ---------- */
.strip {
  background: var(--paper);
  padding: 28px 0;
  text-align: center;
}
.strip p { margin: 0; color: var(--slate); font-weight: 500; }

/* ---------- Section base ---------- */
.section { padding: 88px 0; }
.section-head { max-width: 40em; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); }
.section .sub { color: var(--slate); font-size: 1.08rem; }

/* ---------- Offerings grid ---------- */
.offerings { background: var(--white); }
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.offer-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 30px 28px;
  border: 1px solid rgba(11,86,208,.07);
  transition: transform .2s ease, box-shadow .2s ease;
}
.offer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.offer-icon {
  width: 54px; height: 54px;
  border-radius: 16px;
  background: var(--azure-soft);
  color: var(--cobalt);
  display: grid; place-items: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.offer-card h3 { font-size: 1.25rem; }
.offer-card p { color: var(--slate); margin: 0; font-size: .98rem; }

/* ---------- Split feature blocks ---------- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.feature.reverse .feature-media { order: -1; }
.feature-media { display: flex; justify-content: center; }
.rounded-photo {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.rounded-photo.circle { border-radius: 50%; aspect-ratio: 1; max-width: 420px; }
.rounded-photo img { width: 100%; height: 100%; object-fit: cover; }
.feature ul.checks { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; }
.feature ul.checks li { position: relative; padding-left: 34px; color: var(--slate); }
.feature ul.checks li::before {
  content: "";
  position: absolute; left: 0; top: 2px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--sun);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230e1a2b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 14px; background-repeat: no-repeat; background-position: center;
}

.colorblock { background: var(--azure-soft); }

/* ---------- Steps ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}
.step .num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--cobalt); color: var(--white);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.12rem; }
.step p { color: var(--slate); margin: 0; font-size: .95rem; }

/* ---------- Testimonials ---------- */
.quotes { background: var(--cobalt); color: var(--white); }
.quote-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.quote {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  padding: 30px;
}
.quote p { font-size: 1.08rem; }
.quote .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.quote .who .pic { width: 44px; height: 44px; border-radius: 50%; background: var(--sun); flex: none; }
.quote .who b { font-family: var(--font-head); }
.quote .who span { display: block; font-size: .82rem; color: rgba(255,255,255,.75); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(11,86,208,.12);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.12rem;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q::after { content: "+"; font-size: 1.5rem; color: var(--cobalt); transition: transform .2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; color: var(--slate); }
.faq-item.open .faq-a { max-height: 320px; }
.faq-a p { padding-bottom: 22px; margin: 0; }

/* ---------- Final CTA ---------- */
.cta-final {
  background: linear-gradient(140deg, var(--sun) 0%, var(--sun-deep) 100%);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 60px;
  text-align: center;
  max-width: var(--maxw);
  margin: 0 auto;
}
.cta-final h2 { font-size: clamp(2rem, 4vw, 3rem); }
.cta-final p { max-width: 36em; margin: 0 auto 28px; font-size: 1.1rem; }

/* ---------- Sticky CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%) translateY(140%);
  z-index: 60;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: 999px;
  padding: 10px 12px 10px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: transform .3s ease;
  max-width: calc(100% - 32px);
}
.sticky-cta.show { transform: translateX(-50%) translateY(0); }
.sticky-cta span { font-weight: 600; font-family: var(--font-head); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.78);
  padding: 56px 0 40px;
  font-size: .92rem;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; }
.footer-brand img { width: 30px; height: 30px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,.78); }
.footer-links a:hover { color: var(--sun); }
.footer-legal { border-top: 1px solid rgba(255,255,255,.12); padding-top: 26px; }
.footer-legal p { margin: 0 0 4px; line-height: 1.5; }

/* ---------- Policy pages ---------- */
.policy-hero {
  background: linear-gradient(160deg, var(--cobalt) 0%, var(--azure) 100%);
  color: var(--white);
  padding: 64px 0;
}
.policy-hero h1 { font-size: clamp(2.2rem, 4vw, 3rem); }
.policy-hero p { margin: 0; color: rgba(255,255,255,.88); }
.policy-body { padding: 64px 0; max-width: 820px; }
.policy-body h2 { font-size: 1.5rem; margin-top: 2em; color: var(--cobalt); }
.policy-body h2:first-child { margin-top: 0; }
.policy-body p, .policy-body li { color: var(--slate); }
.policy-body ul { padding-left: 20px; }
.back-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; color: var(--white); font-weight: 600; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 56px 0 70px; }
  .hero-media { order: -1; }
  .feature { grid-template-columns: 1fr; gap: 32px; }
  .feature.reverse .feature-media { order: 0; }
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-grid { grid-template-columns: 1fr; }
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .main-nav.open {
    display: flex;
    position: absolute;
    top: 64px; left: 0; right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 18px 24px;
    gap: 16px;
    box-shadow: var(--shadow-sm);
  }
}
@media (max-width: 560px) {
  .offer-grid, .steps-grid { grid-template-columns: 1fr; }
  .cta-final { padding: 40px 24px; }
  .section { padding: 60px 0; }
  .hero-trust { gap: 20px; }
}
