/* ============================================================
   MARCARO DASHBOARD — Landing Page
   Warm cream · Deep gold · Playfair Display + Plus Jakarta Sans
   ============================================================ */

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

:root {
  /* Paleta principal */
  --gold:        #b8892a;
  --gold-mid:    #cfa040;
  --gold-light:  #e8c97a;
  --gold-dark:   #8f6a1c;
  --gold-bg:     rgba(184,137,42,0.09);
  --gold-border: rgba(184,137,42,0.28);

  /* Backgrounds warm cream */
  --bg:          #f8f4ee;
  --bg-alt:      #ede8de;
  --bg-card:     #ffffff;
  --bg-section:  #fdfaf5;

  /* Borders */
  --border:      rgba(30,20,10,0.09);

  /* Texto warm */
  --text:        #18140c;
  --text-muted:  #6b5f50;
  --text-dim:    #b5a898;

  /* Misc */
  --radius:      18px;
  --radius-sm:   10px;
  --shadow-sm:   0 2px 10px rgba(30,20,10,0.06);
  --shadow-md:   0 8px 32px rgba(30,20,10,0.1);
  --shadow-lg:   0 24px 64px rgba(30,20,10,0.13);
  --shadow-gold: 0 0 40px rgba(184,137,42,0.15);

  /* Mockup (mais claro — dark warm wood) */
  --mock-bg:     #1e1c18;
  --mock-alt:    #161410;
  --mock-border: rgba(255,255,255,0.07);
  --mock-text:   #c4b89a;
  --mock-dim:    #6b6050;
  --mock-gold:   #cfa040;

  --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.bg-alt { background: var(--bg-alt); }

.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(2rem, 4vw, 3rem);
  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;
}

/* Botões */
.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;
  letter-spacing: 0.01em;
}

/* Primário — ouro */
.btn-primary, .btn:not(.btn-outline):not(.btn-ghost) {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 4px 14px rgba(184,137,42,0.35);
}
.btn-primary:hover, .btn:not(.btn-outline):not(.btn-ghost):hover {
  background: var(--gold-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,137,42,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  background: rgba(30,20,10,0.04);
  border-color: rgba(30,20,10,0.2);
  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; }

/* ═══════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(248,244,238,0.7);
  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(248,244,238,0.96);
  border-color: var(--border);
  box-shadow: 0 1px 20px rgba(30,20,10,0.07);
}

#header .container {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo img {
  height: 30px; width: auto;
  object-fit: contain;
  filter: invert(1) sepia(0.15) saturate(0.8) brightness(0.85);
}
.logo-badge {
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  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(30,20,10,0.05); }
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(184, 137, 42, 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(184, 137, 42, 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 */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h); left: 0; right: 0;
  z-index: 99;
  background: rgba(248,244,238,0.98);
  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
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 64px) 0 96px;
  overflow: hidden;
  background: var(--bg-section);
}

/* Decoração de fundo */
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%; height: 100%;
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg-section) 70%);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: 10%; right: 8%;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(184,137,42,0.12) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

.hero-bg-orbs { display: none; }
.hero .container { position: relative; z-index: 1; }

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

.hero-eyebrow {
  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: 24px;
}
.eyebrow-dot {
  width: 7px; height: 7px;
  background: var(--gold); border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(184,137,42,0.2);
  animation: pulse-glow 2.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 3px rgba(184,137,42,0.2); }
  50%       { box-shadow: 0 0 0 7px rgba(184,137,42,0.07); }
}

.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;
  color: var(--text);
}
.hero-text h1 span.highlight {
  color: var(--gold);
  text-decoration: none;
  background-image: linear-gradient(to right, var(--gold) 0%, transparent 100%);
  background-repeat: no-repeat;
  background-size: 100% 2px;
  background-position: 2px 100%;
  padding-bottom: 0px;
}

.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;
}

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

.dash-mockup {
  background: var(--mock-bg);
  border: 1px solid var(--mock-border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 60px 100px rgba(30,20,10,0.2),
    0 0 0 1px rgba(30,20,10,0.04),
    0 0 60px rgba(184,137,42,0.1);
}

.mockup-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 16px;
  background: var(--mock-alt);
  border-bottom: 1px solid var(--mock-border);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }
.mockup-url { font-size: 11px; color: var(--mock-dim); margin-left: 8px; font-family: monospace; }

.mockup-body { display: flex; min-height: 280px; }

.mockup-sidebar {
  width: 100px;
  background: var(--mock-alt);
  border-right: 1px solid var(--mock-border);
  padding: 16px 8px;
  display: flex; flex-direction: column;
  align-items: center; gap: 16px; flex-shrink: 0;
}
.sidebar-logo { font-size: 18px; color: var(--mock-gold); margin-bottom: 8px; }
.sidebar-items { display: flex; flex-direction: column; gap: 2px; width: 100%; }
.sidebar-item {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 8px; border-radius: 6px;
  font-size: 10px; color: var(--mock-dim);
  cursor: pointer; transition: all 0.2s;
}
.sidebar-item:hover { color: var(--mock-text); background: rgba(255,255,255,0.04); }
.sidebar-item.active {
  background: rgba(207,160,64,0.14);
  color: var(--mock-gold);
  border: 1px solid rgba(207,160,64,0.22);
}
.s-icon { font-size: 12px; flex-shrink: 0; }

.mockup-main { flex: 1; padding: 16px; overflow: hidden; }
.mockup-greeting { font-size: 12px; font-weight: 600; color: var(--mock-text); margin-bottom: 12px; }
.mockup-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; margin-bottom: 14px; }

.m-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--mock-border);
  border-radius: 8px; padding: 8px 10px;
}
.m-card-gold { background: rgba(207,160,64,0.1); border-color: rgba(207,160,64,0.25); }
.m-card-label { font-size: 9px; color: var(--mock-dim); margin-bottom: 4px; }
.m-card-value { font-size: 13px; font-weight: 700; color: #e8dcc8; line-height: 1; }
.m-card-gold .m-card-value { color: var(--mock-gold); }
.m-card-sub { font-size: 8px; color: var(--mock-dim); margin-top: 2px; }

.agenda-title { font-size: 10px; font-weight: 600; color: var(--mock-text); margin-bottom: 8px; }
.agenda-item {
  display: flex; align-items: center; gap: 8px;
  padding: 5px 8px; border-radius: 6px; margin-bottom: 3px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--mock-border);
}
.agenda-item-active { background: rgba(207,160,64,0.08); border-color: rgba(207,160,64,0.2); }
.agenda-time { font-size: 9px; color: var(--mock-dim); font-family: monospace; width: 30px; flex-shrink: 0; }
.agenda-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.agenda-info { font-size: 9px; color: var(--mock-text); }
.agenda-info strong { color: #e8dcc8; }

/* Floating cards */
.floating-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--gold-border);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 16px 40px rgba(30,20,10,0.14);
  min-width: 160px;
}
.fc-1 { bottom: -24px; left: -36px; animation: float1 4s ease-in-out infinite; }
.fc-2 { top: 28px; right: -40px; 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) } }

.fc-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); flex-shrink: 0;
}
.fc-icon svg { width: 16px; height: 16px; }
.fc-title { font-size: 12px; font-weight: 700; color: var(--text); line-height: 1; }
.fc-sub { font-size: 11px; color: var(--text-dim); margin-top: 3px; }

/* ═══════════════════════════════════════════════════════════
   PILLS STRIP
   ═══════════════════════════════════════════════════════════ */
.pills-section {
  padding: 20px 0;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.pills-track {
  display: flex; gap: 12px;
  animation: scroll-left 30s linear infinite;
  width: max-content;
}
.pills-section:hover .pills-track { animation-play-state: paused; }
@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 30px;
  font-size: 13px; font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap; cursor: default;
  transition: color 0.2s, border-color 0.2s;
}
.pill:hover { color: var(--gold); border-color: var(--gold-border); }
.pill svg { width: 14px; height: 14px; color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   FUNCIONALIDADES
   ═══════════════════════════════════════════════════════════ */
.funcionalidades { background: var(--bg-section); }

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

.feature-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;
}
.feature-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;
}
.feature-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(30,20,10,0.1), var(--shadow-gold);
}
.feature-card:hover::after { opacity: 1; }

