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

:root {
  --bg: #110f0d;
  --bg-alt: #161310;
  --bg-card: #1c1916;
  --gold: #c4a55a;
  --gold-vivid: #e2c36b;
  --gold-light: #f0dca0;
  --gold-dim: rgba(196,165,90,0.12);
  --gold-glow: rgba(196,165,90,0.08);
  --text: #ece8e0;
  --text-sec: #8a8279;
  --text-muted: #4a453e;
  --white-bg: #f5f2ed;
  --white-card: #ffffff;
  --white-text: #1a1714;
  --white-text-sec: #5a554e;
  --radius: 8px;
  --font-d: 'Cormorant Garamond', Georgia, serif;
  --font-b: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ========== HEADER ========== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(17,15,13,0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.header-inner { display: flex; align-items: center; gap: 32px; height: 68px; }
.logo { display: flex; flex-direction: column; }
.logo-text {
  font-family: var(--font-d); font-size: 1.15rem; font-weight: 700;
  letter-spacing: 3px; color: var(--gold);
}
.logo-sub {
  font-size: 0.52rem; font-weight: 700; letter-spacing: 5px;
  color: var(--text-sec); margin-top: -2px;
}
.nav { display: flex; gap: 28px; margin-left: auto; }
.nav a {
  font-size: 0.82rem; font-weight: 500; color: var(--text-sec);
  position: relative; transition: color 200ms;
}
.nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--gold); transition: width 300ms ease;
}
.nav a:hover { color: var(--gold-light); }
.nav a:hover::after { width: 100%; }

.btn-header {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 20px; background: var(--gold); color: var(--bg);
  border-radius: var(--radius); font-size: 0.8rem; font-weight: 700;
  transition: transform 200ms, box-shadow 200ms;
}
.btn-header:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(196,165,90,0.3); }

/* ========== HERO ========== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(196,165,90,0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 30%, rgba(196,165,90,0.04) 0%, transparent 40%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}
.hero-content {
  position: relative; z-index: 1; display: grid;
  grid-template-columns: 1fr 400px; gap: 64px; align-items: center;
  padding: 140px 0 100px;
}
.hero-badge {
  display: inline-block; padding: 7px 18px; background: var(--gold);
  border-radius: 4px; font-size: 0.68rem; font-weight: 800;
  letter-spacing: 2px; color: var(--bg); text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-d); font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 700; line-height: 1.08; margin-bottom: 20px;
}
.hero-accent { color: var(--gold-vivid); font-style: italic; }
.hero-sub {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem); color: var(--text-sec);
  line-height: 1.7; margin-bottom: 36px; max-width: 520px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero mini badges */
.hero-badges {
  display: flex; gap: 20px; margin-top: 28px; flex-wrap: wrap;
}
.hero-mini-badge {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--text-sec); font-weight: 600;
}
.hero-mini-badge svg { flex-shrink: 0; stroke: var(--gold); }
.hero-stars {
  color: var(--gold-vivid); font-size: 0.75rem; letter-spacing: 1px;
  margin-left: -4px;
}

.hero-photo-frame { position: relative; }
.hero-photo {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top;
  border-radius: var(--radius);
}
.hero-frame-accent {
  position: absolute; inset: 16px -16px -16px 16px;
  border: 2px solid var(--gold); border-radius: var(--radius);
  opacity: 0.15; z-index: -1;
}

