/* ===== BASE ===== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', system-ui, sans-serif;
  color: #1E201D;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

.page { width: 100%; overflow-x: hidden; background: #fff; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid #ECEBE7;
}
.header__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.header__logo {
  height: 80px;
  width: auto;
  display: block;
}

.brand {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -.01em;
  color: #1E201D;
}
.brand--light { color: #fff; font-size: 1.35rem; }
.brand .dot { color: #EB7A21; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  border-radius: 11px;
  white-space: nowrap;
}
.btn--header {
  background: #EB7A21;
  color: #fff;
  font-size: .9rem;
  padding: 11px 18px;
  box-shadow: 0 4px 14px rgba(235, 122, 33, .28);
}
.btn--primary {
  background: #EB7A21;
  color: #fff;
  font-size: 1rem;
  gap: 10px;
  padding: 17px 26px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(235, 122, 33, .28);
}
.btn--invert {
  background: #fff;
  color: #C4640F;
  font-weight: 800;
  font-size: 1.08rem;
  gap: 12px;
  padding: 18px 32px;
  border-radius: 13px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .16);
}
.btn--footer {
  background: #EB7A21;
  color: #fff;
  font-size: 1rem;
  gap: 10px;
  padding: 14px 24px;
}

/* ===== SECTIONS ===== */
.section { padding: clamp(60px, 8vw, 108px) 20px; }
.section--muted {
  background: #F5F4F1;
  border-top: 1px solid #ECEBE7;
  border-bottom: 1px solid #ECEBE7;
}
.section__inner { margin: 0 auto; text-align: center; }
.w-900 { max-width: 900px; }
.w-940 { max-width: 940px; }
.w-760 { max-width: 760px; }
.w-700 { max-width: 700px; }
.w-680 { max-width: 680px; }

.eyebrow {
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #EB7A21;
}
.h2 {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(1.65rem, 3.4vw, 2.5rem);
  line-height: 1.14;
  letter-spacing: -.015em;
  margin: 12px auto 18px;
  text-wrap: balance;
}
.lead {
  font-size: 1.06rem;
  color: #6E7172;
  margin: 0 auto;
  max-width: 600px;
  text-wrap: pretty;
}
.strong-dark { color: #1E201D; font-weight: 700; }

/* ===== HERO ===== */
.hero {
  padding: clamp(8px, 1.5vw, 16px) 20px clamp(44px, 7vw, 80px);
  text-align: center;
}
.hero__inner { max-width: 700px; margin: 0 auto; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FCEFE2;
  color: #C4640F;
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #EB7A21;
  display: inline-block;
}
.hero__title {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -.02em;
  margin: 0 0 20px;
  text-wrap: balance;
}
.accent { color: #EB7A21; }
.hero__video-wrap { margin: 32px 0; }
.hero__video {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.hero__text {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: #818485;
  font-weight: 500;
  margin: 18px 0 36px;
  text-wrap: pretty;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ===== ALERTA ===== */
.alert__title {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(1.65rem, 3.4vw, 2.5rem);
  line-height: 1.14;
  letter-spacing: -.015em;
  margin: 12px auto 16px;
  max-width: 700px;
  text-wrap: balance;
}
.alert__lead {
  font-size: 1.06rem;
  color: #6E7172;
  margin: 0 auto 48px;
  max-width: 600px;
  text-wrap: pretty;
}

/* ===== CARDS GRID ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  text-align: center;
}
.card {
  background: #fff;
  border: 1px solid #E9E8E3;
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.card--svc { padding: 30px 24px; gap: 14px; }
.card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #FCEFE2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.card--svc .card__icon { width: 52px; height: 52px; border-radius: 14px; }
.card__title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  margin: 0 0 6px;
}
.card--svc .card__title { font-size: 1.06rem; letter-spacing: -.01em; }
.card__text { margin: 0; color: #818485; font-size: .96rem; }

/* ===== DOCUMENTO CERTO ===== */
.doc__head { max-width: 760px; margin: 0 auto; }
.doc__title {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(1.65rem, 3.4vw, 2.5rem);
  line-height: 1.14;
  letter-spacing: -.015em;
  margin: 12px auto 18px;
  text-wrap: balance;
}
.quote-card {
  max-width: 680px;
  margin: 36px auto 0;
  background: #FDF1E6;
  border: 1px solid #F4D9BF;
  border-radius: 20px;
  padding: clamp(28px, 5vw, 42px) clamp(24px, 5vw, 40px);
  text-align: center;
}
.quote-card__tag {
  display: inline-block;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #C4640F;
  background: #FCE3CB;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.quote-card__text {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.42;
  letter-spacing: -.01em;
  margin: 0 0 18px;
  color: #1E201D;
  text-wrap: pretty;
}
.quote-card__author {
  margin: 0;
  color: #818485;
  font-size: .95rem;
  font-weight: 600;
}

/* ===== SERVIÇOS ===== */
.svc__title {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(1.65rem, 3.4vw, 2.5rem);
  line-height: 1.14;
  letter-spacing: -.015em;
  margin: 12px auto 48px;
  max-width: 600px;
}

/* ===== CONFIANÇA ===== */
.trust__inner { max-width: 680px; margin: 0 auto; }
.trust__text {
  font-size: 1.06rem;
  color: #6E7172;
  margin: 0 auto 14px;
  text-wrap: pretty;
}
.trust__text:last-child { margin-bottom: 0; }

/* ===== CTA FINAL ===== */
.cta {
  background: #EB7A21;
  color: #fff;
  text-align: center;
}
.cta__inner { max-width: 700px; margin: 0 auto; padding: clamp(64px, 9vw, 112px) 20px; }
.cta__title {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 4.5vw, 3.1rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0 0 30px;
  text-wrap: balance;
}
.cta__note {
  margin: 22px 0 0;
  font-size: .98rem;
  color: rgba(255, 255, 255, .9);
  font-weight: 500;
}

/* ===== FOOTER ===== */
.footer { background: #1E201D; color: #C9CAC7; text-align: center; }
.footer__inner { max-width: 700px; margin: 0 auto; padding: 48px 20px; }
.footer__logo { height: 48px; width: auto; max-width: 180px; display: inline-block; object-fit: contain; }
.footer__tagline { margin: 10px 0 24px; font-size: .92rem; color: #8C8E8B; }
.footer__bar { border-top: 1px solid #34362F; }
.footer__copy { padding: 16px 20px; font-size: .8rem; color: #74766F; }

.icon { display: block; }
