/* ===== TOKENS ===== */
:root {
  --radius: 0.625rem;
  --background: #ffffff;
  --foreground: #26271f;
  --card: #ffffff;
  --primary: #c9a227;
  --primary-foreground: #26271f;
  --secondary: #f4f4f1;
  --muted: #f4f4f1;
  --muted-foreground: #6d6e66;
  --accent: #f7f1dc;
  --border: #e6e6e0;
  --gold: #c9a227;
  --gold-deep: #a9861d;
  --gold-soft: #f7f1dc;
  --ink: #26271f;
  --ink-soft: #31322a;
  --gradient-gold: linear-gradient(135deg, #d3ab2c, #b08a1e);
  --shadow-elegant: 0 20px 60px -20px rgba(169, 134, 29, 0.25);
  --shadow-soft: 0 10px 40px -15px rgba(38, 39, 31, 0.12);
  --font-heading: "Bebas Neue", system-ui, sans-serif;
  --font-body: "Barlow", system-ui, sans-serif;
}

/* ===== RESET / BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--foreground);
  background: var(--background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(1140px, 100% - 2.5rem);
  margin-inline: auto;
}

/* ===== PLACEHOLDERS DE IMAGEM ===== */
.img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background:
    repeating-linear-gradient(45deg, rgba(201, 162, 39, 0.05) 0 12px, transparent 12px 24px),
    var(--muted);
  border: 2px dashed var(--gold);
  border-radius: var(--radius);
  color: var(--gold-deep);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  overflow: hidden;
}

.img-placeholder svg { width: 2.5rem; height: 2.5rem; opacity: 0.7; }

.img-placeholder--logo {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
}
.img-placeholder--logo svg { width: 1.4rem; height: 1.4rem; }

img.img-placeholder--logo {
  width: auto;
  object-fit: contain;
}

.footer__logo {
  box-sizing: content-box;
  height: 34px;
  width: auto;
  background: #ffffff;
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius);
}

.img-placeholder--hero { aspect-ratio: 4 / 3.4; width: 100%; }
.img-placeholder--step { aspect-ratio: 16 / 10; width: 100%; }

img.img-placeholder--hero,
img.img-placeholder--step {
  display: block;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ===== BOTÕES ===== */
.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.15;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-align: center;
}

.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--gradient-gold);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-elegant);
}
.btn--primary:hover { box-shadow: 0 24px 70px -20px rgba(169, 134, 29, 0.4); }

.btn--outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn--outline:hover { background: var(--ink); color: #fff; }

.btn--dark {
  background: var(--ink);
  color: #fff;
}
.btn--dark:hover { background: #000; }

.btn--sm { font-size: 0.95rem; padding: 0.55rem 1.2rem; flex-direction: row; }
.btn--lg { font-size: 1.3rem; padding: 1rem 2.4rem; }

.btn__sub {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.02em;
  opacity: 0.75;
}

/* ===== BADGE / LABELS ===== */
.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: var(--gold-soft);
  border: 1px solid var(--gold);
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.header.is-scrolled { border-bottom-color: var(--border); box-shadow: 0 4px 24px -12px rgba(38, 39, 31, 0.15); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 76px;
}

.header__brand { display: flex; align-items: center; gap: 0.7rem; }
.header__brand-text { font-size: 0.82rem; font-weight: 600; line-height: 1.25; color: var(--ink); }
.header__brand-text strong { display: block; font-size: 0.72rem; font-weight: 500; color: var(--muted-foreground); }

.header__nav { display: flex; align-items: center; gap: 2rem; }
.header__link { font-weight: 600; font-size: 0.95rem; color: var(--ink); position: relative; }
.header__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--gradient-gold);
  transition: width 0.25s ease;
}
.header__link:hover::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 0.8rem; }
.header__cta-mobile { display: none; }

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.header__burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease; }
.header__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger.is-open span:nth-child(2) { opacity: 0; }
.header__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  padding: 4.5rem 0 5.5rem;
  background:
    radial-gradient(ellipse 60% 50% at 85% 10%, rgba(201, 162, 39, 0.12), transparent 65%),
    var(--background);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 1.2rem 0 1.2rem;
}

