@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Roboto:wght@300;400;500&display=swap');

/* ============================================================
   Chef Mércia Costa — Design System v5
   Fundo: Branco #FFFFFF + contraste #F0EDE4 (off-white quente)
   SEM AZUL. SEM DOURADO em fontes.
   Hierarquia: Preto/Escuro → Mocha → Bordeaux (ação)
   Fontes: Outfit 700 · Plus Jakarta Sans · Roboto
   ============================================================ */


:root {
  /* Fundos — apenas brancos */
  --bg:         #FFFFFF;
  --bg-alt:     #F0EDE4;   /* off-white quente — contraste sutil */
  --bg-dark:    #1C1917;   /* quase preto — hero e CTA */

  /* Texto */
  --ink:        #1C1917;   /* preto quente — títulos */
  --ink-60:     rgba(28,25,23,0.72);
  --ink-30:     rgba(28,25,23,0.28);
  --ink-10:     rgba(28,25,23,0.08);

  /* Paleta de cor */
  --mocha:      #967969;   /* label, detalhe neutro */
  --bordeaux:   #60100B;   /* CTA, destaque de ação */
  --bordeaux-h: #7A1510;   /* hover */
  --gold:       #C5A059;   /* EXCLUSIVO logo */

  /* Fontes */
  --f-title:  'Outfit', sans-serif;
  --f-body:   'Plus Jakarta Sans', sans-serif;
  --f-label:  'Roboto', sans-serif;

  --container:   1200px;
  --pad:         96px;
  --ease:        0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bordeaux); }
::selection { background: var(--bordeaux); color: #fff; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 40px; }

h1, h2, h3 {
  font-family: var(--f-title);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.label {
  font-family: var(--f-label);
  font-size: 10px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--mocha); display: block;
}

/* ============================================================
   NAVBAR — branca ao scrollar
   ============================================================ */

/* ============================================================
   NAVBAR v2 — Simétrico · Limpo · Flutuante CTA
   ============================================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  background: transparent;
}
#navbar .container { max-width: var(--container); margin: 0 auto; padding: 0 40px; }
.nav-inner {
  display: flex; align-items: center;
  height: 72px;
  gap: 0;
}
/* Logo — left */
.nav-logo {
  display: flex; flex-direction: column; line-height: 1; gap: 3px;
  flex-shrink: 0; text-decoration: none;
}
.nav-logo strong {
  font-family: var(--f-title); font-size: 17px; font-weight: 700;
  letter-spacing: -0.01em; color: #fff;
  transition: color 0.3s ease;
}
.nav-logo strong span { color: var(--gold); }
.nav-logo em {
  font-family: var(--f-label); font-style: normal;
  font-size: 7.5px; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.58);
  transition: color 0.3s ease;
}
/* Links — center */
.nav-links {
  display: flex; gap: 0; list-style: none;
  flex: 1; justify-content: center;
}
.nav-links li a {
  display: block;
  font-family: var(--f-label); font-size: 9px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: #ffffff;
  padding: 0 18px; height: 72px;
  display: flex; align-items: center;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.nav-links li a:hover { color: #fff; }
.nav-links li a.active { color: #fff; }
/* CTA — right (hidden by default, shown via scrolled) */
.nav-cta {
  font-family: var(--f-label); font-size: 9px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 9px 18px;
  border: 1px solid rgba(255,255,255,0.30);
  color: rgba(255,255,255,0.75);
  flex-shrink: 0;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.nav-cta:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* SCROLLED state — dark bg, good contrast */
#navbar.scrolled {
  background: rgba(22,19,17,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}
#navbar.scrolled .nav-inner { height: 62px; }
#navbar.scrolled .nav-links li a {
  height: 62px;
  color: #ffffff;
}
#navbar.scrolled .nav-links li a:hover { color: #fff; }
#navbar.scrolled .nav-logo strong { color: #fff; }
#navbar.scrolled .nav-logo em { color: rgba(255,255,255,0.68); }
#navbar.scrolled .nav-cta { border-color: var(--gold); color: var(--gold); }
#navbar.scrolled .nav-cta:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
#navbar.scrolled .nav-toggle span { background: #fff; }

/* LIGHT page state (page hero is white/light) */
#navbar.light-page .nav-logo strong { color: var(--ink); }
#navbar.light-page .nav-logo em { color: var(--ink-60); }
#navbar.light-page .nav-links li a { color: var(--ink); }
#navbar.light-page .nav-links li a:hover { color: var(--ink); }
#navbar.light-page .nav-cta { border-color: rgba(28,25,23,0.30); color: var(--ink); }
#navbar.light-page .nav-cta:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
#navbar.light-page .nav-toggle span { background: var(--ink); }
/* Once scrolled, always dark */
#navbar.light-page.scrolled .nav-logo strong { color: #fff; }
#navbar.light-page.scrolled .nav-logo em { color: rgba(255,255,255,0.68); }
#navbar.light-page.scrolled .nav-links li a { color: rgba(255,255,255,0.65); }
#navbar.light-page.scrolled .nav-links li a:hover { color: #fff; }
#navbar.light-page.scrolled .nav-cta { border-color: var(--gold); color: var(--gold); }

/* MOBILE TOGGLE */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: 6px; cursor: pointer; border: none; background: none;
  flex-shrink: 0; margin-left: 16px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: rgba(255,255,255,0.80); border-radius: 2px;
  transition: all 0.3s ease;
}

/* ============================================================
   FLOATING CTA BUTTON (replaces nav-cta as main action)
   ============================================================ */
#float-cta {
  position: fixed;
  bottom: 88px; right: 32px;
  z-index: 190;
  background: var(--bordeaux);
  color: #fff;
  font-family: var(--f-label); font-size: 9px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 14px 20px;
  border-radius: 50px;
  border: none; cursor: pointer;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 6px 24px rgba(96,16,11,0.50);
  transition: all 0.3s ease;
  text-decoration: none;
  opacity: 0; transform: translateY(16px);
  pointer-events: none;
}
#float-cta.visible {
  opacity: 1; transform: translateY(0);
  pointer-events: all;
}
#float-cta:hover {
  background: #7A1510;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 32px rgba(96,16,11,0.60);
}
#float-cta svg { flex-shrink: 0; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
#back-to-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 190;
  background: rgba(28,25,23,0.85);
  color: rgba(255,255,255,0.65);
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transform: translateY(10px);
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}
#back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
#back-to-top:hover { background: var(--bordeaux); color: #fff; border-color: var(--bordeaux); transform: translateY(-2px) !important; }