.feature-large {
  background: linear-gradient(145deg, rgba(184,137,42,0.06) 0%, #fff 55%);
  border-color: rgba(184,137,42,0.22);
}

.feature-icon {
  width: 48px; height: 48px;
  background: var(--gold-bg); border: 1px solid var(--gold-border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 20px;
}
.feature-icon svg { width: 22px; height: 22px; }

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem; font-weight: 600;
  color: var(--text); margin-bottom: 10px;
}
.feature-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }

.feature-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.feature-tags span {
  font-size: 11px; font-weight: 600;
  color: var(--gold-dark);
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  border-radius: 20px; padding: 3px 10px;
}

/* ═══════════════════════════════════════════════════════════
   FEATURE DESTAQUE
   ═══════════════════════════════════════════════════════════ */
.feature-destaque { background: #fff; }
.feature-destaque.bg-alt { background: var(--bg-alt); }

.destaque-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.destaque-reverse { direction: rtl; }
.destaque-reverse > * { direction: ltr; }

.destaque-text > p {
  font-size: 1.02rem; color: var(--text-muted);
  line-height: 1.78; margin-bottom: 28px;
}
.destaque-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.destaque-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.95rem; color: var(--text-muted);
}
.destaque-list li svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

/* Mini mockups (warm dark) */
.mini-mockup {
  background: var(--mock-bg);
  border: 1px solid var(--mock-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(30,20,10,0.16), 0 0 40px rgba(184,137,42,0.07);
}

.mm-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  background: var(--mock-alt);
  border-bottom: 1px solid var(--mock-border);
}
.mm-title { font-size: 13px; font-weight: 600; color: var(--mock-text); }
.mm-period {
  font-size: 11px; color: var(--mock-dim);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--mock-border);
  border-radius: 6px; padding: 3px 10px;
}
.mm-tabs { display: flex; gap: 4px; }
.mm-tab { font-size: 10px; color: var(--mock-dim); padding: 3px 8px; border-radius: 5px; cursor: pointer; }
.mm-tab.active {
  background: rgba(207,160,64,0.14);
  color: var(--mock-gold);
  border: 1px solid rgba(207,160,64,0.25);
}
.mm-btn {
  font-size: 11px; font-weight: 600;
  color: var(--mock-gold);
  background: rgba(207,160,64,0.1);
  border: 1px solid rgba(207,160,64,0.25);
  border-radius: 6px; padding: 4px 10px;
  cursor: pointer; font-family: var(--font-body);
}

/* Agenda */
.week-grid { display: flex; gap: 6px; padding: 16px; height: 180px; overflow: hidden; }
.week-col { flex: 1; position: relative; min-height: 150px; }
.week-col-today { background: rgba(207,160,64,0.06); border-radius: 6px; }
.week-day { font-size: 9px; font-weight: 700; color: var(--mock-dim); text-align: center; margin-bottom: 6px; text-transform: uppercase; }
.week-day.today { color: var(--mock-gold); }
.week-apt {
  position: absolute; left: 0; right: 0;
  padding: 4px 5px; border-radius: 4px; border-left: 2px solid;
  font-size: 8px; color: var(--mock-text); line-height: 1.3;
}
.week-apt small { color: var(--mock-dim); }