/* ========== BUTTONS ========== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; background: var(--gold); color: var(--bg);
  border: none; border-radius: var(--radius); font-size: 0.88rem;
  font-weight: 700; cursor: pointer;
  transition: transform 200ms, box-shadow 200ms, background 200ms;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(196,165,90,0.35);
  background: var(--gold-vivid);
}
.btn-primary:active { transform: translateY(0); }
.btn-large { padding: 18px 36px; font-size: 0.95rem; }

.btn-secondary {
  display: inline-flex; align-items: center; padding: 14px 28px;
  background: transparent; color: var(--text-sec);
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius);
  font-size: 0.88rem; font-weight: 600;
  transition: border-color 200ms, color 200ms, transform 200ms;
}
.btn-secondary:hover {
  border-color: var(--gold); color: var(--gold-light);
  transform: translateY(-1px);
}

/* ========== BADGES (caixa unica moderna) ========== */
.badges {
  margin-top: -44px; position: relative; z-index: 2;
  padding-bottom: 80px;
}
.badges-box {
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-vivid) 60%, var(--gold-light) 100%);
  border-radius: 16px; padding: 36px 48px;
  box-shadow: 0 8px 32px rgba(196,165,90,0.2), 0 2px 8px rgba(0,0,0,0.15);
}
.badge-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; flex: 1; gap: 8px;
}
.badge-icon-circle {
  width: 48px; height: 48px;
  background: rgba(17,15,13,0.85); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 250ms, background 250ms;
}
.badge-item:hover .badge-icon-circle {
  transform: scale(1.1);
  background: rgba(17,15,13,0.95);
}
.badge-icon-circle svg { stroke: var(--gold-light); }
.badge-item strong {
  font-size: 0.88rem; font-weight: 800; color: var(--bg);
  line-height: 1.2;
}
.badge-item span {
  font-size: 0.72rem; color: rgba(17,15,13,0.55); font-weight: 600;
}
.badge-divider {
  width: 1px; height: 56px; background: rgba(17,15,13,0.12);
  flex-shrink: 0;
}

/* ========== SECTIONS ========== */
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

.section-badge {
  display: inline-block; padding: 5px 14px; background: var(--gold-dim);
  border-radius: 4px; font-size: 0.62rem; font-weight: 800;
  letter-spacing: 2.5px; color: var(--gold); text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-d); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.1; margin-bottom: 14px;
}
.section-sub { font-size: 1.05rem; color: var(--text-sec); max-width: 540px; line-height: 1.55; }

/* ========== AREAS (secao clara) ========== */
.areas {
  padding: 100px 0; background: var(--white-bg);
  color: var(--white-text);
}
.areas .section-badge { background: rgba(196,165,90,0.15); color: #8a7340; }
.areas .section-title { color: var(--white-text); }
.areas .section-sub { color: var(--white-text-sec); }

.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.area-card {
  padding: 36px 30px; background: var(--white-card); border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  transition: transform 250ms, box-shadow 250ms;
}
.area-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.06);
}
.area-icon { color: var(--gold); margin-bottom: 18px; transition: transform 250ms; }
.area-card:hover .area-icon { transform: scale(1.15); }

.area-card h3 {
  font-family: var(--font-d); font-size: 1.35rem; font-weight: 700;
  margin-bottom: 12px; color: var(--white-text);
}
.area-card p {
  font-size: 0.88rem; color: var(--white-text-sec); line-height: 1.6; margin-bottom: 18px;
}
.area-link {
  font-size: 0.82rem; font-weight: 700; color: #8a7340;
  transition: color 200ms, letter-spacing 200ms;
}
.area-link:hover { color: var(--gold); letter-spacing: 1px; }

.areas-cta { text-align: center; margin-top: 48px; }
.areas-cta .btn-primary { background: var(--white-text); color: var(--white-bg); }
.areas-cta .btn-primary:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
  background: #2a2520;
}

/* ========== COMO FUNCIONA ========== */
.como-funciona { padding: 100px 0; background: var(--bg-alt); }

.steps-grid {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 16px; margin-bottom: 48px;
}
.step-card {
  flex: 1; max-width: 280px; text-align: center;
  padding: 32px 24px; background: var(--bg-card); border-radius: var(--radius);
  transition: transform 250ms, box-shadow 250ms;
}
.step-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }

.step-num {
  width: 48px; height: 48px; margin: 0 auto 16px;
  background: var(--gold); color: var(--bg); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-size: 1.3rem; font-weight: 700;
}
.step-card h3 {
  font-family: var(--font-d); font-size: 1.3rem; font-weight: 700;
  margin-bottom: 10px;
}
.step-card p { font-size: 0.9rem; color: var(--text-sec); line-height: 1.55; }

.step-arrow {
  color: var(--gold); font-size: 1.5rem; margin-top: 48px; opacity: 0.3;
}
.steps-cta { text-align: center; }