/* MOBILE */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none !important; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex !important; flex-direction: column; gap: 0;
    position: fixed; top: 62px; left: 0; right: 0;
    background: rgba(18,16,14,0.98);
    backdrop-filter: blur(20px);
    padding: 16px 0 24px; z-index: 199;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  }
  .nav-links.open li a {
    height: auto; padding: 14px 32px;
    font-size: 11px; letter-spacing: 2px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  #float-cta { bottom: 32px; right: 20px; padding: 12px 16px; font-size: 8px; }
  #back-to-top { bottom: 32px; right: 72px; }
}

#hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: flex-end;
  overflow: hidden;
  border-radius: 0 0 28px 28px;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: #2a1f14;
  overflow: hidden;
}
.hero-bg img {
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
  /* Foto centrada no rosto, como imagem de referência */
  object-position: 65% 12%;
  filter: brightness(0.80) saturate(0.90);
}
/* Overlay quente sutil — escuro à esq onde está o texto, quase zero à dir onde ela aparece */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(100deg,
      rgba(26,18,10,0.85) 0%,
      rgba(26,18,10,0.50) 42%,
      rgba(26,18,10,0.06) 100%
    ),
    linear-gradient(to top,
      rgba(26,18,10,0.75) 0%,
      transparent 36%
    );
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%; padding-bottom: 72px;
}
.hero-content .container {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: end; gap: 40px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: ''; width: 28px; height: 1px;
  background: rgba(255,255,255,0.35); flex-shrink: 0;
}
.hero-eyebrow .label { color: rgba(255,255,255,0.68); }

.hero-title {
  font-family: var(--f-title);
  font-size: clamp(42px, 6vw, 84px);
  font-weight: 700; color: #FFFFFF;
  line-height: 1.02; letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.hero-title .sub {
  display: block; font-family: var(--f-body);
  font-size: 0.38em; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 8px;
}
.hero-subtitle {
  font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,0.65);
  max-width: 400px; line-height: 1.85; margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-stats {
  display: flex; margin-top: 48px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-item + .stat-item {
  margin-left: 30px; padding-left: 30px;
  border-left: 1px solid rgba(255,255,255,0.1);
}
.stat-number {
  font-family: var(--f-title); font-size: 42px;
  font-weight: 700; color: #FFFFFF; line-height: 1;
}
.stat-label {
  font-family: var(--f-label); font-size: 9px; font-weight: 400;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.38); margin-top: 4px;
}
.hero-right-panel { display: flex; align-items: flex-end; justify-content: flex-end; }
.hero-badge {
  background: rgba(28,25,23,0.7); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 20px 24px;
  animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }
.badge-text {
  font-family: var(--f-title); font-size: 13px; font-weight: 700;
  color: #FFFFFF; line-height: 1.35; text-transform: uppercase;
  letter-spacing: -0.01em;
}
.badge-sub {
  font-family: var(--f-label); font-size: 9px; font-weight: 400;
  letter-spacing: 2px; color: rgba(255,255,255,0.4);
  margin-top: 6px; text-transform: uppercase;
}

/* ============================================================
   BOTÕES — fundo ESCURO = dourado | fundo CLARO = bordeaux
   ============================================================ */

/* Bordeaux — fundos brancos/claros */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; background: var(--bordeaux); color: #fff;
  font-family: var(--f-label); font-size: 10px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  border: 1px solid var(--bordeaux); border-radius: 4px; transition: all var(--ease);
}
.btn-primary:hover {
  background: var(--bordeaux-h); border-color: var(--bordeaux-h);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(96,16,11,0.22);
}

/* Dourado — fundos escuros (hero, why, hotelaria, cta) */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; background: var(--gold); color: var(--ink);
  font-family: var(--f-label); font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  border: 1px solid var(--gold); border-radius: 4px; transition: all var(--ease);
}
.btn-gold:hover {
  background: #d4b06a; border-color: #d4b06a;
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(197,160,89,0.35);
}

