/* ══════════════════════════════════════════
   FINGOLDEN — SITE INSTITUCIONAL
   Versão 1.0
══════════════════════════════════════════ */

/* ─── Reset & Base ──────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #bb811b;
  --gold-light: #d4972a;
  --gold-dark: #9a6914;
  --dark: #002300;
  --dark-card: #003000;
  --dark-border: rgba(187, 129, 27, 0.2);
  --white: #ffffff;
  --off-white: #f9f7f3;
  --gray-100: #f5f5f5;
  --gray-200: #e8e8e8;
  --gray-400: #9ca3af;
  --gray-600: #6b7280;
  --gray-800: #1f2937;
  --text: #1a1a1a;
  --text-muted: #555;
  --font-heading: 'Sora', system-ui, sans-serif;
  --font-body: 'Sora', system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --shadow-gold: 0 8px 32px rgba(187,129,27,0.25);
  --transition: 0.3s ease;
  --section-py: 96px;
}

html { scroll-behavior: auto; } /* controlled via JS easing */

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ─── Container ─────────────────────────── */
.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 4vw;
}

/* ─── Typography ────────────────────────── */
h1 { font-family: var(--font-heading); font-size: clamp(2.4rem, 5vw, 3.8rem); line-height: 1.15; font-weight: 700; }
h2 { font-family: var(--font-heading); font-size: clamp(1.8rem, 3.5vw, 2.8rem); line-height: 1.2; font-weight: 600; }
h3 { font-family: var(--font-heading); font-size: 1.35rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

.text-gold { color: var(--gold); }

/* ─── Buttons ───────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; border-radius: 8px; }

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 9999px;
  padding: 10px 10px 10px 22px;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Circle icon inside pill buttons */
.btn-icon {
  width: 30px;
  height: 30px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-icon i { color: var(--gold); }
.btn-gold:hover .btn-icon { transform: translateX(4px); }
.btn-full .btn-icon { margin-left: auto; }

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
}
.btn-whatsapp:hover {
  background: #1ebe5c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}

/* ─── Section Base ──────────────────────── */
.section { padding: var(--section-py) 0; }
.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; }
.section-dark .section-header p { color: rgba(255,255,255,0.65); }

.section-label {
  display: inline-block;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding: 5px 16px;
  border: none;
  border-radius: 50px;
  background: var(--white);
}
.section-label.light { background: var(--white); }

/* ════════════════════════════════════════
   HEADER
════════════════════════════════════════ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.07);
  transition: padding 0.4s ease, box-shadow 0.4s ease;
}
#header.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.09);
}

/* Layout: logo esquerda | nav centro absoluto | cta direita */
.header-inner {
  display: flex;
  align-items: center;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 1;
}
.logo-img {
  height: 48px;
  width: auto;
  display: block;
  transition: transform 0.35s ease;
}
.logo:hover .logo-img { transform: scale(1.04); }

/* Nav centralizado absolutamente */
nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
nav ul {
  display: flex;
  gap: 4px;
  align-items: center;
}
nav a {
  position: relative;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.25s ease, background 0.25s ease;
}
nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
nav a:hover { color: var(--gold); }
nav a:hover::after { transform: scaleX(1); }

/* Login Link */
.header-login-link {
  margin-left: auto;
  margin-right: 24px;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 500;
  z-index: 1;
  transition: color 0.25s ease;
}
.header-login-link:hover {
  color: var(--gold);
}

/* CTA pill */
.header-cta {
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 9999px;
  padding: 8px 8px 8px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  z-index: 1;
  transition: background 0.25s ease, transform 0.25s ease;
}
.header-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.header-cta-icon {
  width: 30px;
  height: 30px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.78rem;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.header-cta:hover .header-cta-icon {
  transform: translateX(3px);
}

/* Menu hambúrguer */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  z-index: 1;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 2px;
}

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  background: var(--off-white);
  padding: 100px 0 40px;
}

.hero-inner-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 20px;
  align-items: stretch;
  width: 100%;
}