/* ========== NUMEROS ========== */
.numeros {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-vivid) 50%, var(--gold-light) 100%);
}
.numeros-grid {
  display: flex; align-items: center; justify-content: center; gap: 48px;
}
.numero-item { text-align: center; }
.numero-value {
  display: block; font-family: var(--font-d); font-size: 3rem;
  font-weight: 700; color: var(--bg); line-height: 1;
}
.numero-value small { font-size: 1.4rem; }
.numero-label {
  font-size: 0.78rem; color: rgba(17,15,13,0.6); font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; display: block;
}
.numero-divider { width: 1px; height: 48px; background: rgba(17,15,13,0.15); }

/* ========== CTA SECTION ========== */
.cta-section {
  padding: 100px 0; background: var(--bg); text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -40%; left: 50%;
  transform: translateX(-50%); width: 700px; height: 700px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-title {
  font-family: var(--font-d); font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; line-height: 1.15; margin-bottom: 16px;
}
.cta-sub {
  font-size: 1rem; color: var(--text-sec); margin-bottom: 32px;
  max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.6;
}

/* ========== SOBRE ========== */
.sobre { padding: 100px 0; }
.sobre-grid {
  display: grid; grid-template-columns: 360px 1fr;
  gap: 56px; align-items: center;
}
.sobre-photo { position: relative; }
.sobre-img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top;
  border-radius: var(--radius);
}
.sobre-photo-accent {
  position: absolute; bottom: -14px; right: -14px;
  width: 140px; height: 140px; border: 2px solid var(--gold);
  border-radius: var(--radius); opacity: 0.15; z-index: -1;
}
.sobre-text {
  font-size: 0.95rem; color: var(--text-sec); line-height: 1.7; margin-bottom: 14px;
}

/* ========== DEPOIMENTOS ========== */
.depoimentos { padding: 100px 0; background: var(--bg-alt); }
.depoimentos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

.depoimento-card {
  padding: 32px 28px; background: var(--bg-card); border-radius: var(--radius);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  transition: transform 250ms, box-shadow 250ms;
  border-top: 3px solid var(--gold);
}
.depoimento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.depoimento-stars { color: var(--gold-vivid); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 16px; }
.depoimento-card p {
  font-size: 0.95rem; color: var(--text-sec); line-height: 1.65;
  font-style: italic; margin-bottom: 18px;
}
.depoimento-autor { font-size: 0.78rem; color: var(--text-muted); font-weight: 700; }

/* ========== FAQ ========== */
.faq { padding: 100px 0; }
.faq-list { max-width: 700px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0;
}
.faq-item summary {
  padding: 20px 0; font-size: 1rem; font-weight: 600;
  cursor: pointer; color: var(--text); list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  transition: color 200ms;
}
.faq-item summary:hover { color: var(--gold-light); }
.faq-item summary::after {
  content: '+'; font-size: 1.4rem; color: var(--gold); font-weight: 300;
  transition: transform 200ms;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 0 20px; font-size: 0.9rem; color: var(--text-sec);
  line-height: 1.6;
}

.faq-cta { text-align: center; margin-top: 48px; }
.faq-cta p { color: var(--text-sec); margin-bottom: 16px; font-size: 0.95rem; }

/* ========== FOOTER ========== */
.footer { padding: 48px 0; border-top: 1px solid rgba(255,255,255,0.04); }
.footer-inner {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.footer-desc { font-size: 0.8rem; color: var(--text-muted); margin-top: 12px; line-height: 1.5; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-link {
  font-size: 0.85rem; color: var(--text-sec);
  transition: color 200ms;
}
.footer-link:hover { color: var(--gold-light); }
.footer-legal p { font-size: 0.72rem; color: var(--text-muted); }

/* ========== WHATSAPP FLOAT ========== */
.wpp-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 60px; height: 60px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 200ms, box-shadow 200ms;
  animation: wpp-pulse 2s ease-in-out infinite;
}
.wpp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

@keyframes wpp-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0.1); }
}

