/* ============================================================
   MARCARO — Site Principal (Dark Theme)
   Fundo escuro · Gold #d4a853 · Playfair Display + Plus Jakarta Sans
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:        #d4a853;
  --gold-mid:    #e0b96a;
  --gold-light:  #e8c97b;
  --gold-dark:   #a8832e;
  --gold-bg:     rgba(212,168,83,0.08);
  --gold-border: rgba(212,168,83,0.22);

  --bg:          #0a0a0b;
  --bg-alt:      #111113;
  --bg-card:     #18181b;
  --bg-section:  #0d0d0f;

  --border:      rgba(255,255,255,0.07);

  --text:        #fafafa;
  --text-muted:  #a1a1aa;
  --text-dim:    #52525b;

  --radius:      16px;
  --radius-sm:   10px;
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.3);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.4);
  --shadow-gold: 0 0 40px rgba(212,168,83,0.12);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;
  --header-h:     72px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── Utilities ─────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section { padding: 110px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1.5px;
  background: var(--gold); flex-shrink: 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700; line-height: 1.15;
  color: var(--text); margin-bottom: 18px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px; margin-bottom: 64px; line-height: 1.75;
}

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px;
  font-family: var(--font-body);
  font-size: 14px; font-weight: 700;
  border-radius: 10px; border: none; cursor: pointer;
  text-decoration: none; transition: all 0.22s; white-space: nowrap;
  background: var(--gold); color: #0a0a0b;
  box-shadow: 0 4px 20px rgba(212,168,83,0.35);
}
.btn:hover {
  background: var(--gold-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,168,83,0.5);
}
.btn-outline {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border); box-shadow: none;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--gold-border); color: var(--gold);
  transform: none; box-shadow: none;
}

/* ─── Fade-in ──────────────────────────────────────────────── */
.fade-in {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.22s; }
.delay-3 { transition-delay: 0.34s; }
.delay-4 { transition-delay: 0.46s; }
.delay-5 { transition-delay: 0.58s; }
.delay-6 { transition-delay: 0.70s; }

/* ═══════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════ */
#header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100; height: var(--header-h);
  background: rgba(10,10,11,0.6);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
#header.scrolled {
  background: rgba(10,10,11,0.92);
  border-color: var(--border);
  box-shadow: 0 1px 24px rgba(0,0,0,0.4);
}
#header .container { display: flex; align-items: center; height: 100%; gap: 32px; }

.logo { display: flex; align-items: center; gap: 8px; text-decoration: none; flex-shrink: 0; }
.logo img { height: 30px; width: auto; object-fit: contain; }
.logo-badge {
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 168, 83, 0.1);
  border: 1px solid rgba(212, 168, 83, 0.3);
  padding: 3px 10px; border-radius: 20px;
}

nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }
nav a:not(.btn) {
  font-size: 14px; font-weight: 500;
  color: var(--text-muted); text-decoration: none;
  padding: 8px 14px; border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
nav a:not(.btn):not(.nav-product-link):hover { color: var(--text); background: rgba(255,255,255,0.06); }
nav .btn { padding: 10px 22px; font-size: 13px; margin-left: 12px; }

.nav-product-link {
  font-size: 0.8rem !important;
  font-weight: 600;
  padding: 5px 14px !important;
  border: 1px solid rgba(212, 168, 83, 0.35);
  border-radius: 999px;
  color: var(--gold) !important;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.nav-product-link:hover {
  background: rgba(212, 168, 83, 0.08) !important;
  border-color: var(--gold) !important;
}

.menu-toggle {
  display: none; background: none; border: none;
  color: var(--text); cursor: pointer; padding: 8px; margin-left: auto;
}
.menu-toggle svg { width: 22px; height: 22px; }

.mobile-nav {
  display: none; position: fixed;
  top: var(--header-h); left: 0; right: 0; z-index: 99;
  background: rgba(10,10,11,0.97); backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  flex-direction: column; padding: 16px 28px 28px; gap: 2px;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: transform 0.25s, opacity 0.25s;
}
.mobile-nav.open { display: flex; transform: translateY(0); opacity: 1; pointer-events: all; }
.mobile-nav-link {
  font-size: 16px; font-weight: 500;
  color: var(--text-muted); text-decoration: none;
  padding: 13px 0; border-bottom: 1px solid var(--border);
}
.mobile-nav-link:hover { color: var(--text); }
.mobile-nav-btn { margin-top: 18px; width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════════════════
   HERO — diagonal escura
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh; display: flex; align-items: center;
  padding: calc(var(--header-h) + 64px) 0 96px;
  overflow: hidden; background: var(--bg);
}

/* Diagonal: metade direita levemente mais clara */
.hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 55%; height: 100%;
  background: linear-gradient(135deg, #111113 0%, #0d0d0f 70%);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}
/* Orb dourado */
.hero::after {
  content: '';
  position: absolute; top: 8%; right: 6%;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(212,168,83,0.1) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }

.hero-content {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}

.hero-text h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 700; line-height: 1.12; margin-bottom: 24px;
}
.hero-text h1 span {
  color: var(--gold); position: relative;
}
.hero-text h1 span::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}
.hero-text > p {
  font-size: 1.08rem; color: var(--text-muted);
  max-width: 460px; margin-bottom: 40px; line-height: 1.8;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-stats {
  display: flex; gap: 36px;
  padding-top: 36px; border-top: 1px solid var(--border);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 1.75rem; font-weight: 700; color: var(--gold); line-height: 1;
}
.stat-label {
  font-size: 11px; color: var(--text-dim);
  margin-top: 4px; text-transform: uppercase; letter-spacing: 0.08em;
}

/* ── Hero Visual ─────────────────────────────────────────── */
.hero-visual { position: relative; }

.hero-image {
  border-radius: var(--radius);
  overflow: hidden; aspect-ratio: 4/3;
  box-shadow: 0 48px 96px rgba(0,0,0,0.5), 0 0 60px rgba(212,168,83,0.08);
  border: 1px solid var(--border);
  position: relative;
}
.image-carousel { position: relative; width: 100%; height: 100%; }
.carousel-slide {
  position: absolute; inset: 0; margin: 0;
  animation: carousel-fade 9s infinite;
}
.carousel-slide:nth-child(2) { animation-delay: 3s; }
.carousel-slide:nth-child(3) { animation-delay: 6s; }
@keyframes carousel-fade {
  0%   { opacity: 0; } 5%  { opacity: 1; }
  30%  { opacity: 1; } 38% { opacity: 0; } 100% { opacity: 0; }
}
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

.floating-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 14px; padding: 14px 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.floating-card-1 { bottom: -20px; left: -32px; animation: float1 4s ease-in-out infinite; }
.floating-card-2 { top: 24px; right: -36px; animation: float2 4.5s ease-in-out infinite 0.5s; }
@keyframes float1 { 0%,100%{ transform:translateY(0) } 50%{ transform:translateY(-8px) } }
@keyframes float2 { 0%,100%{ transform:translateY(0) } 50%{ transform:translateY(8px) } }

.floating-card .icon {
  width: 36px; height: 36px;
  background: var(--gold-bg); border: 1px solid var(--gold-border);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 8px;
}
.floating-card .icon svg { width: 16px; height: 16px; }
.floating-card h4 { font-size: 13px; font-weight: 700; color: var(--text); line-height: 1; }
.floating-card p { font-size: 11px; color: var(--text-dim); margin-top: 3px; }

/* ═══════════════════════════════════════════════════════════
   RESULTADOS
   ═══════════════════════════════════════════════════════════ */
.resultados { background: var(--bg-alt); }

.stat-destaque {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; margin-bottom: 40px;
}

.stat-grande {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px 32px;
  box-shadow: var(--shadow-sm); text-align: center;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.stat-grande::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.stat-grande:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.3), var(--shadow-gold);
}

.numero-grande {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 12px;
}
.stat-grande > p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.fonte { font-size: 11px; color: var(--text-dim); font-style: italic; }

.stat-grande-expandido { text-align: left; }
.stat-metricas { display: flex; flex-direction: column; gap: 24px; }
.stat-metrica-item { display: flex; align-items: center; gap: 20px; }
.stat-metrica-item .numero-grande { font-size: 2.4rem; flex-shrink: 0; }
.stat-metrica-item p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0; }