/* ── Left Box ── */
.hero-content-box {
  background: linear-gradient(160deg, #001a00 0%, #003800 100%);
  border-radius: 28px;
  padding: 64px 56px 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px dashed rgba(187,129,27,0.5);
  color: rgba(255,255,255,0.85);
  padding: 7px 14px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 0;
}
.hero-badge i { color: var(--gold); font-size: 0.8rem; }

.hero-content-box h1 {
  color: var(--white);
  font-weight: 400;
  font-size: clamp(2.6rem, 3.8vw, 4rem);
  line-height: 1.08;
  margin: 36px 0 0;
  flex: 1;
}

.hero-highlight {
  font-weight: 700;
  color: var(--white);
}

.hero-bottom-area {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
  margin: 40px 0 36px;
}

/* Arrow icon — outline style, like Bexon */
.hero-arrow {
  width: 56px;
  height: 56px;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.hero-desc {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.7;
}

.hero-actions { margin-top: auto; }
.hero-actions .btn-gold {
  border-radius: 10px;
  font-size: 0.95rem;
  padding: 15px 32px;
}

/* ── Right Box: foto única + card com gap criado por pseudo-elements ── */
.hero-visual-box {
  position: relative;
  min-height: 580px;
}

.hero-image-placeholder {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background-size: cover;
  background-position: center top;
}

/* Wrapper — fundo body-bg + padding top/right cria o gap em volta do card.
   O border-top-right-radius dá a curva côncava da foto no canto interno. */
.hero-stats-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(45% + 28px);
  min-width: 280px;
  background: var(--off-white);
  padding: 28px 28px 0 0;
  border-top-right-radius: 28px;
}

/* Extremidade ESQUERDA da faixa superior — acima do wrapper, na sua borda esquerda */
.hero-stats-wrapper::before {
  content: '';
  position: absolute;
  top: -28px;
  left: 0;
  width: 28px;
  height: 28px;
  background: radial-gradient(circle at 100% 0%, transparent 27px, var(--off-white) 28px);
}

/* Extremidade INFERIOR da faixa direita — à direita do wrapper, na sua borda inferior */
.hero-stats-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -28px;
  width: 28px;
  height: 28px;
  background: radial-gradient(circle at 100% 0%, transparent 27px, var(--off-white) 28px);
}

.hero-stats-card {
  background: var(--white);
  border-radius: 28px;
  padding: 32px 36px;
}

.stats-avatars {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
}

.avatar-ph {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid var(--white);
  margin-left: -14px;
  background-size: cover;
  background-position: center;
}
.avatar-ph:first-child { margin-left: 0; }

.avatar-plus {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid var(--white);
  margin-left: -14px;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.stats-number {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 10px;
}

.hero-stats-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .hero-inner-grid { grid-template-columns: 1fr; }
  .hero-image-placeholder { min-height: 420px; }
  .hero-content-box { min-height: auto; padding: 48px 40px; }
}
@media (max-width: 600px) {
  .hero-content-box { padding: 36px 28px; }
  .hero-stats-card { min-width: 0; width: 80%; }
}

/* ════════════════════════════════════════
   NUMBERS
════════════════════════════════════════ */
.section-numbers {
  background: var(--dark);
  padding: 56px 0;
  border-top: 1px solid rgba(187,129,27,0.15);
  border-bottom: 1px solid rgba(187,129,27,0.15);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.number-item {
  text-align: center;
  padding: 32px 24px;
  border-right: 1px solid rgba(187,129,27,0.15);
}
.number-item:last-child { border-right: none; }

.number-value {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.number-label {
  display: block;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ════════════════════════════════════════
   SOBRE
════════════════════════════════════════ */
.sobre-section { background: var(--off-white); }

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre-visual {
  position: relative;
}

.sobre-img-frame {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--dark) 0%, #003d00 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.sobre-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 70%, rgba(187,129,27,0.15), transparent 60%);
}

.sobre-img-placeholder {
  width: 160px;
  opacity: 0.6;
}
.sobre-img-placeholder svg { width: 100%; height: auto; }

.sobre-highlight {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-lg);
  max-width: 280px;
  border: 1px solid var(--gray-200);
}
.sobre-highlight i {
  font-size: 1.8rem;
  color: var(--gold);
  flex-shrink: 0;
}
.sobre-highlight strong { display: block; font-size: 0.95rem; margin-bottom: 4px; }
.sobre-highlight span { font-size: 0.8rem; color: var(--text-muted); line-height: 1.4; }

.sobre-content .section-label { margin-bottom: 16px; }
.sobre-content h2 { margin-bottom: 20px; }
.sobre-content p { color: var(--text-muted); margin-bottom: 16px; }

.sobre-pillars {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--gray-100);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.pillar i {
  font-size: 1.2rem;
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}
.pillar strong { display: block; font-size: 0.95rem; margin-bottom: 4px; }
.pillar span { font-size: 0.85rem; color: var(--text-muted); }

/* ════════════════════════════════════════
   LEGAL TRUST BAND
════════════════════════════════════════ */
.section-legal-trust {
  background: var(--off-white);
  border-top: 1px solid rgba(187,129,27,0.2);
  border-bottom: 1px solid rgba(187,129,27,0.2);
  padding: 40px 0;
}

.legal-trust-grid {
  display: flex;
  align-items: center;
  gap: 32px;
}

.legal-trust-icon {
  font-size: 2.4rem;
  color: var(--gold);
  flex-shrink: 0;
}

.legal-trust-content { flex: 1; }
.legal-trust-content h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--dark);
}
.legal-trust-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.legal-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}
.legal-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid rgba(187,129,27,0.25);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
}
.legal-badge i { color: var(--gold); }