/* ========== RESPONSIVE TABLET ========== */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 32px; }
  .hero-right { order: -1; max-width: 260px; margin: 0 auto; }
  .hero-title { text-align: center; }
  .hero-sub { text-align: center; margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-badge { display: block; text-align: center; }
  .hero-left { text-align: center; }
  .badges-box { flex-wrap: wrap; padding: 28px 24px; gap: 20px; }
  .badge-divider { width: 100%; height: 1px; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); margin: 0; font-size: 1.2rem; }
  .sobre-grid { grid-template-columns: 1fr; gap: 32px; }
  .sobre-photo { max-width: 280px; margin: 0 auto; }
  .depoimentos-grid { grid-template-columns: 1fr; }
  .numeros-grid { flex-wrap: wrap; gap: 24px; }
  .numero-divider { display: none; }
  .nav { display: none; }
}

/* ========== RESPONSIVE MOBILE ========== */
@media (max-width: 600px) {
  .container { padding: 0 16px; }

  /* Header mobile */
  .header-inner { height: 56px; }
  .logo-text { font-size: 0.95rem; letter-spacing: 2px; }
  .logo-sub { font-size: 0.48rem; letter-spacing: 3px; }
  .btn-header { padding: 7px 14px; font-size: 0.72rem; }
  .btn-header svg { display: none; }

  /* Hero mobile */
  .hero { min-height: auto; }
  .hero-content { padding: 90px 0 48px; }
  .hero-right { max-width: 200px; }
  .hero-title { font-size: 1.9rem; }
  .hero-sub { font-size: 0.9rem; }
  .hero-ctas { flex-direction: column; gap: 10px; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; padding: 14px 20px; }
  .btn-large { padding: 16px 24px; }

  /* Badges mobile */
  .badges { margin-top: -20px; padding-bottom: 40px; }
  .badges-box {
    flex-direction: column; padding: 24px 20px; gap: 16px;
    border-radius: 12px;
  }
  .badge-divider { width: 80%; height: 1px; margin: 0 auto; }
  .badge-item { flex-direction: row; text-align: left; gap: 12px; }
  .badge-icon-circle { width: 42px; height: 42px; flex-shrink: 0; }
  .badge-item strong { font-size: 0.82rem; }
  .badge-item span { font-size: 0.68rem; }

  /* Sections mobile */
  .areas, .como-funciona, .sobre, .depoimentos, .faq { padding: 64px 0; }
  .cta-section { padding: 64px 0; }
  .section-title { font-size: 1.6rem; }
  .section-sub { font-size: 0.9rem; }

  /* Areas mobile */
  .areas-grid { grid-template-columns: 1fr; gap: 10px; }
  .area-card { padding: 24px 20px; }
  .area-card h3 { font-size: 1.1rem; }
  .area-card p { font-size: 0.82rem; }

  /* Steps mobile */
  .step-card { max-width: 100%; padding: 24px 20px; }

  /* Numeros mobile */
  .numeros { padding: 48px 0; }
  .numeros-grid { gap: 20px; }
  .numero-value { font-size: 2.2rem; }
  .numero-value small { font-size: 1rem; }
  .numero-label { font-size: 0.68rem; }

  /* Sobre mobile */
  .sobre-grid { grid-template-columns: 1fr; }
  .sobre-photo { max-width: 240px; margin: 0 auto; }
  .sobre-text { font-size: 0.9rem; }
  .sobre-stats { flex-direction: column; gap: 16px; }

  /* Depoimentos mobile */
  .depoimentos-grid { grid-template-columns: 1fr; gap: 10px; }
  .depoimento-card { padding: 24px 20px; }
  .depoimento-card p { font-size: 0.85rem; }

  /* FAQ mobile */
  .faq-item summary { font-size: 0.9rem; padding: 16px 0; }
  .faq-item p { font-size: 0.85rem; }

  /* Footer mobile */
  .footer { padding: 36px 0; }
  .footer-inner { flex-direction: column; gap: 20px; }

  /* WhatsApp float mobile - maior pra touch */
  .wpp-float { width: 54px; height: 54px; bottom: 16px; right: 16px; }

  /* CTA title mobile */
  .cta-title { font-size: 1.5rem; }
  .cta-sub { font-size: 0.9rem; }
}