/* Financeiro */
.fin-cards { padding: 14px 16px; display: flex; flex-direction: column; gap: 8px; }
.fin-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--mock-border);
  border-radius: 8px; padding: 10px 14px;
}
.fin-card-gold { background: rgba(207,160,64,0.1); border-color: rgba(207,160,64,0.22); }
.fin-label { font-size: 9px; color: var(--mock-dim); margin-bottom: 4px; }
.fin-value { font-size: 16px; font-weight: 700; color: #e8dcc8; }
.fin-card-gold .fin-value { color: var(--mock-gold); }
.fin-value-muted { color: var(--mock-dim) !important; font-size: 14px !important; }
.fin-bar { height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; margin-top: 8px; overflow: hidden; }
.fin-fill { height: 100%; background: var(--mock-gold); border-radius: 2px; }
.fin-methods { display: flex; gap: 12px; padding: 10px 16px 14px; border-top: 1px solid var(--mock-border); }
.fin-method { display: flex; align-items: center; gap: 6px; font-size: 10px; color: var(--mock-dim); }
.fin-method strong { color: var(--mock-text); }
.method-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

/* Equipe */
.equipe-list { padding: 12px; display: flex; flex-direction: column; gap: 6px; }
.equipe-item { display: flex; align-items: center; gap: 10px; padding: 8px 10px; background: rgba(255,255,255,0.04); border: 1px solid var(--mock-border); border-radius: 8px; }
.eq-pending { opacity: 0.55; }
.eq-avatar { width: 30px; height: 30px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; color: #fff; flex-shrink: 0; }
.eq-info { flex: 1; }
.eq-info strong { display: block; font-size: 11px; color: #e8dcc8; line-height: 1; }
.eq-info span { font-size: 9px; color: var(--mock-dim); }
.eq-badge { font-size: 9px; font-weight: 700; padding: 2px 8px; border-radius: 20px; flex-shrink: 0; }
.eq-owner { background: rgba(207,160,64,0.14); color: var(--mock-gold); border: 1px solid rgba(207,160,64,0.22); }
.eq-active { background: rgba(52,211,153,0.1); color: #34d399; border: 1px solid rgba(52,211,153,0.2); }
.eq-pending-badge { background: rgba(251,191,36,0.1); color: #fbbf24; border: 1px solid rgba(251,191,36,0.2); }

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

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0; align-items: start;
}

.step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 28px; text-align: center;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.step-card:hover {
  border-color: var(--gold-border);
  box-shadow: 0 20px 48px rgba(30,20,10,0.1);
  transform: translateY(-4px);
}

.step-number { font-size: 11px; font-weight: 800; letter-spacing: 0.14em; color: var(--gold); margin-bottom: 16px; }
.step-icon {
  width: 56px; height: 56px;
  background: var(--gold-bg); border: 1px solid var(--gold-border);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin: 0 auto 20px;
}
.step-icon svg { width: 24px; height: 24px; }
.step-card h3 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.step-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.step-tempo {
  display: inline-block;
  font-size: 11px; color: var(--gold);
  background: var(--gold-bg); border: 1px solid var(--gold-border);
  border-radius: 20px; padding: 4px 14px;
}
.step-connector { display: flex; align-items: center; justify-content: center; padding: 0 12px; margin-top: 62px; color: var(--text-dim); }
.step-connector svg { width: 20px; height: 20px; }

/* ═══════════════════════════════════════════════════════════
   PLANOS
   ═══════════════════════════════════════════════════════════ */
.planos { background: var(--bg-section); }

/* Toggle pill */
.plano-toggle {
  display: flex;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
  width: fit-content;
  margin: 0 auto 24px;
}
.toggle-btn {
  padding: 8px 26px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}
.toggle-btn-active {
  background: var(--gold);
  color: #1e1c18;
}

/* Card único */
.plano-card-single { position: relative; }
.plano-price-combo { color: var(--gold) !important; }

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

.plano-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.plano-card:hover { border-color: var(--gold-border); box-shadow: 0 20px 48px rgba(30,20,10,0.1); }

.plano-card-standard::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.plano-card-combo {
  background: linear-gradient(160deg, #fffdf6 0%, #fff 60%);
  border-color: rgba(184,137,42,0.3);
  box-shadow: 0 8px 40px rgba(184,137,42,0.1);
}
.plano-card-combo::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

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

.plano-card h3 { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.plano-desc { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 24px; line-height: 1.65; }

.plano-price-row {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 8px; padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.plano-price { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 700; color: var(--text); line-height: 1; }
.plano-card-combo .plano-price { color: var(--gold); }
.plano-period { font-size: 0.875rem; color: var(--text-dim); }

.plano-combo-note {
  font-size: 12px; color: var(--text-muted);
  margin-bottom: 24px; padding: 10px 14px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  border-radius: 8px; line-height: 1.6;
}
.plano-combo-note strong { color: var(--gold-dark); }

.plano-features { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
.plano-features li { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: var(--text-muted); }
.plano-features svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

.btn-plano { width: 100%; justify-content: center; padding: 15px; font-size: 14px; margin-bottom: 12px; }
.btn-plano-gold { background: var(--gold); color: #fff; box-shadow: 0 4px 14px rgba(184,137,42,0.35); }
.btn-plano-gold:hover { background: var(--gold-mid); }
.plano-nota { text-align: center; font-size: 12px; color: var(--text-dim); }

/* Garantias */
.plano-info { display: flex; flex-direction: column; gap: 14px; }
.plano-guarantee {
  display: flex; align-items: flex-start; gap: 16px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s;
}
.plano-guarantee:hover { border-color: var(--gold-border); }
.guarantee-icon { font-size: 22px; flex-shrink: 0; margin-top: 1px; }
.plano-guarantee h5 { font-size: 0.9rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.plano-guarantee p { font-size: 0.825rem; color: var(--text-muted); line-height: 1.55; }

/* ═══════════════════════════════════════════════════════════
   CTA SPOTLIGHT
   ═══════════════════════════════════════════════════════════ */
.cta-spotlight { background: var(--bg-alt); overflow: hidden; }

.cta-spotlight-box {
  background: var(--text);
  border-radius: 24px; padding: 88px 60px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-spotlight-box::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(184,137,42,0.22) 0%, transparent 70%);
}
/* Decorative texture dots */
.cta-spotlight-box::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.cta-icon-glow {
  font-size: 48px; color: var(--gold);
  margin-bottom: 20px; display: block;
  text-shadow: 0 0 40px rgba(184,137,42,0.8);
  animation: pulse-glow 3s ease-in-out infinite;
  position: relative; z-index: 1;
}

.cta-spotlight-box h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700; color: #fff;
  margin: 16px 0; line-height: 1.2;
  position: relative; z-index: 1;
}
.cta-spotlight-box h2 span { color: var(--gold-light); }
.cta-spotlight-box > p {
  font-size: 1rem; color: rgba(255,255,255,0.6);
  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: var(--gold); color: #fff; }
.btn-cta-primary:hover { background: var(--gold-mid); box-shadow: 0 8px 32px rgba(184,137,42,0.5); }
.btn-cta-secondary {
  padding: 16px 42px; font-size: 15px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-cta-secondary:hover { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.28); box-shadow: none; transform: none; }

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

.faq-item {
  background: var(--bg);
  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(30,20,10,0.07); }

.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; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
footer {
  background: var(--text);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 70px 0 0;
}

.footer-content {
  display: grid; grid-template-columns: 1fr auto;
  gap: 64px; margin-bottom: 52px;
}

.footer-brand { max-width: 300px; }
.footer-brand .logo { margin-bottom: 18px; display: inline-flex; }
.footer-brand .logo img { filter: none; opacity: 0.9; }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.38); line-height: 1.7; margin-bottom: 20px; }

.footer-product-badge {
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); background: rgba(184,137,42,0.1);
  border: 1px solid rgba(184,137,42,0.22);
  border-radius: 6px; padding: 6px 14px;
}

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

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.28); }
.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: 22px; height: 22px; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero::before { display: none; }
  .hero-visual { order: -1; min-width: 0; overflow: hidden; }
  .dash-mockup { max-width: 100%; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .floating-card { display: none; }
  .hero-text h1 { font-size: clamp(2.2rem, 6vw, 3.2rem); }
  .hero-stats { gap: 24px; }

  .destaque-content { grid-template-columns: 1fr; gap: 44px; }
  .destaque-reverse { direction: ltr; }

  .features-grid { grid-template-columns: repeat(2,1fr); }
  .feature-large { grid-column: span 2; }

  .planos-content { grid-template-columns: 1fr; max-width: 580px; }
  .steps-grid { grid-template-columns: 1fr; gap: 12px; }
  .step-connector { display: none; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .section { padding: 72px 0; }
  nav { display: none; }
  .menu-toggle { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-large { grid-column: span 1; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cta-spotlight-box { padding: 52px 28px; }
  .plano-card { padding: 28px 22px; }
  .hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .hero-stats .stat-number { font-size: 1.1rem; }
  .hero-stats .stat-label { font-size: 10px; }
  .btn-mobile-float { display: flex; }
  .steps-grid { display: flex; flex-direction: column; }
}

@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; }
  .plano-price { font-size: 2.4rem; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-buttons .btn { justify-content: center; }
  .planos-content { max-width: 100%; }
}