/* ════════════════════════════════════════
   SERVICES CAROUSEL
════════════════════════════════════════ */
.servicos-section .section-header {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
}
.servicos-section .section-header h2 {
  font-weight: 400;
}
.servicos-section .section-header h2 .text-gold {
  font-weight: 700;
}
.servicos-section .section-header p { display: none; }

.svc-carousel-outer {
  overflow: hidden;
  padding: 8px 4vw 20px;
}

.svc-carousel-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  width: max-content;
  will-change: transform;
  /* transform controlled by JS */
}

.svc-card {
  flex: 0 0 300px;
  height: 380px;
  border-radius: var(--radius-lg);
  background-color: #003c00;
  background-size: cover;
  background-position: center;
  border: none;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  user-select: none;
  transition: box-shadow 0.4s ease;
}

/* Solid cover — hides image completely by default */
.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #003c00;
  opacity: 1;
  transition: opacity 0.5s ease;
  z-index: 1;
}

/* Bottom gradient for text legibility — only on hover */
.svc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,10,0,0.35) 55%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2;
}

.svc-default {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 28px;
  z-index: 3;
  transition: opacity 0.3s ease, transform 0.35s ease;
}

.svc-icon-circle {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(187,129,27,0.12);
  border: 1px solid rgba(187,129,27,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gold);
  flex-shrink: 0;
}

.svc-name {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: auto;
  line-height: 1.35;
}

.svc-hover {
  position: absolute;
  inset: 0;
  z-index: 4;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s ease 0.08s, transform 0.35s ease 0.08s;
}

.svc-hover h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 12px;
  line-height: 1.35;
}

.svc-hover p {
  color: rgba(255,255,255,0.88);
  font-size: 0.85rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  transition: gap 0.2s ease;
}
.svc-link i { font-size: 0.72rem; }
.svc-link:hover { gap: 13px; }

.svc-card:hover::before { opacity: 0; }
.svc-card:hover::after  { opacity: 1; }
.svc-card:hover .svc-default {
  opacity: 0;
  transform: translateY(-8px);
}
.svc-card:hover .svc-hover {
  opacity: 1;
  transform: translateY(0);
}

/* Dots */
.svc-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
}

.svc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: width 0.3s ease, background 0.3s ease, border-radius 0.3s ease;
}

.svc-dot.active {
  width: 32px;
  border-radius: 4px;
  background: var(--gold);
}

@media (max-width: 1024px) {
  .svc-card { flex: 0 0 calc(47vw - 20px); height: 360px; }
}

@media (max-width: 640px) {
  .svc-card { flex: 0 0 82vw; height: 340px; }
  .svc-carousel-outer { padding: 8px 5vw 20px; }
}

/* ════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════ */
.process-section { background: var(--off-white); }

/* ── Header ── */
.process-header {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 64px;
}

.process-header-left { flex: 0 0 auto; max-width: 520px; }

.process-label {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.process-header-left h2 {
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark);
}
.process-header-left h2 .text-gold { font-weight: 700; }