/* Ghost claro — fundos escuros */
.btn-ghost-light {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; background: transparent; color: rgba(255,255,255,0.8);
  font-family: var(--f-label); font-size: 10px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.32); border-radius: 4px; transition: all var(--ease);
}
.btn-ghost-light:hover { border-color: rgba(255,255,255,0.7); color: #fff; }

/* Ghost escuro — fundos claros */
.btn-ghost-dark {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; background: transparent; color: var(--ink-60);
  font-family: var(--f-label); font-size: 10px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  border: 1px solid var(--ink-30); border-radius: 4px; transition: all var(--ease);
}
.btn-ghost-dark:hover { border-color: var(--ink); color: var(--ink); }


/* ============================================================
   SEÇÕES
   ============================================================ */
section { padding: var(--pad) 0; }
.section-header { margin-bottom: 56px; }
.section-label {
  font-family: var(--f-label); font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--ink-60); display: block; margin-bottom: 10px;
}
.section-title {
  font-family: var(--f-title);
  font-size: clamp(30px, 4vw, 60px);
  font-weight: 700; line-height: 1.02;
  letter-spacing: -0.025em; color: var(--ink);
}
.section-title span { color: var(--bordeaux); }
.section-lead {
  font-size: 15px; font-weight: 400;
  color: var(--ink-60); line-height: 1.85;
  max-width: 540px; margin-top: 16px;
}
.divider { width: 36px; height: 3px; background: var(--bordeaux); margin: 16px 0; }

/* ============================================================
   WHY — fundo escuro quente (único bloco escuro no conteúdo)
   ============================================================ */
#why-strip { background: var(--bg-dark); padding: 80px 0; }
.why-grid { display: grid; grid-template-columns: 130px 1fr; gap: 64px; align-items: start; }
.why-word {
  font-family: var(--f-title); font-size: clamp(72px, 11vw, 140px);
  font-weight: 700; color: rgba(255,255,255,0.05);
  line-height: 1; letter-spacing: -4px;
}
.why-lead {
  font-family: var(--f-title); font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 600; line-height: 1.3; color: #FFFFFF;
  margin-bottom: 20px; padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  letter-spacing: -0.01em;
}
.why-lead em { color: rgba(255,255,255,0.58); font-style: normal; font-weight: 300; }
.why-body {
  font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,0.65); line-height: 1.95; max-width: 640px;
}
.why-body strong { color: rgba(255,255,255,0.85); font-weight: 600; }

/* ============================================================
   SOBRE — branco
   ============================================================ */
#sobre { background: var(--bg); }
.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.sobre-text { font-size: 15px; color: var(--ink-60); line-height: 1.9; margin-bottom: 16px; }
.sobre-text em { color: var(--bordeaux); font-style: italic; }
.sobre-stats {
  display: flex; margin-top: 32px; padding-top: 28px;
  border-top: 1px solid var(--ink-10); flex-wrap: wrap;
}
.sobre-stat + .sobre-stat { margin-left: 28px; padding-left: 28px; border-left: 1px solid var(--ink-10); }
.sobre-stat-num { font-family: var(--f-title); font-size: 38px; font-weight: 700; color: var(--bordeaux); line-height: 1; }
.sobre-stat-label { font-family: var(--f-label); font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--ink); margin-top: 4px; }
.sobre-photo { position: relative; min-height: 500px; background: var(--bg-alt); overflow: hidden; border-radius: 12px; }
.sobre-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 10%; filter: saturate(0.95); }
.sobre-photo-tag {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 18px 22px;
  background: linear-gradient(to top, rgba(28,25,23,0.88) 55%, transparent);
  display: flex; flex-direction: column; gap: 3px;
}
.sobre-photo-name { font-family: var(--f-title); font-size: 15px; font-weight: 700; color: #fff; letter-spacing: -0.01em; }
.sobre-photo-role { font-family: var(--f-label); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.58); }

/* ============================================================
   HOW BRIDGE — bg-alt (off-white quente)
   ============================================================ */
#how-bridge { background: var(--bg-alt); padding: 72px 0; }
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.how-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.pillar-cell { background: var(--bg); padding: 22px 20px; transition: background var(--ease); border-radius: 8px; border-top: 1px solid rgba(28,25,23,0.10); }
.pillar-cell:hover { background: var(--bg-alt); }
.pillar-num { font-family: var(--f-label); font-size: 10px; font-weight: 700; color: var(--ink-60); letter-spacing: 3px; margin-bottom: 8px; }
.pillar-name { font-family: var(--f-title); font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 3px; letter-spacing: -0.01em; }
.pillar-ref { font-family: var(--f-label); font-size: 9px; font-weight: 500; color: var(--ink-60); margin-bottom: 8px; letter-spacing: 1px; }
.pillar-desc { font-size: 13px; color: var(--ink-60); line-height: 1.65; }

/* ============================================================
   PARA QUEM — branco
   ============================================================ */