.resumo-final {
  display: flex; align-items: flex-start; gap: 20px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm); padding: 28px 32px;
  box-shadow: var(--shadow-sm);
}
.resumo-icon {
  width: 44px; height: 44px;
  background: var(--gold-bg); border: 1px solid var(--gold-border);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800; color: var(--gold); flex-shrink: 0;
}
.resumo-texto h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 600; color: var(--text); margin-bottom: 8px;
}
.resumo-texto p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; }
.resumo-texto strong { color: var(--text); }

/* ═══════════════════════════════════════════════════════════
   COMO FUNCIONA
   ═══════════════════════════════════════════════════════════ */
.como-funciona { background: var(--bg-section); }

.processo-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-bottom: 32px;
}

.processo-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px 36px;
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.processo-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.processo-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.3), var(--shadow-gold);
}
.processo-card:hover::after { opacity: 1; }

.processo-header { margin-bottom: 20px; }
.processo-icon {
  width: 52px; height: 52px;
  background: var(--gold-bg); border: 1px solid var(--gold-border);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.processo-icon svg { width: 24px; height: 24px; }
.processo-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem; font-weight: 700; color: var(--text); margin-bottom: 12px;
}
.processo-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.processo-tempo {
  display: inline-block; font-size: 12px; font-weight: 700; color: var(--gold);
  background: var(--gold-bg); border: 1px solid var(--gold-border);
  border-radius: 20px; padding: 4px 14px;
}

.processo-cta {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 24px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  box-shadow: var(--shadow-sm);
}
.processo-cta-content { display: flex; align-items: center; gap: 16px; }
.processo-cta-icon {
  width: 44px; height: 44px;
  background: var(--gold-bg); border: 1px solid var(--gold-border);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800; color: var(--gold); flex-shrink: 0;
}
.processo-cta-text h4 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.processo-cta-text p { font-size: 0.875rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════
   DIFERENCIAIS
   ═══════════════════════════════════════════════════════════ */
.diferenciais { background: var(--bg-alt); }

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

.diferencial-list { display: flex; flex-direction: column; }
.diferencial-item {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 28px 0; border-bottom: 1px solid var(--border);
  transition: padding-left 0.3s;
}
.diferencial-item:last-child { border-bottom: none; }
.diferencial-item:hover { padding-left: 8px; }
.diferencial-number {
  font-family: var(--font-heading);
  font-size: 2rem; font-weight: 700; color: var(--gold);
  opacity: 0.35; line-height: 1; flex-shrink: 0; min-width: 48px;
}
.diferencial-item:hover .diferencial-number { opacity: 1; }
.diferencial-text h4 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.diferencial-text p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

.diferencial-image {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 32px 64px rgba(0,0,0,0.5), 0 0 40px rgba(212,168,83,0.07);
  border: 1px solid var(--border); position: relative;
  /* altura definida pelo conteúdo, sem aspect-ratio fixo */
}
.diferencial-image .image-carousel { height: 100%; min-height: 360px; }
/* Mostrar topo da imagem sem whitespace */
.diferencial-image .carousel-slide img {
  object-fit: cover;
  object-position: top;
}

/* ═══════════════════════════════════════════════════════════
   PORTFOLIO
   ═══════════════════════════════════════════════════════════ */
.portfolio { background: var(--bg-section); }

.portfolio-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 48px; gap: 24px;
}

.portfolio-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px; margin-bottom: 28px;
}

.portfolio-item {
  border-radius: var(--radius-sm); overflow: hidden;
  aspect-ratio: 4/3; position: relative;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.portfolio-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.5), var(--shadow-gold);
  border-color: var(--gold-border);
}
.portfolio-item-extra { display: block; }

.portfolio-link { display: block; width: 100%; height: 100%; text-decoration: none; cursor: default; }
.portfolio-link img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  display: block; transition: transform 0.5s;
}
.portfolio-item:hover .portfolio-link img { transform: scale(1.04); }

.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  display: flex; align-items: flex-end; padding: 20px;
  opacity: 0; transition: opacity 0.3s;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-info h4 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.portfolio-info p { font-size: 12px; color: rgba(255,255,255,0.65); margin-bottom: 8px; }