.text-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle { font-size: 1.12rem; color: var(--muted-foreground); max-width: 34rem; }
.hero__subtitle strong { color: var(--ink); }

.hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin: 2rem 0; }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--border);
}
.trust-item { display: flex; align-items: center; gap: 0.6rem; }
.trust-item svg { width: 1.7rem; height: 1.7rem; color: var(--gold); flex-shrink: 0; }
.trust-item strong { display: block; font-size: 0.88rem; line-height: 1.2; }
.trust-item span { font-size: 0.76rem; color: var(--muted-foreground); }

.hero__media { position: relative; }

.float-card {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 0.7rem 1rem;
  line-height: 1.25;
  animation: float 5s ease-in-out infinite;
}
.float-card strong { display: block; font-size: 0.82rem; }
.float-card span { font-size: 0.72rem; color: var(--muted-foreground); }

.float-card--1 { top: 6%; left: -1.6rem; animation-delay: 0s; }
.float-card--2 { top: 22%; right: -1.4rem; animation-delay: 1.2s; }
.float-card--3 { bottom: 22%; left: -2rem; animation-delay: 2.2s; }
.float-card--4 { bottom: 5%; right: -1rem; animation-delay: 3.1s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* ===== SEÇÕES ===== */
.section { padding: 5.5rem 0; }
.section--alt { background: var(--secondary); }
.section--dark { background: var(--ink); color: #fff; }

.section__narrow { max-width: 46rem; text-align: center; }
.section__narrow .btn { margin-top: 1.6rem; }

.section__head { max-width: 46rem; margin: 0 auto 3rem; text-align: center; }

.section__label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-deep);
  margin-bottom: 0.7rem;
}
.section__label::before { content: "— "; color: var(--gold); }
.section__label--dark { color: var(--ink); }
.section__label--dark::before { color: var(--ink); }

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.section__text { color: var(--muted-foreground); margin-top: 1rem; }
.section__text strong { color: var(--ink); }

.section__cta { text-align: center; margin-top: 3rem; }

/* ===== SERVIÇOS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-elegant);
  border-color: var(--gold);
}

.service-card__icon {
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--gold-soft);
  color: var(--gold-deep);
  margin-bottom: 1.2rem;
}
.service-card__icon svg { width: 1.6rem; height: 1.6rem; }

.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.55rem; }
.service-card p { font-size: 0.92rem; color: var(--muted-foreground); }

/* ===== ETAPAS ===== */
.steps { display: flex; flex-direction: column; gap: 4.5rem; }

.step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.step--reverse .step__media { order: 2; }

.step__media { position: relative; }

.step__number {
  position: absolute;
  top: -1.8rem;
  right: -0.6rem;
  font-family: var(--font-heading);
  font-size: 6rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--gold);
  opacity: 0.55;
  pointer-events: none;
  user-select: none;
}

.step__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-deep);
  background: var(--gold-soft);
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  margin-bottom: 0.8rem;
}

.step__body h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.7rem; }
.step__body p { color: var(--muted-foreground); }

.step__list { margin-top: 1.2rem; display: grid; gap: 0.55rem; }
.step__list li { position: relative; padding-left: 1.6rem; font-size: 0.95rem; font-weight: 500; }
.step__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.42rem;
  width: 0.9rem; height: 0.9rem;
  border-radius: 50%;
  background: var(--gradient-gold);
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