#para-quem { background: var(--bg-dark); }
.problemas-intro { max-width: 520px; margin-bottom: 48px; }
.problemas-intro p { font-size: 15px; color: rgba(255,255,255,0.68); line-height: 1.75; }
.problemas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.problema-card {
  background: rgba(255,255,255,0.04); padding: 32px 26px;
  position: relative; overflow: hidden; transition: background var(--ease);
  border-radius: 10px; border: 1px solid rgba(255,255,255,0.08);
}
.problema-card::after {
  content: ''; position: absolute; top: 0; left: 0;
  width: 0; height: 3px; background: var(--gold); transition: width 0.36s ease;
}
.problema-card:hover { background: rgba(255,255,255,0.07); }
.problema-card:hover::after { width: 100%; }
.problema-quote { font-family: var(--f-body); font-size: 36px; color: rgba(255,255,255,0.08); line-height: 1; margin-bottom: 12px; font-style: italic; }
.problema-title { font-family: var(--f-title); font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 10px; line-height: 1.45; letter-spacing: -0.01em; }
.problema-desc { font-size: 13px; color: rgba(255,255,255,0.48); line-height: 1.7; }

/* ============================================================
   HOTELARIA — branco
   ============================================================ */
#hotelaria { background: var(--bg); }
.hotelaria-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.hotelaria-photo { position: relative; overflow: hidden; min-height: 460px; border-radius: 12px; }
.hotelaria-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.88) contrast(1.02); }
.hotelaria-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--bg) 100%);
}
.hotel-text { font-size: 15px; font-weight: 400; color: var(--ink-60); line-height: 1.95; margin-bottom: 28px; }
.hotel-quote { border-left: 3px solid var(--bordeaux); padding-left: 22px; margin-top: 28px; }
.hotel-quote p { font-family: var(--f-body); font-size: 18px; font-style: italic; font-weight: 300; color: var(--ink); line-height: 1.55; margin-bottom: 10px; }
.hotel-quote cite { font-family: var(--f-label); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--mocha); }

/* ============================================================
   CONSULTORIAS — bg-alt
   ============================================================ */
#consultorias { background: var(--bg-alt); }
.produtos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 16px; }
.produto-card {
  background: var(--bg); padding: 36px 28px; position: relative; overflow: hidden;
  display: flex; flex-direction: column; transition: background var(--ease);
  /* Moldura fina */
  border: 1px solid var(--ink-10);
  border-radius: 10px;
}
.produto-card:hover { background: var(--bg-alt); }
.produto-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; border-radius: 10px 10px 0 0; background: transparent; transition: background 0.28s; }
.produto-card:hover::before { background: var(--mocha); }

/* Card destaque — escuro quente */
.produto-card.featured { background: var(--bg-dark); border-color: transparent; border-radius: 10px; }
.produto-card.featured:hover { background: #252220; }
.produto-card.featured::before { background: var(--bordeaux) !important; }
.produto-card.featured .produto-badge { color: rgba(255,255,255,0.38); }
.produto-card.featured .produto-type { color: rgba(255,255,255,0.55); }
.produto-card.featured .produto-name { color: #fff; }
.produto-card.featured .produto-desc { color: rgba(255,255,255,0.65); }
.produto-card.featured .price-from { color: rgba(255,255,255,0.32); }
.produto-card.featured .price-value { color: #fff; }
.produto-card.featured .produto-btn { color: rgba(255,255,255,0.68); border-top-color: rgba(255,255,255,0.08); }
.produto-card.featured .produto-btn:hover { color: #fff; }

.produto-badge { font-family: var(--f-label); font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--bordeaux); margin-bottom: 18px; }
.produto-icon { font-size: 22px; margin-bottom: 12px; }
.produto-type { font-family: var(--f-label); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--mocha); margin-bottom: 12px; display: block; }
.produto-name { font-family: var(--f-title); font-size: clamp(22px, 2.2vw, 30px); font-weight: 700; color: var(--ink); line-height: 1.1; margin-bottom: 14px; letter-spacing: -0.02em; }
.produto-desc { font-size: 13px; color: var(--ink-60); line-height: 1.8; margin-bottom: 22px; flex: 1; }
.produto-price { margin-bottom: 18px; }
.price-from { font-family: var(--f-label); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--mocha); margin-bottom: 3px; }
.price-value { font-family: var(--f-title); font-size: 22px; font-weight: 700; color: var(--ink); }
.produto-btn { display: inline-flex; align-items: center; font-family: var(--f-label); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--bordeaux); padding: 12px 0; border-top: 1px solid var(--ink-10); transition: color var(--ease); cursor: pointer; }
.produto-btn:hover { color: var(--ink); }

.hotel-banner {
  border: 1px solid var(--ink-10); border-top: 3px solid var(--ink);
  padding: 32px 40px; display: flex; align-items: center;
  justify-content: space-between; gap: 40px; flex-wrap: wrap; background: var(--bg);
}
.hotel-banner-title { font-family: var(--f-title); font-size: 26px; font-weight: 700; color: var(--ink); line-height: 1.05; margin-bottom: 8px; letter-spacing: -0.02em; }
.hotel-banner-title span { color: var(--bordeaux); }
.hotel-banner-desc { font-size: 14px; color: var(--ink-60); max-width: 440px; line-height: 1.8; }

/* ============================================================
   RESULTADOS — branco
   ============================================================ */