.portfolio-type {
  font-size: 11px; font-weight: 700; color: var(--gold);
  background: rgba(212,168,83,0.15); border: 1px solid rgba(212,168,83,0.3);
  border-radius: 20px; padding: 3px 10px;
}

.portfolio-toggle-mobile { display: none; text-align: center; margin-bottom: 28px; }

.portfolio-footer {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 32px 36px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  box-shadow: var(--shadow-sm);
}
.portfolio-footer p { font-size: 1.05rem; color: var(--text); line-height: 1.7; }
.portfolio-footer strong { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   DEPOIMENTOS
   ═══════════════════════════════════════════════════════════ */
.depoimentos { background: var(--bg-alt); }

.depoimentos-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; margin-bottom: 48px;
}

.depoimento-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.depoimento-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.depoimento-card:hover {
  border-color: var(--gold-border); transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.3), var(--shadow-gold);
}
.depoimento-card:hover::before { opacity: 1; }

.depoimento-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.depoimento-avatar {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.depoimento-avatar span { font-size: 14px; font-weight: 800; color: #0a0a0b; }
.depoimento-autor h4 { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.depoimento-autor p { font-size: 12px; color: var(--text-muted); margin-bottom: 3px; }
.depoimento-data { font-size: 11px; color: var(--text-dim); }

.depoimento-rating {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; color: var(--gold);
  background: var(--gold-bg); border: 1px solid var(--gold-border);
  border-radius: 20px; padding: 3px 12px; margin-bottom: 16px;
}
.depoimento-texto {
  font-size: 0.9rem; color: var(--text-muted);
  line-height: 1.72; margin-bottom: 20px; font-style: italic;
}
.depoimento-resultado {
  display: flex; align-items: center; gap: 10px;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.resultado-icon {
  width: 30px; height: 30px; background: var(--gold-bg);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.resultado-icon svg { width: 14px; height: 14px; }
.depoimento-resultado span { font-size: 12px; font-weight: 600; color: var(--text-muted); }

.depoimentos-cta { text-align: center; }
.depoimentos-cta p { font-size: 1rem; color: var(--text-muted); margin-bottom: 16px; }

/* ═══════════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════════ */
#planos { background: var(--bg-section); }

.pricing-content {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 36px; align-items: start;
}

.pricing-card {
  background: linear-gradient(160deg, rgba(212,168,83,0.06) 0%, var(--bg-card) 50%);
  border: 1px solid rgba(212,168,83,0.28);
  border-radius: var(--radius); padding: 44px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3), 0 0 40px rgba(212,168,83,0.08);
  position: relative; overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.pricing-badge {
  display: inline-block; font-size: 10px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); background: var(--gold-bg); border: 1px solid var(--gold-border);
  border-radius: 20px; padding: 4px 14px; margin-bottom: 20px;
}

.pricing-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem; font-weight: 700; color: var(--text); margin-bottom: 8px;
}
.pricing-card > p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 28px; }

.price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.price-label { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); }
.price {
  font-family: var(--font-heading);
  font-size: 3rem; font-weight: 700; color: var(--gold); line-height: 1;
}
.price-period { font-size: 0.9rem; color: var(--text-dim); }

.setup-price {
  font-size: 13px; color: var(--text-muted);
  margin: 12px 0 28px; padding: 10px 14px;
  background: var(--gold-bg); border: 1px solid var(--gold-border);
  border-radius: 8px; line-height: 1.5;
}
.setup-price strong { color: var(--gold); }

.pricing-features {
  list-style: none; display: flex; flex-direction: column; gap: 11px;
  margin-bottom: 32px; padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.pricing-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: var(--text-muted);
}
.pricing-features li::before {
  content: '';
  width: 16px; height: 16px; flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4a853' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
}

.btn-pricing { width: 100%; justify-content: center; padding: 16px; font-size: 15px; }

.pricing-text { display: flex; flex-direction: column; gap: 20px; }

.guarantee {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 20px;
  box-shadow: var(--shadow-sm); transition: border-color 0.3s;
}
.guarantee:hover { border-color: var(--gold-border); }
.guarantee-icon { font-size: 24px; flex-shrink: 0; }
.guarantee-text h5 { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.guarantee-text p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; }

.setup-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 24px; box-shadow: var(--shadow-sm);
}
.setup-card h4 {
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.setup-card > p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 14px; line-height: 1.6; }
.setup-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.setup-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; color: var(--text-muted);
}
.setup-list li::before { content: '—'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

.enterprise-disclaimer {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 20px;
}
.disclaimer-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.disclaimer-icon { font-size: 20px; }
.disclaimer-header h5 { font-size: 0.9rem; font-weight: 700; color: var(--text); }
.enterprise-disclaimer > p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.btn-disclaimer {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: var(--gold);
  background: var(--gold-bg); border: 1px solid var(--gold-border);
  border-radius: 8px; padding: 10px 18px;
  text-decoration: none; transition: all 0.2s;
}
.btn-disclaimer:hover { background: rgba(212,168,83,0.15); }

/* ═══════════════════════════════════════════════════════════
   CTA SPOTLIGHT — fundo dourado, destaque total
   ═══════════════════════════════════════════════════════════ */
.cta-spotlight { background: var(--bg-alt); overflow: hidden; }

.cta-spotlight-box {
  background: linear-gradient(135deg, #c9952a 0%, #e8b84b 50%, #c9952a 100%);
  border-radius: 24px; padding: 36px 60px; text-align: center;
  position: relative; overflow: hidden;
  box-shadow: 0 0 32px 6px rgba(201,149,42,0.4), 0 0 64px 16px rgba(201,149,42,0.18);
}
/* Textura sutil de pontos escuros */
.cta-spotlight-box::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(0,0,0,0.06) 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none;
}
/* Brilho central */
.cta-spotlight-box::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255,255,255,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.cta-spotlight-icon {
  font-size: 48px; margin-bottom: 20px; display: block;
  position: relative; z-index: 1;
}

.cta-spotlight-box .section-label {
  position: relative; z-index: 1;
  color: rgba(0,0,0,0.6);
}
.cta-spotlight-box .section-label::before { background: rgba(0,0,0,0.4); }

.cta-spotlight-box h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700; color: #0a0a0b;
  margin: 16px 0; line-height: 1.2;
  position: relative; z-index: 1;
}
.cta-spotlight-box h2 span { color: rgba(0,0,0,0.55); font-style: italic; }