/* ===== DIFERENCIAIS ===== */
.section--dark .section__title { color: #fff; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--ink-soft);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.feature:hover { border-color: var(--gold); transform: translateY(-4px); }
.feature svg { width: 1.3rem; height: 1.3rem; color: var(--gold); flex-shrink: 0; }

/* ===== RESULTADOS ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin-bottom: 3.5rem;
}

.stat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.4rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.stat__value {
  display: block;
  font-family: var(--font-heading);
  font-size: 3rem;
  line-height: 1;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat__label { display: block; margin-top: 0.5rem; font-weight: 600; font-size: 0.92rem; color: var(--muted-foreground); }

.chart {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.4rem 2rem 1.8rem;
  box-shadow: var(--shadow-soft);
}

.chart__bars {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.7rem;
  align-items: end;
  height: 220px;
}
.chart__col { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; height: 100%; justify-content: flex-end; }
.chart__col span { font-size: 0.75rem; font-weight: 600; color: var(--muted-foreground); }

.chart__bar {
  width: 100%;
  height: var(--h);
  min-height: 8px;
  border-radius: 6px 6px 0 0;
  background: var(--gradient-gold);
  transform-origin: bottom;
  transform: scaleY(0);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.chart.is-visible .chart__bar { transform: scaleY(1); }

.chart__caption { text-align: center; margin-top: 1.4rem; font-size: 0.9rem; color: var(--muted-foreground); }

/* ===== DEPOIMENTOS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.testimonial {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: 0.6rem; right: 1.4rem;
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.25;
}
.testimonial p { color: var(--muted-foreground); font-size: 0.98rem; flex: 1; }

.testimonial footer { display: flex; align-items: center; gap: 0.9rem; }
.testimonial__avatar {
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--primary-foreground);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial strong { display: block; font-size: 0.95rem; }
img.testimonial__avatar { object-fit: cover; flex-shrink: 0; }

.testimonial footer span:not(.testimonial__avatar) { font-size: 0.8rem; color: var(--muted-foreground); }

/* ===== CTA FINAL ===== */
.cta-final {
  background: var(--gradient-gold);
  padding: 5.5rem 0;
  color: var(--ink);
}
.cta-final__inner { text-align: center; max-width: 44rem; margin-inline: auto; }
.cta-final__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1rem;
}
.cta-final p { font-weight: 500; margin-bottom: 2rem; }

/* ===== FOOTER ===== */
.footer { background: var(--ink); color: #cfcfc8; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
}
.footer__col--brand p { margin-top: 1rem; font-size: 0.92rem; max-width: 20rem; }
.footer__col h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}
.footer__col a, .footer__col span { display: block; font-size: 0.92rem; margin-bottom: 0.5rem; }
.footer__col a:hover { color: var(--gold); }

.footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 1.3rem 0; }
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-size: 0.82rem; }
.footer__bottom a { color: var(--gold); font-weight: 600; }
.footer__bottom a:hover { text-decoration: underline; }

/* ===== WHATSAPP FLUTUANTE ===== */
.whatsapp-float {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 90;
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.55);
  transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 1.8rem; height: 1.8rem; }

/* ===== ANIMAÇÃO DE ENTRADA ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVO ===== */
@media (max-width: 1024px) {
  .services-grid, .features-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .hero__grid { gap: 3rem; }
}

@media (max-width: 860px) {
  .header__nav {
    position: fixed;
    inset: 76px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 20px 40px -20px rgba(38, 39, 31, 0.25);
    padding: 1rem 1.25rem 1.4rem;
    transform: translateY(-115%);
    transition: transform 0.3s ease;
  }
  .header__nav.is-open { transform: translateY(0); }
  .header__link { padding: 0.85rem 0.25rem; border-bottom: 1px solid var(--border); }
  .header__cta { display: none; }
  .header__cta-mobile { display: inline-flex; margin-top: 1rem; justify-content: center; }
  .header__burger { display: flex; }

  .hero { padding: 3rem 0 4rem; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { margin-top: 1rem; }
  .float-card--1 { left: 0.4rem; }
  .float-card--2 { right: 0.4rem; }
  .float-card--3 { left: 0.4rem; }
  .float-card--4 { right: 0.4rem; }

  .step, .step--reverse { grid-template-columns: 1fr; gap: 2rem; }
  .step--reverse .step__media { order: 0; }
  .step__number { font-size: 4.5rem; top: -1.4rem; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 560px) {
  .services-grid, .features-grid, .stats-grid { grid-template-columns: 1fr; }
  .hero__ctas .btn { width: 100%; }
  .chart__bars { gap: 0.35rem; height: 160px; }
  .section { padding: 4rem 0; }
}