#resultados { background: var(--bg); }
.resultados-ticker { overflow: hidden; white-space: nowrap; margin-bottom: 48px; padding: 14px 0; border-top: 1px solid var(--ink-10); border-bottom: 1px solid var(--ink-10); }
.ticker-track { display: inline-flex; gap: 48px; animation: ticker 28s linear infinite; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.ticker-item { font-family: var(--f-label); font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: rgba(28,25,23,0.45); white-space: nowrap; }
.ticker-item.highlight { color: var(--bordeaux); }

.skills-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.skill-card { background: var(--bg); padding: 28px 22px; display: flex; flex-direction: column; transition: background var(--ease); border-radius: 10px; border: 1px solid var(--ink-10); }
.skill-card:hover { background: var(--bg-alt); }
.skill-number { font-family: var(--f-title); font-size: 64px; font-weight: 700; color: rgba(28,25,23,0.32); line-height: 1; margin-bottom: 10px; }
.skill-icon { font-size: 20px; margin-bottom: 12px; }
.skill-title { font-family: var(--f-title); font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 10px; line-height: 1.2; letter-spacing: -0.01em; }
.skill-desc { font-size: 13px; color: rgba(28,25,23,0.70); line-height: 1.75; flex: 1; margin-bottom: 16px; }
.skill-outcome { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--ink-10); }
.skill-outcome .label { margin-bottom: 4px; color: var(--bordeaux); font-weight: 700; }
.skill-outcome p { font-size: 13px; color: var(--ink); font-weight: 700; }

/* ============================================================
   CTA — escuro quente
   ============================================================ */
#cta {
  background: var(--bg-dark);
  text-align: center; padding: 96px 0;
  border-top: 3px solid var(--bordeaux);
}
.cta-label { margin-bottom: 12px; color: rgba(255,255,255,0.3); }
.cta-title {
  font-family: var(--f-title); font-size: clamp(36px, 7vw, 88px);
  font-weight: 700; color: #fff; line-height: 1.02;
  margin-bottom: 22px; letter-spacing: -0.025em;
}
.cta-title span { display: block; font-family: var(--f-body); font-size: 0.48em; font-weight: 300; font-style: italic; color: var(--gold); letter-spacing: 0; margin-top: 4px; }
.cta-sub { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.48); max-width: 420px; margin: 0 auto 38px; line-height: 1.85; }
.cta-actions { display: flex; gap: 12px; align-items: center; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER — quase preto quente
   ============================================================ */
#footer { background: #0F0D0B; padding: 56px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 44px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-logo-text { font-family: var(--f-title); font-size: 18px; font-weight: 700; color: #fff; letter-spacing: -0.01em; margin-bottom: 4px; }
.footer-logo-text span { color: var(--gold); }
.footer-logo-sub { font-family: var(--f-label); font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 16px; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.32); line-height: 1.85; max-width: 260px; }
.footer-col-title { font-family: var(--f-label); font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li + li { margin-top: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color var(--ease); }
.footer-links a:hover { color: rgba(255,255,255,0.75); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 24px; }
.footer-copy { font-family: var(--f-label); font-size: 9px; letter-spacing: 1.5px; color: rgba(255,255,255,0.2); }
.footer-copy em { color: rgba(255,255,255,0.55); font-style: normal; }
.footer-social { display: flex; gap: 10px; }
.social-link { width: 32px; height: 32px; border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.28); transition: all var(--ease); }
.social-link:hover { border-color: rgba(255,255,255,0.55); color: rgba(255,255,255,0.65); }

/* ============================================================
   FADE-UP — visível por padrão, animado via JS quando disponível
   ============================================================ */