.cta-spotlight-box > p {
  font-size: 1rem; color: rgba(0,0,0,0.65);
  max-width: 520px; margin: 0 auto 44px;
  position: relative; z-index: 1;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

.btn-cta-primary {
  padding: 16px 42px; font-size: 15px;
  background: #0a0a0b; color: var(--gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}
.btn-cta-primary:hover {
  background: #1a1814; color: var(--gold-light);
  box-shadow: 0 8px 28px rgba(0,0,0,0.45);
}
.btn-cta-secondary {
  padding: 16px 42px; font-size: 15px;
  background: rgba(0,0,0,0.12);
  color: rgba(0,0,0,0.75);
  border: 1.5px solid rgba(0,0,0,0.2); box-shadow: none;
}
.btn-cta-secondary:hover {
  background: rgba(0,0,0,0.2); color: #0a0a0b;
  border-color: rgba(0,0,0,0.35); transform: none; box-shadow: none;
}

/* ═══════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════ */
.faq { background: var(--bg-section); }
.faq-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }

.faq-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 24px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item:hover { border-color: var(--gold-border); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.faq-question { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.faq-icon {
  width: 32px; height: 32px; background: var(--gold-bg);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.faq-icon svg { width: 14px; height: 14px; }
.faq-item h3 { font-size: 0.95rem; font-weight: 600; color: var(--text); }
.faq-answer { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; padding-left: 44px; }

/* ═══════════════════════════════════════════════════════════
   CTA FINAL
   ═══════════════════════════════════════════════════════════ */
.cta { background: var(--bg-alt); }
.cta-content { text-align: center; max-width: 900px; margin: 0 auto; }
.cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700; color: var(--text); margin: 16px 0; line-height: 1.15;
}
.cta-content h2 span { color: var(--gold); }
.cta-content > p { font-size: 1rem; color: var(--text-muted); margin-bottom: 36px; line-height: 1.7; }
.cta-content .cta-buttons { justify-content: center; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
footer {
  background: #050506;
  border-top: 1px solid var(--border); padding: 70px 0 0;
}
.footer-content {
  display: grid; grid-template-columns: 1fr auto;
  gap: 64px; margin-bottom: 52px;
}
.footer-brand { max-width: 320px; }
.footer-brand .logo { margin-bottom: 18px; display: inline-flex; }
.footer-brand p { font-size: 0.875rem; color: var(--text-dim); line-height: 1.7; }

.footer-links { display: flex; gap: 64px; }
.footer-col h4 {
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14px; color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; border-top: 1px solid var(--border);
}
.footer-bottom p { font-size: 13px; color: var(--text-dim); }
.social-links { display: flex; gap: 12px; }
.social-links a { text-decoration: none; font-size: 18px; opacity: 0.35; transition: opacity 0.2s; }
.social-links a:hover { opacity: 1; }

/* ═══════════════════════════════════════════════════════════
   MOBILE FLOAT BUTTON
   ═══════════════════════════════════════════════════════════ */
.btn-mobile-float {
  display: none;
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 56px; height: 56px;
  background: #25D366; color: #fff;
  border-radius: 16px; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s; text-decoration: none;
}
.btn-mobile-float:hover { transform: scale(1.05); box-shadow: 0 12px 32px rgba(37,211,102,0.55); }
.btn-mobile-float svg { width: 24px; height: 24px; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero::before { display: none; }
  .hero-visual { max-width: 520px; order: -1; } /* imagem acima do texto */
  .hero-text h1 { font-size: clamp(2.2rem, 6vw, 3.2rem); }
  .hero-stats { gap: 24px; }
  .floating-card { display: none; } /* sem balões no mobile/tablet */

  .stat-destaque { grid-template-columns: 1fr; }
  .stat-grande-expandido .stat-metricas { flex-direction: row; }
  .stat-metrica-item { flex: 1; }

  .processo-grid { grid-template-columns: 1fr; }
  .processo-cta { flex-direction: column; align-items: flex-start; }

  .diferenciais-content { grid-template-columns: 1fr; gap: 48px; }
  .diferencial-visual { max-width: 440px; }

  .portfolio-grid { grid-template-columns: repeat(2,1fr); }
  .depoimentos-grid { grid-template-columns: 1fr; }
  .pricing-content { grid-template-columns: 1fr; max-width: 600px; }
  .footer-content { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { flex-direction: column; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .section { padding: 72px 0; }
  nav { display: none; }
  .menu-toggle { display: flex; }
  .hero-visual { max-width: 100%; order: -1; }
  .hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .faq-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-item-extra { display: none; }
  .portfolio-item-extra.show { display: block; }
  .portfolio-toggle-mobile { display: block; }
  .portfolio-footer { flex-direction: column; text-align: center; }
  .cta-spotlight-box { padding: 52px 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .btn-mobile-float { display: flex; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-text h1 { font-size: 2rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-buttons .btn { justify-content: center; }
  .pricing-card { padding: 28px 22px; }
  .stat-grande-expandido .stat-metricas { flex-direction: column; }
}

/* ---- Dash Callout (cross-sell salões) ---- */
.dash-callout {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 780px;
  margin: 48px auto 0;
  padding: 24px 28px;
  border: 1px solid rgba(212, 168, 83, 0.25);
  border-radius: 14px;
  background: rgba(212, 168, 83, 0.05);
}
.dash-callout-icon { font-size: 2rem; flex-shrink: 0; line-height: 1; }
.dash-callout-body { flex: 1; }
.dash-callout-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin: 0 0 4px;
}
.dash-callout-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}
.dash-callout-btn {
  flex-shrink: 0;
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.dash-callout-btn:hover {
  background: var(--gold);
  color: #0a0a0b;
}
@media (max-width: 640px) {
  .dash-callout { flex-direction: column; text-align: center; align-items: center; }
  .dash-callout-btn { width: 100%; text-align: center; }
}