.process-header-desc {
  flex: 1;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.process-header .btn { flex-shrink: 0; }

/* Remove process-label, now uses .section-label */

/* ── Cards ── */
.process-steps {
  display: flex;
  align-items: center;
  gap: 10px;
}

.process-card {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  align-self: stretch;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.process-card:hover {
  border-color: rgba(187,129,27,0.4);
  box-shadow: var(--shadow);
}

.process-num {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 5.5vw, 6rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 20px;
  background: linear-gradient(180deg, var(--gold) 0%, rgba(187,129,27,0.18) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.process-card h3 { color: var(--dark); font-size: 1.1rem; margin-bottom: 12px; }
.process-card p  { font-size: 0.87rem; color: var(--text-muted); line-height: 1.65; }

.process-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin: 0 -22px;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--off-white);
}

/* ════════════════════════════════════════
   DIFERENCIAIS
════════════════════════════════════════ */
.diferencial-section { padding: var(--section-py) 0; }

.diferencial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.diferencial-content .section-label { margin-bottom: 16px; }
.diferencial-content h2 { color: var(--white); margin-bottom: 20px; }
.diferencial-content p { color: rgba(255,255,255,0.65); margin-bottom: 32px; }

.diferencial-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.diferencial-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(187,129,27,0.15);
  border-radius: var(--radius);
  transition: var(--transition);
}
.diferencial-item:hover {
  border-color: rgba(187,129,27,0.35);
  background: rgba(255,255,255,0.06);
}

.dif-icon {
  width: 44px; height: 44px;
  background: rgba(187,129,27,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.diferencial-item h4 { color: var(--white); margin-bottom: 6px; font-size: 0.9rem; }
.diferencial-item p { color: rgba(255,255,255,0.55); font-size: 0.82rem; line-height: 1.6; }

/* ════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(187,129,27,0.3);
}

.testimonial-card.featured-testimonial {
  background: var(--dark);
  border-color: rgba(187,129,27,0.3);
  color: var(--white);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 0.9rem;
}

.testimonial-card > p {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 24px;
}
.featured-testimonial > p { color: rgba(255,255,255,0.75); }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-author strong { display: block; font-size: 0.92rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-muted); }
.featured-testimonial .testimonial-author span { color: rgba(255,255,255,0.5); }

/* ════════════════════════════════════════
   FAQ
════════════════════════════════════════ */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(187,129,27,0.15);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(187,129,27,0.4); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  gap: 16px;
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(255,255,255,0.04); }
.faq-item.open .faq-question { color: var(--gold); }

.faq-icon { flex-shrink: 0; font-size: 0.85rem; color: var(--gold); transition: transform var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}

/* ════════════════════════════════════════
   CTA SECTION
════════════════════════════════════════ */
.section-cta {
  background: linear-gradient(135deg, #bb811b 0%, #9a6914 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,255,255,0.08) 0%, transparent 60%);
}

.cta-content {
  position: relative;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-content h2 { color: var(--white); margin-bottom: 16px; }
.cta-content p { color: rgba(255,255,255,0.8); margin-bottom: 36px; font-size: 1.05rem; }

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-actions .btn-gold {
  background: var(--white);
  color: var(--gold-dark);
  border-color: var(--white);
}
.cta-actions .btn-gold:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ════════════════════════════════════════
   CONTATO
════════════════════════════════════════ */
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.contato-info .section-label { margin-bottom: 16px; }
.contato-info h2 { margin-bottom: 16px; }
.contato-info > p { color: var(--text-muted); margin-bottom: 40px; }

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-icon {
  width: 48px; height: 48px;
  background: rgba(187,129,27,0.1);
  border: 1px solid rgba(187,129,27,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 2px; }
.contact-item a { color: var(--dark); font-weight: 500; font-size: 0.95rem; transition: var(--transition); }
.contact-item a:hover { color: var(--gold); }

.contato-form-wrapper {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.contato-form { display: flex; flex-direction: column; gap: 20px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--gray-800); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(187,129,27,0.1);
}
.form-group textarea { resize: vertical; }
.form-group select { cursor: pointer; }

.form-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.form-disclaimer i { color: var(--gold); }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer {
  background: #001200;
  color: var(--white);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(187,129,27,0.15);
}

.footer-brand .logo { margin-bottom: 20px; }
.footer-brand .logo-name,
.footer-brand .logo-sub { color: var(--white); }
.footer-brand > p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(187,129,27,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.footer-links h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 0.9rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.87rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-contact h4 { color: var(--white); margin-bottom: 20px; font-size: 0.9rem; }
.footer-contact .btn { margin-bottom: 16px; font-size: 0.85rem; }
.footer-contact p { font-size: 0.87rem; }
.footer-contact a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ════════════════════════════════════════
   FLOATING ELEMENTS
════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px; height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  z-index: 900;
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37,211,102,0.5);
}

.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 32px;
  width: 44px; height: 44px;
  background: var(--dark);
  border: 1px solid rgba(187,129,27,0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  z-index: 900;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-to-top:hover {
  background: var(--gold);
  color: var(--white);
}

/* ════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Header transition */
#header {
  will-change: background, box-shadow, padding;
}

/* Button hover lift */
.btn {
  will-change: transform, box-shadow;
}

/* Card hover */
.svc-card,
.process-card,
.testimonial-card,
.diferencial-item {
  will-change: transform, box-shadow;
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }

  .sobre-grid,
  .diferencial-grid,
  .contato-grid { grid-template-columns: 1fr; gap: 48px; }

  .sobre-visual { max-width: 480px; margin: 0 auto; }
  .sobre-highlight { right: 0; }

  .svc-card { flex: 0 0 calc(44vw - 10px); }

  .process-header { flex-direction: column; align-items: flex-start; gap: 24px; margin-bottom: 40px; }
  .process-header-left { max-width: 100%; }
  .process-steps { flex-direction: column; max-width: 480px; margin: 0 auto; }
  .process-connector { display: none; }

  .diferencial-items { grid-template-columns: 1fr; }

  .testimonials-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; }

  nav, .header-cta, .header-login-link { display: none; }

  nav.open {
    display: block;
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    background: rgba(0,20,0,0.98);
    backdrop-filter: blur(12px);
    padding: 24px;
    border-bottom: 1px solid rgba(187,129,27,0.2);
  }
  nav.open ul { flex-direction: column; gap: 4px; }
  nav.open a { display: block; color: rgba(255,255,255,0.85); padding: 12px 16px; }

  .menu-toggle { display: flex; }

  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .number-item { border-right: none; border-bottom: 1px solid rgba(187,129,27,0.15); }
  .number-item:nth-child(odd) { border-right: 1px solid rgba(187,129,27,0.15); }
  .number-item:nth-last-child(-n+2) { border-bottom: none; }

  .hero-actions { flex-direction: column; }
  .hero-trust { gap: 12px; }
  .trust-divider { display: none; }

  .legal-trust-grid { flex-direction: column; text-align: center; }
  .legal-trust-badges { flex-direction: row; flex-wrap: wrap; justify-content: center; }

  .form-row { grid-template-columns: 1fr; }
  .contato-form-wrapper { padding: 24px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }

  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 1.5rem; }
  .back-to-top { bottom: 84px; right: 20px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { justify-content: center; }
}

/* ─── Legal Pages Style ─────────────────── */
.legal-page {
  padding-top: 140px; /* space for fixed header */
  background: var(--off-white);
  min-height: 80vh;
}
.legal-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 48px 80px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  margin-bottom: 96px;
}
.legal-header {
  margin-bottom: 40px;
  border-bottom: 1.5px solid rgba(187, 129, 27, 0.15);
  padding-bottom: 24px;
}
.legal-header h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--dark);
  margin-bottom: 12px;
}
.legal-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.legal-content h2 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-top: 36px;
  margin-bottom: 16px;
  font-weight: 600;
}
.legal-content h3 {
  font-size: 1.15rem;
  color: var(--dark);
  margin-top: 24px;
  margin-bottom: 12px;
  font-weight: 600;
}
.legal-content p, .legal-content li {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.legal-content ul {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 20px;
}
.legal-content li {
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .legal-page {
    padding-top: 100px;
  }
  .legal-container {
    padding: 32px 20px 60px;
    margin-bottom: 56px;
  }
}