.fade-up { opacity: 1; transform: translateY(0); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.js-ready { opacity: 0; transform: translateY(18px); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Hero image — tablet */
@media (max-width: 1024px) and (min-width: 769px) {
  .hero-bg img {
    object-position: 55% 12% !important;
  }
}

@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .skills-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: 1fr; gap: 44px; }
  .hotelaria-grid { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  :root { --pad: 60px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero-content .container { grid-template-columns: 1fr; }
  .hero-right-panel { display: none; }
  .hero-title { font-size: clamp(32px, 9.5vw, 52px); }
  .hero-stats { flex-wrap: wrap; }
  .stat-item + .stat-item { margin-left: 18px; padding-left: 18px; }
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-word { font-size: 60px; }
  .sobre-grid { grid-template-columns: 1fr; gap: 36px; }
  .sobre-photo { min-height: 280px; }
  .problemas-grid { grid-template-columns: 1fr; }
  .produtos-grid { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .hotel-banner { flex-direction: column; padding: 24px 20px; }
  .section-title { font-size: clamp(26px, 8vw, 44px); }
  .cta-title { font-size: clamp(30px, 9vw, 48px); }

  /* ── HERO IMAGE FIX — mobile ── */
  #hero {
    min-height: 100svh;
    min-height: 100vh;
    align-items: flex-end;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 82% top !important;
  }
  .hero-overlay {
    background:
      linear-gradient(180deg,
        rgba(26,18,10,0.10) 0%,
        rgba(26,18,10,0.15) 40%,
        rgba(26,18,10,0.92) 72%,
        rgba(26,18,10,0.98) 100%
      ) !important;
  }
  .hero-content {
    padding-bottom: 48px;
    padding-top: 0;
    width: 100%;
  }
  .hero-content .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions a { text-align: center; justify-content: center; }
}

/* ============================================================
   CORREÇÕES DE CONTRASTE + EXTRAS
   ============================================================ */

/* Hotel-quote em fundo claro — texto escuro */
#how-bridge .hotel-quote p,
#sobre .hotel-quote p,
#hotelaria .hotel-quote p { color: var(--ink); }
#how-bridge .hotel-quote,
#sobre .hotel-quote,
#hotelaria .hotel-quote { border-left-color: var(--bordeaux); }

/* Para-quem está em bg-dark — seção e titles brancos */
#para-quem { background: var(--bg); }
#para-quem .section-title { color: var(--ink); }
#para-quem .section-lead { color: var(--ink-60); }
#para-quem .section-label { color: var(--ink-60); }

/* Problema cards em fundo escuro (dentro do avatar-card) */
.problema-card { background: rgba(255,255,255,0.03); }



/* why-strip: texto sempre branco */
#why-strip .why-lead,
#why-strip .why-body { color: rgba(255,255,255,0.90); }
#why-strip .why-lead em { color: rgba(255,255,255,0.65) !important; }
#why-strip .section-label { color: rgba(255,255,255,0.68); }

/* CTA section */
#cta { background: var(--bg-dark); }
#cta .cta-label { color: rgba(255,255,255,0.30); }
#cta .cta-title { color: #fff; }
#cta .cta-title span { color: var(--gold); }
#cta .cta-sub { color: rgba(255,255,255,0.48); }
#cta-home { background: var(--bg-dark); border-top: 3px solid var(--bordeaux); text-align: center; padding: 96px 0; }
#cta-home h2 { font-family: var(--f-title); font-size: clamp(28px,4vw,54px); font-weight: 700; color: #fff; line-height: 1.05; letter-spacing: -0.025em; margin-bottom: 16px; }
#cta-home p { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.48); max-width: 440px; margin: 0 auto 36px; line-height: 1.85; }

/* Hotelaria/consultoria/sobre headers em fundo claro */
#hotelaria .section-title,
#consultorias .section-title,
#sobre .section-title,
#resultados .section-title,
#how-bridge .section-title { color: var(--ink); }

/* Labels em fundos claros */
#hotelaria .section-label,
#consultorias .section-label,
#sobre .section-label,
#resultados .section-label,
#how-bridge .section-label { color: var(--ink-60); }

/* Footer social icons */
.social-link { color: rgba(255,255,255,0.28); }
.social-link svg { display: block; }

/* PAGE HERO subpages */
.page-hero { background: var(--bg-dark); padding: 160px 0 96px; position: relative; overflow: hidden; border-radius: 0 0 28px 28px; }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,0.68); }

/* FORM STYLES — compartilhados */
.form-page-wrap { min-height: 100vh; background: var(--bg-dark); display: flex; align-items: center; justify-content: center; padding: 120px 20px 60px; }
.form-panel { background: #1C1917; border-radius: 16px; width: 100%; max-width: 580px; overflow: hidden; }
#fp-progress { height: 3px; background: rgba(255,255,255,0.06); }
#fp-progress-fill { height: 100%; background: var(--gold); transition: width 0.4s ease; width: 0%; }
.fp-step-head { padding: 32px 36px 0; }
.fp-step-tag { font-family: var(--f-label); font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 8px; }
.fp-step-title { font-family: var(--f-title); font-size: clamp(18px,2.5vw,24px); font-weight: 700; color: #fff; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 6px; }
.fp-step-desc { font-size: 13px; color: rgba(255,255,255,0.42); line-height: 1.65; }
.fp-body { padding: 24px 36px; }
.fp-group { margin-bottom: 18px; }
.fp-label { font-family: var(--f-label); font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.fp-label .req { color: var(--bordeaux); }
.fp-input, .fp-select, .fp-textarea { width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.10); border-radius: 8px; padding: 12px 16px; font-family: var(--f-body); font-size: 14px; color: #fff; transition: all 0.22s ease; box-sizing: border-box; }
.fp-input::placeholder, .fp-textarea::placeholder { color: rgba(255,255,255,0.22); }
.fp-input:focus, .fp-select:focus, .fp-textarea:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,0.08); box-shadow: 0 0 0 3px rgba(197,160,89,0.14); }
.fp-select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 5 5-5' stroke='rgba(255,255,255,0.35)' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.fp-select option { background: #1C1917; color: #fff; }
.fp-textarea { resize: vertical; min-height: 90px; }
.fp-opts { display: flex; flex-direction: column; gap: 6px; }
.fp-opts.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.fp-opt { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 11px 14px; cursor: pointer; transition: all 0.18s ease; user-select: none; }
.fp-opt:hover { border-color: rgba(197,160,89,0.28); background: rgba(255,255,255,0.07); }
.fp-opt.sel { border-color: var(--gold); background: rgba(197,160,89,0.10); }
.fp-opt input { display: none; }
.fp-opt-text { font-size: 13px; color: rgba(255,255,255,0.75); flex: 1; line-height: 1.35; }
.fp-opt-dot { width: 16px; height: 16px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.20); flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: all 0.18s ease; margin-left: auto; }
.fp-opt.sel .fp-opt-dot { background: var(--gold); border-color: var(--gold); }
.fp-opt.sel .fp-opt-dot::after { content: '✓'; font-size: 9px; color: var(--ink); font-weight: 700; }
.fp-opt-check { border-radius: 3px; }
.fp-range { width: 100%; accent-color: var(--gold); cursor: pointer; margin-top: 4px; }
.fp-range-val { text-align: center; font-family: var(--f-title); font-size: 28px; font-weight: 700; color: var(--gold); letter-spacing: -1px; margin-bottom: 2px; }
.fp-range-labels { display: flex; justify-content: space-between; font-size: 10px; color: rgba(255,255,255,0.30); margin-top: 4px; }
.fp-nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 36px 28px; border-top: 1px solid rgba(255,255,255,0.06); gap: 12px; }
.fp-nav-ind { font-family: var(--f-label); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.30); }
.fp-btn-back { background: transparent; border: 1px solid rgba(255,255,255,0.14); color: rgba(255,255,255,0.68); padding: 10px 20px; border-radius: 6px; font-family: var(--f-label); font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.fp-btn-back:hover { border-color: rgba(255,255,255,0.55); color: #fff; }
.fp-btn-next { background: var(--gold); color: var(--ink); border: none; padding: 10px 22px; border-radius: 6px; font-family: var(--f-label); font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.fp-btn-next:hover { background: #d4af6b; transform: translateY(-1px); }
.fp-sucesso-wrap { display: none; padding: 48px 36px; text-align: center; }
.fp-sucesso-wrap .fp-ok-icon { font-size: 56px; display: block; margin-bottom: 20px; }
.fp-sucesso-wrap h3 { font-family: var(--f-title); font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.fp-sucesso-wrap p { font-size: 14px; color: rgba(255,255,255,0.68); line-height: 1.8; max-width: 380px; margin: 0 auto 6px; }
.fp-sucesso-wrap .fp-cod { font-family: var(--f-label); font-size: 12px; font-weight: 700; letter-spacing: 2px; color: var(--gold); margin-top: 16px; display: block; }
.fp-codigo { background: rgba(197,160,89,0.10); border: 1px solid rgba(197,160,89,0.25); border-radius: 8px; padding: 12px 16px; text-align: center; font-family: var(--f-label); font-size: 13px; font-weight: 700; letter-spacing: 2px; color: var(--gold); margin-bottom: 12px; }

/* ADMIN */
.admin-wrap { font-family: var(--f-body); background: #0F0D0B; min-height: 100vh; color: #fff; padding: 40px; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.admin-table th { background: var(--bordeaux); color: #fff; padding: 10px 14px; text-align: left; font-family: var(--f-label); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; }
.admin-table td { padding: 10px 14px; border-bottom: 1px solid rgba(255,255,255,0.06); vertical-align: top; }
.admin-table tr:hover td { background: rgba(255,255,255,0.03); }
.badge-ativo { background: #1a5c2a; color: #4ade80; padding: 3px 10px; border-radius: 3px; font-size: 10px; font-weight: 700; letter-spacing: 1px; cursor: pointer; border: none; }
.badge-inativo { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.68); padding: 3px 10px; border-radius: 3px; font-size: 10px; font-weight: 700; letter-spacing: 1px; cursor: pointer; border: none; }
.btn-email-send { background: var(--bordeaux); color: #fff; border: none; padding: 5px 12px; border-radius: 4px; font-size: 10px; font-family: var(--f-label); letter-spacing: 1px; text-transform: uppercase; cursor: pointer; }
.btn-email-send:hover { background: var(--bordeaux-h); }


/* Price value on dark backgrounds - ensure readable */
.bg-dark .price-value,
#cta .price-value,
#bonus .price-value,
#cta-home .price-value,
[style*="bg-dark"] .price-value { color: #E8534A !important; }
.price-from { color: var(--mocha); }
.inclui-item .price-from { color: rgba(255,255,255,0.65); }

/* Section label always visible */
.section-label { color: var(--mocha); display: block; }
#why-strip .section-label,
#cta .section-label,
#cta-home .section-label,
[style*="bg-dark"] .section-label { color: rgba(255,255,255,0.38); }

.problema-card.lgt { background: var(--bg-alt); border: 1px solid var(--ink-10); }
.problema-card.lgt:hover { background: var(--bg); }
.problema-title-lgt { font-family: var(--f-title); font-size: 14px; font-weight: 700; color: var(--ink) !important; margin-bottom: 10px; line-height: 1.45; }
.problema-desc-lgt  { font-size: 13px; color: var(--ink-60) !important; line-height: 1.7; }

/* ── LOGO TICKER (Experiências) ── */
#experiencias { background: var(--bg); padding: 72px 0 64px; }
.logo-grid-static { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 0; }
.logo-cell {
  background: var(--bg-alt); border: 1px solid var(--ink-10);
  border-radius: 8px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  height: 113px; transition: all var(--ease);
}
.logo-cell:hover { background: var(--bg); box-shadow: 0 4px 16px rgba(0,0,0,0.08); border-color: var(--ink-20); }
.logo-cell img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: grayscale(0.15) opacity(0.90);
  transition: filter var(--ease), transform var(--ease);
}
.logo-cell:hover img { filter: grayscale(0) opacity(1); transform: scale(1.03); }
/* Ticker strip below logos */
.logos-ticker-strip { margin-top: 32px; overflow: hidden; white-space: nowrap; padding: 12px 0; border-top: 1px solid var(--ink-10); border-bottom: 1px solid var(--ink-10); }
.logos-ticker-track { display: inline-flex; gap: 56px; animation: ticker 32s linear infinite; }
.logos-ticker-item { font-family: var(--f-label); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: rgba(28,25,23,0.40); white-space: nowrap; }
.logos-ticker-item.dot { color: var(--bordeaux); }
@media (max-width: 768px) {
  .exp-grid { grid-template-columns: 1fr; gap: 40px; }
  .logo-grid-static { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   MODAL SYSTEM — Formulário Consultora + Lista de Espera
   ============================================================ */
#modal-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(14,11,9,0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
  padding: 20px;
}
#modal-overlay.open {
  opacity: 1; pointer-events: all;
}
.modal-box {
  background: #1C1917;
  border-radius: 14px;
  width: 100%; max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(.22,.68,0,1.2);
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.1) transparent;
}
#modal-overlay.open .modal-box {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: sticky; top: 0; float: right;
  z-index: 10;
  background: rgba(255,255,255,0.07);
  border: none; color: rgba(255,255,255,0.68);
  width: 36px; height: 36px; border-radius: 50%;
  font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  margin: 16px 16px 0 0;
  transition: all 0.2s ease;
}
.modal-close:hover { background: rgba(255,255,255,0.15); color: #fff; }
.modal-inner { padding: 12px 36px 40px; }
.modal-header { text-align: center; margin-bottom: 28px; }
.modal-header .modal-eyebrow {
  font-family: var(--f-label); font-size: 9px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 10px;
}
.modal-header h2 {
  font-family: var(--f-title); font-size: clamp(22px,3vw,34px);
  font-weight: 700; color: #fff; line-height: 1.1;
  letter-spacing: -0.02em; margin-bottom: 8px;
}
.modal-header p { font-size: 13px; color: rgba(255,255,255,0.58); line-height: 1.6; }

/* Hide modal panels by default */
#modal-panel-consultora,
#modal-panel-espera { display: none; }
#modal-panel-consultora.active,
#modal-panel-espera.active { display: block; }

/* Scrollbar styling */
.modal-box::-webkit-scrollbar { width: 4px; }
.modal-box::-webkit-scrollbar-track { background: transparent; }
.modal-box::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }

@media (max-width: 640px) {
  .modal-inner { padding: 8px 20px 32px; }
  #modal-overlay { align-items: flex-end; padding: 0; }
  .modal-box { border-radius: 18px 18px 0 0; max-height: 92vh; }
}

/* ============================================================
   MODAIS — Formulário Consultora + Lista de Espera
   ============================================================ */
#modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(12,10,8,0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
#modal-overlay.open {
  opacity: 1; pointer-events: all;
}
.modal-box {
  background: #1C1917;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  width: 100%; max-width: 620px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(24px);
  transition: transform 0.35s ease;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.12) transparent;
}
#modal-overlay.open .modal-box {
  transform: translateY(0);
}
.modal-close {
  position: sticky; top: 0; left: 0; right: 0;
  display: flex; justify-content: flex-end;
  padding: 16px 20px 0;
  z-index: 2;
}
.modal-close button {
  background: rgba(255,255,255,0.08);
  border: none; color: rgba(255,255,255,0.68);
  width: 34px; height: 34px; border-radius: 50%;
  font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s ease;
}
.modal-close button:hover { background: rgba(255,255,255,0.15); color: #fff; }
.modal-header {
  padding: 8px 36px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 0;
}
.modal-header .modal-tag {
  font-family: var(--f-label); font-size: 9px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 10px;
}
.modal-header h2 {
  font-family: var(--f-title); font-size: 22px; font-weight: 700;
  color: #fff; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 8px;
}
.modal-header p {
  font-size: 13px; color: rgba(255,255,255,0.58); line-height: 1.6;
}
.modal-body { padding: 0 36px 36px; }
/* Adjust form-panel inside modal */
#modal-overlay .form-panel {
  background: transparent;
  border: none; padding: 28px 0 0;
  box-shadow: none;
}
#modal-overlay .fp-step-head { padding: 0 0 20px; }
#modal-overlay .fp-step-head h3 { font-size: 16px; }
#modal-overlay .fp-body { padding: 0; }
#modal-overlay .fp-nav { padding: 20px 0 0; }
#modal-overlay .fp-sucesso-wrap { padding: 32px 0; }
@media (max-width: 640px) {
  .modal-header, .modal-body { padding-left: 20px; padding-right: 20px; }
  .modal-header { padding-top: 0; }
}

/* ============================================================
   GLOBAL MOBILE — 480px
   ============================================================ */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  :root { --pad: 48px; }
  h1, h2 { letter-spacing: -0.02em; }
  .section-title { font-size: clamp(24px, 7vw, 36px); }
  .hero-title { font-size: clamp(34px, 9vw, 52px); }
  .hero-stats { flex-direction: column; gap: 12px; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.10); padding: 12px 0; }
  .stat-item:last-child { border-bottom: none; }
  .btn-gold, .btn-ghost-light { font-size: 9px; padding: 14px 20px; }
}

/* Float CTA — mobile */
@media (max-width: 600px) {
  #float-cta { bottom: 16px; right: 16px; font-size: 9px; padding: 12px 16px; }
  #back-to-top { bottom: 16px; left: 16px; }
}

/* Explicit dimensions — prevent layout shift (CLS) */
.footer-logo img { width: auto; height: 100px; display: block; }
.nav-logo img    { width: auto; height: 44px;  display: block; }
.sobre-photo     { width: 100%; aspect-ratio: 4/5; }
