/* ═══════════════════════════════════════════════════════════
   BELFORT EXCLUSIVE — Hero Carousel (GSAP ScrollTrigger)
   ═══════════════════════════════════════════════════════════ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #C9A84C;
  --gold-soft: #B89740;
  --black: #0a0a0a;
  --white: #ffffff;
  --teal: #006869;          /* verde institucional Belfort */
  --teal-deep: #004a4b;
  --cream: #F5F4F0;         /* fundo claro premium */
  --font-serif: 'Cormorant', 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans: 'Montserrat', sans-serif;
}

html, body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  width: 100%;
  overflow-x: hidden;
}

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

/* ─── NAVBAR ────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  background: transparent;
  /* gradiente sutilíssimo só para garantir leitura sobre frames claros do vídeo */
  background-image: linear-gradient(180deg,
    rgba(10,10,10,0.35) 0%,
    rgba(10,10,10,0.12) 60%,
    rgba(10,10,10,0) 100%);
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  line-height: 1;
}
.logo-shield {
  width: 30px;
  height: 40px;
  color: var(--white);             /* branco no hero */
  flex-shrink: 0;
  display: block;
  transition: color 0.4s ease;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  letter-spacing: 0.15em;
}
.logo-name {
  font-family: var(--font-sans); font-weight: 400; font-size: 18px;
  letter-spacing: 0.25em; color: var(--white);
  transition: color 0.4s ease;
}
.logo-sub {
  font-family: var(--font-sans); font-weight: 300; font-size: 10.5px;
  letter-spacing: 0.35em; color: var(--white); margin-top: 4px;
  transition: color 0.4s ease;
}

/* ─── MENU SUPERIOR — branco padrão, dourado no hover/ativo ─── */
.nav-links {
  list-style: none; display: flex; align-items: center; gap: 18px;
}
.nav-links li a {
  position: relative;
  font-family: var(--font-sans); font-size: 10.5px; font-weight: 400;
  letter-spacing: 0.12em; color: var(--white); text-decoration: none;
  transition: color 0.3s ease;
  white-space: nowrap; cursor: pointer;
  padding: 4px 0;
}
.nav-links li a:hover { color: var(--gold); }
.nav-links li a.active {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}
.nav-links .separator {
  color: rgba(255,255,255,0.35);
  font-size: 12px;
  font-weight: 300;
}

/* ─── BOTÃO "CONHECER O GRUPO BELFORT" — transparente, branco no hover ─── */
.btn-grupo {
  font-family: var(--font-sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; color: var(--white); text-decoration: none;
  background: transparent;
  border: 1px solid var(--white);
  padding: 13px 24px; white-space: nowrap;
  transition: background-color 0.4s ease, color 0.4s ease,
              border-color 0.4s ease, box-shadow 0.4s ease;
}
.btn-grupo:hover {
  background: var(--white);
  color: var(--gold);
  border-color: var(--gold);
  box-shadow:
    0 0 0 1px var(--gold) inset,
    0 4px 18px rgba(201,168,76,0.18);
}

/* ─── HERO STAGE ──────────────────────────────────────── */
.hero-stage {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: var(--black);
}

.panels {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ─── PAINEL ────────────────────────────────────────────── */
.panel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  will-change: transform, opacity;
  transform-origin: center center;
}

.panel-video-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.panel-video,
.panel-image {
  position: absolute;
  top: 50%; left: 50%;
  width: 100%; height: 100%;
  min-width: 100%; min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: 70% 40%;   /* foca no rosto do modelo (lado direito, altura da face) */
  will-change: transform;
  image-rendering: -webkit-optimize-contrast;
  filter: saturate(1.05) contrast(1.02);
  display: block;
}

.panel-placeholder {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(60,40,20,0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 70%, rgba(40,30,50,0.30) 0%, transparent 60%),
    linear-gradient(135deg, #0a0a0a 0%, #161210 50%, #0a0a0a 100%);
}

.panel-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.35) 25%,
      rgba(10,10,10,0.30) 55%, rgba(10,10,10,0.65) 100%),
    linear-gradient(90deg,
      rgba(10,10,10,0.45) 0%, rgba(10,10,10,0.15) 40%,
      rgba(10,10,10,0.15) 60%, rgba(10,10,10,0.35) 100%);
}

.panel-overlay--vspp {
  background:
    linear-gradient(180deg,
      rgba(10,10,10,0.60) 0%, rgba(10,10,10,0.40) 30%,
      rgba(10,10,10,0.35) 60%, rgba(10,10,10,0.70) 100%),
    linear-gradient(90deg,
      rgba(10,10,10,0.65) 0%, rgba(10,10,10,0.30) 45%,
      rgba(10,10,10,0.20) 70%, rgba(10,10,10,0.30) 100%);
}

.panel-overlay--barista {
  background:
    linear-gradient(180deg,
      rgba(10,8,6,0.55) 0%, rgba(10,8,6,0.30) 30%,
      rgba(10,8,6,0.28) 60%, rgba(10,8,6,0.62) 100%),
    linear-gradient(90deg,
      rgba(10,8,6,0.60) 0%, rgba(10,8,6,0.20) 50%,
      rgba(10,8,6,0.15) 75%, rgba(10,8,6,0.35) 100%);
}

.panel-overlay--atendimento {
  background:
    linear-gradient(180deg,
      rgba(8,8,12,0.50) 0%, rgba(8,8,12,0.25) 30%,
      rgba(8,8,12,0.25) 60%, rgba(8,8,12,0.60) 100%),
    linear-gradient(90deg,
      rgba(8,8,12,0.55) 0%, rgba(8,8,12,0.15) 50%,
      rgba(8,8,12,0.15) 70%, rgba(8,8,12,0.30) 100%);
}

/* ═══════════════════════════════════════════════════════════
   MODAL DE DETALHE DO SERVIÇO PREMIUM
   ═══════════════════════════════════════════════════════════ */
.service-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6vh 4vw;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s cubic-bezier(.65,.05,.36,1),
              visibility 0s linear 0.55s;
}
.service-modal.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.55s cubic-bezier(.65,.05,.36,1);
}
body.service-modal-open { overflow: hidden; }

.service-modal-card {
  position: relative;
  width: 100%;
  max-width: 1120px;
  max-height: 88vh;
  overflow: hidden;
  background: #fff;
  border-radius: 18px;
  box-shadow:
    0 40px 100px -20px rgba(0,0,0,0.55),
    0 0 0 1px rgba(201,168,76,0.18);
  transform: scale(0.94) translateY(20px);
  opacity: 0;
  transition: transform 0.65s cubic-bezier(.65,.05,.36,1),
              opacity 0.5s ease 0.05s;
}
.service-modal.is-open .service-modal-card {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.service-modal-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 104, 105, 0.10);
  color: var(--teal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}
.service-modal-close:hover {
  background: var(--teal);
  color: #fff;
  transform: rotate(90deg);
}
.service-modal-close svg { width: 18px; height: 18px; }

.service-modal-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  height: 100%;
  overflow: hidden;
}

/* ─── Sidebar (teal) ─────────────────────────────────────── */
.service-modal-side {
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(201,168,76,0.14) 0%, transparent 55%),
    linear-gradient(180deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: #fff;
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.service-modal-shield {
  width: 56px;
  height: 74px;
  color: var(--gold);
  margin-bottom: 8px;
}
.service-modal-tag {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
}
.service-modal-name {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.15;
  color: #fff;
  letter-spacing: 0;
}
.service-modal-essence {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
}
.service-modal-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  align-self: flex-start;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--teal-deep);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 8px 22px -6px rgba(201,168,76,0.55);
  transition: background-color 0.35s ease, color 0.35s ease,
              transform 0.3s ease, box-shadow 0.35s ease;
}
.service-modal-cta svg { width: 14px; height: 14px; }
.service-modal-cta:hover {
  background: #E0BC58;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -6px rgba(201,168,76,0.65);
}

/* ─── Main content (cream) ───────────────────────────────── */
.service-modal-main {
  background: #FBFAF6;
  padding: 50px 56px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-modal-main::-webkit-scrollbar { width: 6px; }
.service-modal-main::-webkit-scrollbar-thumb {
  background: rgba(0,104,105,0.25);
  border-radius: 3px;
}

.service-modal-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--gold);
  text-transform: uppercase;
}
.service-modal-title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.12;
  color: #0a1a1a;
  letter-spacing: -0.005em;
  max-width: 580px;
}
.service-modal-rule {
  width: 44px;
  height: 1.5px;
  background: var(--gold);
  margin: 6px 0 12px 0;
}
.service-modal-desc {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: #333;
  max-width: 640px;
}
.service-modal-h4 {
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--teal-deep);
  text-transform: uppercase;
  margin-top: 8px;
}
.service-modal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 640px;
}
.service-modal-list li {
  position: relative;
  padding-left: 22px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
  color: #1a2a2a;
}
.service-modal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 1.5px;
  background: var(--gold);
}
.service-modal-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--teal-deep);
  border-left: 2px solid var(--gold);
  padding: 6px 0 6px 18px;
  margin-top: 16px;
  max-width: 580px;
}

/* ─── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .service-modal { padding: 4vh 3vw; }
  .service-modal-card { max-height: 92vh; border-radius: 14px; }
  .service-modal-grid { grid-template-columns: 1fr; }
  .service-modal-side { padding: 30px 26px; gap: 14px; }
  .service-modal-shield { width: 44px; height: 58px; }
  .service-modal-name { font-size: 22px; }
  .service-modal-main { padding: 32px 26px; }
  .service-modal-title { font-size: 26px; }
  .service-modal-desc { font-size: 13px; }
  .service-modal-quote { font-size: 14px; }
}

/* Cursor pointer nos cards clicáveis */
.premium-card[data-service] { cursor: pointer; }
.premium-card[data-service]:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 4px;
}

/* ═══════════════════════════════════════════════════════════
   TRANSIÇÃO PREMIUM — véu cinematográfico após envio do form
   Cobre toda a tela com fundo cream + escudo dourado pulsante
   antes de redirecionar pra página de obrigado.
   ═══════════════════════════════════════════════════════════ */
.premium-transition-veil {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s cubic-bezier(.65,.05,.36,1);
}
.premium-transition-veil.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.ptv-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.9s cubic-bezier(.65,.05,.36,1) 0.15s,
              opacity 0.9s cubic-bezier(.65,.05,.36,1) 0.15s;
}
.premium-transition-veil.is-visible .ptv-content {
  transform: translateY(0);
  opacity: 1;
}

.ptv-shield {
  width: 80px;
  height: 108px;
  animation: ptvPulse 1.6s ease-in-out 0.3s infinite;
}
@keyframes ptvPulse {
  0%, 100% { transform: scale(1);    opacity: 1; }
  50%      { transform: scale(1.07); opacity: 0.75; }
}

.ptv-tag {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.45em;
  color: var(--teal);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════
   SOLICITAR PROPOSTA — formulário 3 etapas (overlay slide)
   ═══════════════════════════════════════════════════════════ */
.proposta-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 200;
  background: var(--cream);
  padding: 4vh 3vw;
  overflow-y: auto;
  display: flex; align-items: center; justify-content: center;
  will-change: transform;
  /* GSAP/ScrollTrigger controla xPercent — sem transform aqui */
}
/* Permite pin com Lenis (sem travar overflow do body) */

.proposta-card {
  width: 100%;
  max-width: 1480px;
  min-height: 88vh;
  background: #fff;
  border-radius: 22px;
  display: grid;
  grid-template-columns: 360px 1fr;
  overflow: hidden;
  box-shadow:
    0 30px 80px -20px rgba(0,0,0,0.18),
    0 0 0 1px rgba(0,0,0,0.04);
}

/* ─── SIDEBAR ─────────────────────────────────────────── */
.proposta-sidebar {
  background: #F6F4F0;
  padding: 50px 44px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.proposta-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  line-height: 1;
}
.proposta-logo-shield { width: 30px; height: 40px; color: var(--gold); }
.proposta-logo-text {
  display: flex; flex-direction: column; line-height: 1;
  letter-spacing: 0.15em;
}
.proposta-logo-text > span:first-child {
  font-family: var(--font-sans); font-weight: 500;
  font-size: 16px; letter-spacing: 0.25em; color: var(--gold);
}
.proposta-logo-text .sub {
  font-family: var(--font-sans); font-weight: 300;
  font-size: 9px; letter-spacing: 0.35em; color: var(--gold);
  margin-top: 4px;
}

.proposta-intro h2 {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
  color: #0a1a1a;
  margin-bottom: 18px;
}
.intro-rule {
  width: 36px; height: 2px; background: var(--gold);
  margin-bottom: 18px; opacity: 0.85;
}
.proposta-intro p {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.55;
  color: #555;
}
.proposta-intro strong {
  color: var(--gold);
  font-weight: 600;
}

.proposta-steps {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
  position: relative;
}
.proposta-steps .step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  position: relative;
  transition: opacity 0.4s ease;
}
.proposta-steps .step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 17px; top: 48px;
  width: 1px;
  height: calc(100% - 8px);
  background: rgba(0,104,105,0.18);
}
.step-circle {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #E2E0DA;
  color: #999;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-sans);
  font-size: 14px; font-weight: 600;
  flex-shrink: 0;
  transition: background-color 0.4s ease, color 0.4s ease;
}
.step.is-active .step-circle {
  background: var(--teal);
  color: #fff;
}
.step.is-done .step-circle {
  background: var(--teal);
  color: #fff;
}
.step.is-done .step-circle::after {
  content: '✓';
  font-size: 16px;
  line-height: 1;
}
.step.is-done .step-circle { font-size: 0; }

.step-text strong {
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 500;
  color: #0a1a1a;
  display: block; margin-bottom: 2px;
}
.step-text small {
  font-family: var(--font-sans);
  font-size: 11px; color: var(--teal);
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.step.is-active .step-text small { opacity: 1; }

/* ─── Redes sociais no rodapé da sidebar ─── */
.proposta-social {
  margin-top: auto;       /* empurra para a base da sidebar */
  display: flex;
  gap: 10px;
  padding-top: 28px;
}
.proposta-social-link {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid rgba(0,104,105,0.25);
  background: #fff;
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.35s ease, color 0.35s ease,
              border-color 0.35s ease, box-shadow 0.35s ease, transform 0.25s ease;
}
.proposta-social-link svg {
  width: 16px;
  height: 16px;
  display: block;
}
.proposta-social-link:hover {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
  box-shadow: 0 6px 18px rgba(0,104,105,0.28);
  transform: translateY(-1px);
}
.proposta-social-link:active {
  transform: translateY(0);
}

/* ─── MAIN PANEL ─────────────────────────────────────── */
.proposta-main {
  position: relative;
  padding: 50px 60px 60px 60px;
}

.proposta-close,
.proposta-help {
  position: absolute;
  top: 28px;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: none;
  background: var(--teal);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.proposta-close { right: 70px; background: #E2E0DA; color: #555; }
.proposta-help  { right: 24px; }
.proposta-close svg, .proposta-help svg { width: 18px; height: 18px; }
.proposta-close:hover { background: #d3d0c9; }
.proposta-help:hover { background: var(--teal-deep); transform: scale(1.05); }

/* ═══════════════════════════════════════════════════════════
   POPUP DE AJUDA — abre no "?" ou automaticamente na Etapa 2
   Explica propósito do form + link pra "Trabalhe Conosco"
   ═══════════════════════════════════════════════════════════ */
.help-popup {
  position: absolute;
  inset: 0;
  z-index: 20;
  background: rgba(10, 26, 26, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vh 3vw;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s cubic-bezier(.65,.05,.36,1),
              visibility 0s linear 0.45s;
}
.help-popup.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s cubic-bezier(.65,.05,.36,1);
}

.help-popup-card {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: #fff;
  border-radius: 18px;
  padding: 40px 40px 32px 40px;
  box-shadow:
    0 30px 80px -20px rgba(0,0,0,0.35),
    0 0 0 1px rgba(201,168,76,0.12);
  transform: scale(0.94) translateY(15px);
  opacity: 0;
  transition: transform 0.55s cubic-bezier(.65,.05,.36,1),
              opacity 0.4s ease 0.05s;
}
.help-popup.is-open .help-popup-card {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.help-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(0,104,105,0.08);
  color: var(--teal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.help-popup-close:hover {
  background: var(--teal);
  color: #fff;
  transform: rotate(90deg);
}
.help-popup-close svg { width: 16px; height: 16px; }

.help-popup-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.help-popup-icon svg { width: 28px; height: 28px; }

.help-popup-eyebrow {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.help-popup-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  color: #0a1a1a;
  margin-bottom: 18px;
  letter-spacing: -0.005em;
}
.help-popup-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}

.help-popup-text {
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.65;
  color: #444;
  margin-bottom: 20px;
}
.help-popup-text strong {
  color: #0a1a1a;
  font-weight: 500;
}

.help-popup-divider {
  height: 1px;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(201,168,76,0.4) 20%,
    rgba(201,168,76,0.4) 80%,
    transparent 100%);
  margin: 4px 0 22px 0;
}

.help-popup-highlight {
  background: linear-gradient(135deg,
    rgba(0,104,105,0.04) 0%,
    rgba(201,168,76,0.06) 100%);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 12px;
  padding: 20px 22px;
  margin-bottom: 22px;
}

.help-popup-warning {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.6;
  color: #333;
  margin-bottom: 14px;
}
.help-popup-warning strong {
  color: var(--teal-deep);
  font-weight: 600;
}

.help-popup-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: var(--teal);
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: background-color 0.35s ease, color 0.35s ease,
              box-shadow 0.35s ease, transform 0.3s ease;
}
.help-popup-cta svg { width: 14px; height: 14px; }
.help-popup-cta:hover {
  background: var(--gold);
  color: var(--teal-deep);
  box-shadow: 0 6px 22px rgba(201,168,76,0.35);
  transform: translateY(-1px);
}

.help-popup-ok {
  width: 100%;
  padding: 14px 22px;
  background: transparent;
  color: var(--teal);
  border: 1.4px solid var(--teal);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background-color 0.35s ease, color 0.35s ease;
}
.help-popup-ok:hover {
  background: var(--teal);
  color: #fff;
}

/* Responsivo do popup */
@media (max-width: 600px) {
  .help-popup-card { padding: 32px 24px 24px 24px; }
  .help-popup-title { font-size: 24px; }
  .help-popup-text { font-size: 13px; }
}

/* ─── ETAPAS — fade entre passos ─── */
.proposta-step {
  display: none;
  animation: stepIn 0.55s cubic-bezier(.65,.05,.36,1);
}
.proposta-step.is-active { display: block; }
@keyframes stepIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.step-marker {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.18em;
  margin-bottom: 14px;
}
.step-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: #0a1a1a;
  line-height: 1.2;
  margin-bottom: 12px;
}
.step-sub {
  font-family: var(--font-sans);
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 32px;
  max-width: 680px;
}

/* ─── Services grid (etapa 1) ─── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}
.service-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  border: 1px solid #E2E0DA;
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}
.service-card--wide { grid-column: 1 / -1; }
.service-card:hover {
  border-color: var(--teal);
  background: rgba(0,104,105,0.025);
}
.service-card input { position: absolute; opacity: 0; pointer-events: none; }
.service-icon {
  width: 38px; height: 38px;
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
}
.service-icon svg { width: 100%; height: 100%; }
.service-text {
  display: flex; flex-direction: column; flex: 1;
}
.service-text strong {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: #0a1a1a;
}
.service-text small {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-top: 4px;
}
.check {
  width: 22px; height: 22px;
  border: 1.5px solid #D5D3CC;
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.3s ease, background-color 0.3s ease;
  flex-shrink: 0;
}
.service-card input:checked ~ .check {
  background: var(--teal);
  border-color: var(--teal);
}
.service-card input:checked ~ .check::after {
  content: '';
  width: 6px; height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}
.service-card:has(input:checked) {
  border-color: var(--teal);
  background: rgba(0,104,105,0.04);
}

/* ─── Form fields ─── */
.field-group-title {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: #0a1a1a;
  margin: 30px 0 14px 0;
}
.field-grid {
  display: grid;
  gap: 14px;
  margin-bottom: 8px;
}
.field-grid--3 { grid-template-columns: 1fr 1fr 1fr; }
.field-grid--2 { grid-template-columns: 1fr 1fr; }
.field--wide { grid-column: span 2; }

.field {
  display: flex; flex-direction: column;
  gap: 8px;
}
.field label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: #2a2a2a;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #DAD8D1;
  border-radius: 8px;
  background: #fff;
  font-family: var(--font-sans);
  font-size: 13px;
  color: #0a1a1a;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #999;
  font-weight: 300;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,104,105,0.10);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M3 4.5 L6 7.5 L9 4.5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 36px;
}
.field--textarea textarea { resize: vertical; min-height: 130px; line-height: 1.5; }
.field-helper { font-family: var(--font-sans); font-size: 12px; color: #777; margin-bottom: 14px; }

.scope-row {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 16px;
  margin-bottom: 30px;
}
.scope-note {
  background: #F6F4F0;
  border-radius: 8px;
  padding: 18px;
  display: flex; flex-direction: column; gap: 12px;
  color: var(--teal);
}
.scope-note svg { width: 22px; height: 22px; }
.scope-note p {
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.5;
  color: #555;
}

/* Phone row */
.phone-row {
  display: flex;
  gap: 8px;
}
.phone-flag {
  background: #F6F4F0;
  border: 1px solid #DAD8D1;
  border-radius: 8px;
  padding: 14px 12px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: #0a1a1a;
  display: flex; align-items: center; gap: 4px;
  flex-shrink: 0;
}
.phone-row input { flex: 1; }

/* Radio stack */
.radio-stack {
  border: 1px solid #DAD8D1;
  border-radius: 8px;
  padding: 12px 16px;
  display: flex; flex-direction: column;
  gap: 8px;
  background: #fff;
}
.radio-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: #0a1a1a;
  cursor: pointer;
  padding: 4px 0;
}
.radio-row input[type="radio"] {
  appearance: none;
  width: 16px; height: 16px;
  border: 1.5px solid #C5C3BC;
  border-radius: 50%;
  margin: 0;
  display: grid; place-content: center;
  transition: border-color 0.3s ease;
  cursor: pointer;
  flex-shrink: 0;
}
.radio-row input[type="radio"]::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
  transform: scale(0);
  transition: transform 0.3s ease;
}
.radio-row input[type="radio"]:checked {
  border-color: var(--teal);
}
.radio-row input[type="radio"]:checked::before {
  transform: scale(1);
}

/* Upload box */
.field--upload { margin-top: 8px; margin-bottom: 32px; }
.field--upload > label {
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 500;
  color: #2a2a2a;
  margin-bottom: 8px; display: block;
}
.upload-box {
  position: relative;
  border: 1.5px dashed #C9C7C0;
  border-radius: 10px;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 22px;
  cursor: pointer;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
.upload-box:hover {
  border-color: var(--teal);
  background: rgba(0,104,105,0.025);
}
.upload-box svg {
  width: 50px; height: 50px;
  color: var(--teal);
  flex-shrink: 0;
}
.upload-box div { display: flex; flex-direction: column; gap: 2px; }
.upload-box strong {
  font-family: var(--font-sans);
  font-size: 14px; font-weight: 600;
  color: #0a1a1a;
}
.upload-link {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.upload-box small {
  font-family: var(--font-sans);
  font-size: 11px;
  color: #888;
  margin-top: 4px;
}

/* ─── Botões do formulário ─── */
.step-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 16px;
}
.step-actions--split { justify-content: space-between; }

.btn-prop {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease,
              border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.btn-prop svg { width: 16px; height: 16px; }

.btn-prop--primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 6px 20px -4px rgba(0,104,105,0.45);
}
.btn-prop--primary:hover {
  background: var(--teal-deep);
  box-shadow:
    0 8px 26px -4px rgba(0,104,105,0.55),
    0 0 0 1px var(--gold) inset;
  transform: translateY(-1px);
}

.btn-prop--ghost {
  background: transparent;
  color: var(--teal);
  border: 1.4px solid var(--teal);
}
.btn-prop--ghost:hover {
  background: rgba(0,104,105,0.06);
  border-color: var(--teal-deep);
  color: var(--teal-deep);
}

/* ═══════════════════════════════════════════════════════════
   SEÇÃO SERVIÇOS PREMIUM — rolagem vertical padrão
   ═══════════════════════════════════════════════════════════ */
.premium-section {
  position: relative;
  width: 100%;
  min-height: 100vh;            /* limite exato da dobra: ocupa 1 viewport */
  background: var(--cream);
  color: #0a1a1a;
  padding: 100px 0 70px 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;       /* centraliza header + cards no viewport */
}

/* Assinatura final (linha dourada + marca) — encerra a página com classe */
.premium-section::after {
  content: '';
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
}

.premium-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 0 60px 0 130px;
  gap: 28px;                       /* mais próximo dos cards */
}

.premium-header {
  display: flex;
  align-items: center;             /* alinha título e setas no mesmo eixo */
  justify-content: space-between;
  gap: 40px;
  flex-shrink: 0;
}

.premium-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.2vw, 46px);  /* uma linha em telas comuns */
  font-weight: 400;
  line-height: 1.15;
  color: #0a1a1a;
  letter-spacing: -0.005em;
  white-space: nowrap;             /* mantém em linha única */
  flex: 1;
  min-width: 0;
}
.premium-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

/* ─── SETAS — bordas e ícones dourado Belfort ─── */
.premium-arrows {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  margin-top: 10px;
}
.premium-arrow {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1.4px solid var(--gold);
  background: transparent;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.4s ease, color 0.4s ease,
              box-shadow 0.4s ease, transform 0.3s ease;
}
.premium-arrow svg { width: 20px; height: 20px; }
.premium-arrow:hover {
  background: rgba(201,168,76,0.10);
  color: var(--gold);
  box-shadow:
    0 0 0 4px rgba(201,168,76,0.08),
    0 4px 20px rgba(201,168,76,0.18);
  transform: translateY(-1px);
}
.premium-arrow:active { transform: translateY(0); }

/* Trilho horizontal dos cards (scroll nativo + scroll-snap) */
.premium-track-wrapper {
  position: relative;
  width: 100%;
}
.premium-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
  width: 100%;
}
.premium-track::-webkit-scrollbar { display: none; }

/* Reveal animation on scroll */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.0s cubic-bezier(.65,.05,.36,1),
              transform 1.0s cubic-bezier(.65,.05,.36,1);
  will-change: opacity, transform;
}
.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
.premium-track-wrapper.reveal-on-scroll {
  transition-delay: 0.2s;
}

/* Card base */
.premium-card {
  flex: 0 0 280px;
  height: 100%;
  min-height: 460px;
  max-height: 540px;
  background: #ECEBE6;
  border-radius: 14px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  scroll-snap-align: start;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
  cursor: pointer;
}
.premium-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
}

.card-shield {
  width: 64px;
  height: 84px;
  color: var(--gold);
  display: block;
  margin-bottom: 28px;
}

.card-divider {
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 28px;
  opacity: 0.7;
}

.card-name {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 400;
  color: #0a1a1a;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.card-tag {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ─── CARD COM FOTO — profissional visual ───────────────── */
.premium-card--photo {
  padding: 0;
  overflow: hidden;
  background: #0a0a0a;
  align-items: stretch;
  justify-content: flex-end;
  position: relative;
}
.premium-card--photo .card-photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.premium-card--photo .card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;   /* prioriza rosto (upper portion) */
  display: block;
  transition: transform 0.7s cubic-bezier(.2,.7,.2,1);
}
.premium-card--photo:hover .card-photo img {
  transform: scale(1.04);
}
.premium-card--photo .card-body {
  position: relative;
  z-index: 2;
  padding: 22px 20px 26px 20px;
  background: linear-gradient(180deg,
    rgba(10,10,10,0) 0%,
    rgba(10,10,10,0.65) 35%,
    rgba(10,10,10,0.92) 100%);
  width: 100%;
  text-align: center;
}
.premium-card--photo .card-name {
  color: #fff;
  font-size: 26px;
  margin-bottom: 6px;
  line-height: 1.15;
}
.premium-card--photo .card-tag {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.24em;
}
.premium-card--photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.20);
}

/* ─── Card destaque — Belfort Exclusive ─── */
.premium-card--feature {
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(201,168,76,0.10) 0%, transparent 55%),
    linear-gradient(180deg, #006869 0%, #00504F 100%);
  color: #fff;
  align-items: flex-start;
  text-align: left;
  padding: 42px 32px 36px 32px;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}
.premium-card--feature::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(201,168,76,0.20);
}
.card-brand {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.22em;
  margin-bottom: 22px;
}
.card-tagline {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 22px;
}
.card-tagline em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.premium-card--feature .card-divider {
  width: 48px;
  background: var(--gold);
  margin: 0 0 22px 0;
  opacity: 0.85;
}
.card-intro {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.92);
  margin-bottom: auto;
  padding-bottom: 26px;
}
.card-social {
  display: flex;
  gap: 12px;
  margin-top: auto;
}
.card-social a {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(201,168,76,0.55);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-decoration: none;
  transition: background-color 0.4s ease, color 0.4s ease,
              border-color 0.4s ease, box-shadow 0.4s ease, transform 0.3s ease;
}
.card-social a svg { width: 14px; height: 14px; }
.card-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--teal-deep);
  box-shadow: 0 0 16px rgba(201,168,76,0.45);
  transform: translateY(-1px);
}

/* Estado inicial: ícones sociais escondidos até o reveal premium */
#cardSocialReveal a {
  opacity: 0;
  will-change: opacity, transform, filter;
}

/* ═══════════════════════════════════════════════════════════
   MODO PREMIUM — body.in-premium reescreve cores da navbar
   e oculta elementos exclusivos do hero (escudo CTA + slogan
   + redes sociais globais que migraram para o card).
   ═══════════════════════════════════════════════════════════ */
body.in-premium .navbar {
  background-image: none;       /* transparência total */
}

/* Escudo do logo: vira dourado */
body.in-premium .logo-shield {
  color: var(--gold);
}

/* "BELFORT EXCLUSIVE" vira preto */
body.in-premium .logo-name,
body.in-premium .logo-sub {
  color: #0a0a0a;
}

/* Menu: links pretos, ativo dourado */
body.in-premium .nav-links li a {
  color: #0a0a0a;
}
body.in-premium .nav-links li a:hover {
  color: var(--gold);
}
body.in-premium .nav-links li a.active {
  color: var(--gold);
}
body.in-premium .nav-links .separator {
  color: rgba(10,10,10,0.35);
}

/* Botão "CONHECER O GRUPO BELFORT": verde Belfort + borda dourada */
body.in-premium .btn-grupo {
  background: var(--teal);
  border-color: var(--gold);
  color: var(--white);
  box-shadow:
    0 4px 18px rgba(0,104,105,0.30),
    0 0 0 1px rgba(201,168,76,0.0) inset;
}
body.in-premium .btn-grupo:hover {
  background: var(--teal-deep);
  color: var(--gold);
  border-color: var(--gold);
  box-shadow:
    0 6px 22px rgba(0,104,105,0.45),
    0 0 0 1px rgba(201,168,76,0.85) inset,
    0 0 28px rgba(201,168,76,0.20);
}

/* Esconde elementos do hero que não pertencem a esta página */
body.in-premium .solicitar-shield--global,
body.in-premium .slogan-rotator,
body.in-premium .social-icons {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Setas do carrossel: verdes Belfort (em vez de dourado) */
body.in-premium .premium-arrow,
.premium-arrow {
  /* override do estilo dourado: agora verde Belfort */
}
.premium-arrow {
  border-color: var(--teal);
  color: var(--teal);
}
.premium-arrow:hover {
  background: var(--teal);
  color: #fff;
  box-shadow:
    0 0 0 4px rgba(0,104,105,0.10),
    0 6px 22px rgba(0,104,105,0.30);
}

/* Ícones sociais do card destaque: brancos (vinham invisíveis até a animação) */
#cardSocialReveal a {
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}
#cardSocialReveal a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--teal-deep);
}

/* Hide do contador romano quando entra na seção Serviços Premium */
.carousel-counter {
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.carousel-counter.is-hidden {
  opacity: 0;
  transform: translate(-50%, 12px);
  pointer-events: none;
}

/* ─── INNER LAYOUT ─────────────────────────────────────── */
.panel-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 260px 180px 130px;
  /* padding-right 260px + padding-bottom 180px = preserva canto inferior
     direito livre para o escudo (220px alto × 165px largo + 48px margem) */
}

.panel-content {
  margin-bottom: 56px;
}

.p-eyebrow {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.33em;
  color: var(--gold);
  margin-bottom: 16px;
}

.p-title {
  font-family: var(--font-serif);
  font-size: clamp(60px, 6.5vw, 98px);
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1;
  color: var(--white);
  max-width: 78%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}

.title-dot { display: inline-block; margin-left: -0.02em; }

/* Bloco inferior: subtitle → divider → description (alinhados) */
.panel-bottom-left {
  max-width: 680px;
}

.p-subtitle {
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 300;
  letter-spacing: 0.27em;
  color: var(--white);
  margin-bottom: 28px;
}

.divider {
  width: 100%;
  max-width: 680px;
  height: 1px;
  background: rgba(255,255,255,0.25);
  margin-bottom: 26px;
}

.p-desc {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--white);
  max-width: 520px;
}

/* ─── ESCUDO GLOBAL — SOLICITAR PROPOSTA (sempre clicável) ─── */
.solicitar-shield {
  position: relative;
  width: 165px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.4s ease;
  flex-shrink: 0;
}

.solicitar-shield--global {
  position: fixed;
  right: 48px;
  bottom: 48px;
  z-index: 90;       /* acima dos painéis (z:2), abaixo da navbar (z:100) */
}

.solicitar-shield--global:hover {
  transform: translateY(-2px);
}

.shield-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.shield-path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.7);
  stroke-width: 1;
  stroke-miterlimit: 10;
  vector-effect: non-scaling-stroke;
  transition: stroke 0.45s ease, stroke-width 0.45s ease, filter 0.45s ease;
}

.shield-text {
  position: relative;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--white);
  text-align: center;
  line-height: 1.9;
  z-index: 2;
  margin-top: 10px;
  transition: color 0.4s ease;
}

.solicitar-shield:hover .shield-path {
  stroke: var(--gold);
  stroke-width: 2.2;
  filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.35));
}
.solicitar-shield:hover .shield-text { color: var(--gold); }

/* ─── SLOGAN ROTATOR (institucional, fixo, crossfade) ─── */
.slogan-rotator {
  position: fixed;
  bottom: 86px;            /* mais alto, sem encostar no contador romano */
  left: 50%;
  transform: translateX(-50%);
  z-index: 75;
  width: min(720px, 70vw); /* mais estreito — não invade o escudo no canto */
  height: 22px;
  text-align: center;
  pointer-events: none;
  user-select: none;
}

.slogan-phrase {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, calc(-50% + 8px));
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.30em;
  color: var(--white);
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  filter: blur(5px);
  transition: opacity 1.1s cubic-bezier(.65,.05,.36,1),
              transform 1.1s cubic-bezier(.65,.05,.36,1),
              filter 1.1s cubic-bezier(.65,.05,.36,1);
  text-shadow: 0 1px 8px rgba(0,0,0,0.55);
}

.slogan-phrase em {
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 17px;
  letter-spacing: 0.15em;
  text-transform: none;
  font-weight: 400;
}

.slogan-phrase.is-active {
  opacity: 1;
  transform: translate(-50%, -50%);
  filter: blur(0);
}

/* ─── CONTADOR ROMANO (I — IV) ──────────────────────────── */
.carousel-counter {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 70;
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.08em;
  pointer-events: none;
  user-select: none;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
}
.carousel-counter .cc-line {
  display: inline-block; width: 44px; height: 1px;
  background: rgba(255, 255, 255, 0.45);
}
.carousel-counter .cc-current { min-width: 28px; text-align: right; }
.carousel-counter .cc-total   { min-width: 28px; text-align: left; color: rgba(255, 255, 255, 0.6); }

/* ─── SOCIAL ICONS ─────────────────────────────────────── */
.social-icons {
  position: fixed;
  left: 0;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 22px 18px;
  background: var(--white);
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
  z-index: 85;
}
.social-link {
  display: flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; color: #0a0a0a;
  transition: color 0.3s ease, transform 0.3s ease;
}
.social-link svg { width: 100%; height: 100%; display: block; }
.social-link:hover { color: var(--gold); transform: scale(1.08); }

/* ─── RESPONSIVO ─────────────────────────────────────────── */
@media (max-width: 1280px) {
  .p-title { font-size: clamp(64px, 8vw, 104px); }
  .panel-inner { padding: 110px 220px 160px 80px; }
  .solicitar-shield--global { right: 32px; bottom: 32px; width: 140px; height: 188px; }
  .premium-section { padding: 90px 0 110px 0; }
  .premium-inner { padding: 0 40px 0 80px; gap: 24px; }
  .premium-title { font-size: clamp(28px, 3vw, 38px); }
  .premium-card { flex-basis: 250px; min-height: 420px; max-height: 480px; }
  .card-name { font-size: 26px; }
  .card-tagline { font-size: 26px; }
}

@media (max-width: 900px) {
  .premium-section { padding: 70px 0 90px 0; }
  .premium-inner { padding: 0 24px; gap: 22px; }
  .premium-title { font-size: 24px; white-space: normal; }  /* libera quebra no mobile */
  .premium-header { flex-direction: column; align-items: stretch; gap: 18px; }
  .premium-arrows { margin-top: 0; align-self: flex-end; }
  .premium-card { flex-basis: 78vw; max-width: 320px; min-height: 380px; padding: 28px 22px; }
  .card-shield { width: 54px; height: 70px; margin-bottom: 22px; }
  .card-name { font-size: 22px; }
  .card-tagline { font-size: 22px; }
  .card-intro { font-size: 11.5px; }
}

@media (max-width: 900px) {
  .navbar { padding: 18px 24px; }
  .nav-links { display: none; }
  .p-title { font-size: 84px; }
  .panel-inner { padding: 100px 24px 220px 24px; }
  .panel-content { margin-bottom: 36px; }
  .p-eyebrow { font-size: 13px; letter-spacing: 0.28em; }
  .p-subtitle { font-size: 14px; letter-spacing: 0.22em; margin-bottom: 22px; }
  .p-desc { font-size: 15px; }
  .solicitar-shield--global {
    right: 16px; bottom: 96px;
    width: 120px; height: 162px;
  }
  .shield-text { font-size: 13px; letter-spacing: 0.18em; }
  .slogan-rotator { bottom: 60px; width: 86vw; }
  .slogan-phrase { font-size: 12px; letter-spacing: 0.22em; }
  .slogan-phrase em { font-size: 16px; }
  .carousel-counter { font-size: 18px; bottom: 20px; }
  .social-icons { bottom: 0; padding: 14px 12px; gap: 14px; }
  .social-link { width: 20px; height: 20px; }
  .btn-grupo { font-size: 11px; padding: 11px 18px; }
}

@media (max-width: 600px) {
  .p-title { font-size: 64px; }
}

/* ═══════════════════════════════════════════════════════════════
   NOTEBOOK / LAPTOP — 1280px–1600px (13"–15" telas)
   Recalibra padding, tipografia e escudo pro layout respirar
   sem ficar apertado nem mudar a hierarquia visual.
   ═══════════════════════════════════════════════════════════════ */
@media (min-width: 1281px) and (max-width: 1600px) {
  /* NAVBAR */
  .navbar { padding: 18px 36px; }
  .logo-shield { width: 26px; height: 34px; }
  .logo-name { font-size: 16px; letter-spacing: 0.22em; }
  .logo-sub  { font-size: 9.5px; letter-spacing: 0.30em; }
  .nav-links { gap: 14px; }
  .nav-links li a { font-size: 9.5px; letter-spacing: 0.10em; }
  .nav-links .separator { font-size: 11px; }
  .btn-grupo { font-size: 10px; padding: 11px 18px; letter-spacing: 0.12em; }

  /* HERO PAINEL */
  .panel-inner { padding: 100px 210px 160px 60px; }
  .p-eyebrow { font-size: 11.5px; letter-spacing: 0.30em; margin-bottom: 14px; }
  .p-title { font-size: clamp(56px, 6vw, 88px); max-width: 82%; }
  .p-subtitle { font-size: 13px; letter-spacing: 0.24em; margin-bottom: 22px; }
  .p-desc { font-size: 14px; line-height: 1.65; max-width: 480px; }
  .divider { max-width: 560px; margin-bottom: 22px; }
  .panel-content { margin-bottom: 44px; }

  /* ESCUDO SOLICITAR PROPOSTA */
  .solicitar-shield--global {
    right: 32px; bottom: 32px;
    width: 138px; height: 186px;
  }
  .shield-text { font-size: 13px; letter-spacing: 0.16em; }

  /* SLOGAN + CONTADOR */
  .slogan-rotator { bottom: 40px; }
  .slogan-phrase { font-size: 11px; letter-spacing: 0.22em; }
  .slogan-phrase em { font-size: 15px; }
  .carousel-counter { font-size: 18px; bottom: 22px; }

  /* SOCIAL ICONS — encolhe pra não brigar com conteúdo */
  .social-icons { bottom: 24px; padding: 16px 12px; gap: 14px; }
  .social-link { width: 18px; height: 18px; }
}

/* ═══════════════════════════════════════════════════════════════
   NOTEBOOK PEQUENO — 1024px–1280px (13" compactos)
   Ajusta ainda mais o padding e escudo pra caber sem estourar.
   ═══════════════════════════════════════════════════════════════ */
@media (min-width: 1024px) and (max-width: 1280px) {
  .navbar { padding: 16px 28px; }
  .nav-links { gap: 12px; }
  .nav-links li a { font-size: 9px; letter-spacing: 0.08em; }
  .btn-grupo { font-size: 9.5px; padding: 10px 16px; }
  .panel-inner { padding: 90px 190px 150px 48px; }
  .p-title { font-size: clamp(52px, 5.6vw, 78px); max-width: 88%; }
  .p-subtitle { font-size: 12.5px; }
  .p-desc { font-size: 13.5px; max-width: 440px; }
  .solicitar-shield--global {
    right: 24px; bottom: 24px;
    width: 128px; height: 172px;
  }
  .shield-text { font-size: 12px; letter-spacing: 0.14em; }
  .slogan-rotator { bottom: 32px; width: 62vw; }
  .carousel-counter { bottom: 18px; font-size: 16px; }
  .social-icons { bottom: 16px; padding: 14px 10px; gap: 12px; }
  .social-link { width: 17px; height: 17px; }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE MENU / HAMBURGER — sempre presente no DOM,
   invisível no desktop, ativo abaixo de 767px
   ═══════════════════════════════════════════════════════════════ */
.nav-burger {
  display: none;
  position: relative;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: background 0.3s, border-color 0.3s;
}
.nav-burger span {
  display: block;
  width: 18px; height: 1.5px;
  background: #fff;
  transition: transform 0.35s ease, opacity 0.25s ease;
}
.nav-burger.is-active { background: rgba(255,255,255,0.10); border-color: #fff; }
.nav-burger.is-active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.is-active span:nth-child(2) { opacity: 0; }
.nav-burger.is-active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Overlay do menu — fullscreen teal */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: linear-gradient(160deg, #006869 0%, #00504F 55%, #003F40 100%);
  padding: 24px 26px 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(.65,.05,.36,1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.is-open { transform: translateX(0); }

.mobile-menu-close {
  position: absolute; top: 20px; right: 22px;
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.35);
  background: transparent;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.mobile-menu-close svg { width: 18px; height: 18px; }

.mobile-menu-brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--gold);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.20em;
  padding-top: 8px;
}
.mobile-menu-shield { width: 26px; height: 34px; color: var(--gold); }
.mobile-menu-brand em {
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--gold);
  text-transform: none;
  margin-left: 4px;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  margin-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.16);
}
.mobile-menu-nav a {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.16);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 1.15;
  font-weight: 400;
  transition: color 0.25s ease, transform 0.25s ease;
}
.mobile-menu-nav a:active { color: var(--gold); transform: translateX(4px); }
.mobile-menu-nav a svg {
  width: 26px; height: 26px;
  flex-shrink: 0;
  color: rgba(255,255,255,0.55);
  transition: color 0.25s;
}
.mobile-menu-nav a:active svg { color: var(--gold); }

.mobile-menu-footer {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.16);
}
.mobile-menu-sub {
  font-family: var(--font-serif);
  font-size: 22px;
  color: #fff;
  margin-bottom: 6px;
}
.mobile-menu-desc {
  font-family: var(--font-sans);
  font-size: 12.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  margin-bottom: 20px;
  max-width: 320px;
}
.mobile-menu-social { display: flex; gap: 12px; }
.mobile-menu-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.30);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.mobile-menu-social a svg { width: 18px; height: 18px; }
.mobile-menu-social a:active { background: var(--gold); border-color: var(--gold); color: var(--teal-deep); }

/* CTA mobile inline (aparece nos painéis do hero e após premium) */
.panel-mobile-cta,
.premium-mobile-cta { display: none; }

/* Hover só em dispositivos com cursor real (desktop) */
@media (hover: hover) and (pointer: fine) {
  .panel-mobile-cta:hover {
    background: #fff;
    color: var(--teal);
    border-color: var(--gold);
  }
  .premium-mobile-cta:hover {
    background: #fff;
    color: var(--teal);
    border: 1px solid var(--teal);
  }
}

/* Indicadores mobile */
.mobile-dots {
  display: none;
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 12;
  gap: 8px;
  pointer-events: auto;
}
.mobile-dots button {
  width: 22px; height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.35);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, width 0.3s ease;
}
.mobile-dots button[aria-selected="true"] {
  background: var(--gold);
  width: 30px;
}

/* ═══════════════════════════════════════════════════════════════
   BREAKPOINT MOBILE — ≤767px (celular)
   Composição mobile independente. Não é apenas desktop encolhido.
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  /* Evita rolagem horizontal no documento */
  html, body { overflow-x: clip; }

  /* NAVBAR mobile — só logo + burger */
  .navbar {
    padding: max(14px, env(safe-area-inset-top)) 20px 14px 20px;
  }
  .nav-links { display: none !important; }
  .btn-grupo { display: none !important; }
  .nav-burger { display: flex !important; }
  .logo-shield { width: 26px; height: 34px; }
  .logo-name { font-size: 15px; letter-spacing: 0.22em; }
  .logo-sub { font-size: 9px; letter-spacing: 0.28em; }

  /* HERO mobile — carrossel de FADE (não scroll-snap) */
  .hero-stage {
    position: relative;
    height: 100vh; height: 100svh;
    min-height: 620px;
    overflow: hidden;
    touch-action: pan-y;
  }
  .panels {
    position: absolute;
    inset: 0;
    display: block;   /* volta pra absoluto overlap */
  }
  .panel {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    flex: none;
    transform: none !important;
    scroll-snap-align: none;
    visibility: visible;
  }

  /* Panel-inner: hierarquia mobile */
  .panel-inner {
    padding: 88px 22px 108px 22px;
    padding-bottom: max(108px, env(safe-area-inset-bottom));
    justify-content: flex-end;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .panel-content { margin-bottom: 18px; }
  .p-eyebrow {
    font-size: 10px;
    letter-spacing: 0.24em;
    margin-bottom: 12px;
  }
  .p-title {
    font-size: clamp(42px, 13.5vw, 60px);
    max-width: 100%;
    line-height: 0.98;
    margin-bottom: 0;
  }
  .panel-bottom-left { max-width: 100%; }
  .p-subtitle {
    font-size: 11.5px;
    letter-spacing: 0.20em;
    margin-bottom: 12px;
  }
  .divider { max-width: 100%; margin-bottom: 14px; }
  .p-desc {
    font-size: 13.5px;
    line-height: 1.55;
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Overlay mobile mais forte na base */
  .panel-overlay,
  .panel-overlay--vspp,
  .panel-overlay--barista {
    background: linear-gradient(180deg,
      rgba(10,10,10,0.12) 0%,
      rgba(10,10,10,0.35) 38%,
      rgba(10,10,10,0.88) 100%) !important;
  }

  /* Object-position individual por slide — cada rosto na altura certa */
  .panel[data-index="0"] .panel-image { object-position: 50% 28% !important; }
  .panel[data-index="1"] .panel-image { object-position: 50% 32% !important; }
  .panel[data-index="2"] .panel-image { object-position: 50% 30% !important; }

  /* CTA mobile HORIZONTAL — substitui escudo vertical no hero */
  .solicitar-shield--global { display: none !important; }
  .panel-mobile-cta {
    display: block;
    margin-top: 20px;
    padding: 15px 22px;
    min-height: 50px;
    text-align: center;
    background: var(--gold);
    color: var(--teal-deep);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--gold);
    border-radius: 4px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.28);
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
  }
  .panel-mobile-cta:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
  }
  .panel-mobile-cta:active {
    background: #fff;
    color: var(--teal);
    border-color: #fff;
    transform: scale(0.98);
  }

  /* Indicadores dots visíveis no mobile */
  .mobile-dots { display: flex; }

  /* Slogan rotator — sem crop lateral */
  .slogan-rotator {
    display: none; /* desativado no mobile — economiza espaço + evita crop */
  }
  .carousel-counter { display: none; }

  /* Social icons fixos — ocultos (já estão no menu mobile) */
  .social-icons { display: none !important; }

  /* PREMIUM SECTION — 1 card completo + peek do próximo */
  .premium-section { padding: 56px 0 68px 0; }
  .premium-inner { padding: 0 22px; }
  .premium-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .premium-title { font-size: 22px; line-height: 1.3; white-space: normal; }
  .premium-arrows { align-self: flex-end; }
  .premium-track-wrapper {
    padding: 0 22px 14px 0;   /* padding-right = peek do próximo card */
    scroll-padding-left: 22px;
  }
  .premium-track {
    scroll-snap-type: x mandatory;
    scroll-padding-inline-start: 0;
    padding-right: 40vw; /* garante ver 10-15% do último card */
  }
  .premium-card {
    flex: 0 0 82vw;
    max-width: 340px;
    min-height: 420px;
    max-height: 460px;
    padding: 22px 20px;
    scroll-snap-align: start;
  }
  .premium-card--feature {
    padding: 30px 26px;
    min-height: 420px;
  }
  .premium-card--feature .card-brand { font-size: 12px; margin-bottom: 16px; }
  .premium-card--feature .card-tagline { font-size: 26px; margin-bottom: 18px; }
  .premium-card--feature .card-intro { font-size: 12.5px; }
  .card-shield { width: 52px; height: 68px; margin-bottom: 18px; }
  .premium-card--photo .card-body { padding: 18px 16px 22px 16px; }
  .premium-card--photo .card-name { font-size: 22px; }
  .premium-card--photo .card-tag { font-size: 9.5px; letter-spacing: 0.22em; }

  /* CTA Premium mobile abaixo do carrossel */
  .premium-mobile-cta {
    display: block;
    margin: 28px 22px 0 22px;
    padding: 15px 22px;
    min-height: 50px;
    text-align: center;
    background: var(--teal);
    color: #fff;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.25s, transform 0.2s;
  }
  .premium-mobile-cta:active { background: var(--teal-deep); transform: scale(0.98); }

  /* Em telas ≥390px mostra 2 cards com peek */
  @media (min-width: 390px) {
    .premium-card { flex-basis: 70vw; }
  }

  /* ═══════════════════════════════════════════════════════
     FORMULÁRIO MOBILE — nomes reais das classes usadas no HTML.
     Estrutura: .proposta-overlay > .proposta-card (grid) >
                .proposta-sidebar (topo mobile) + .proposta-main (conteúdo)
     ═══════════════════════════════════════════════════════ */
  .proposta-overlay {
    align-items: stretch;
    padding: 0;
  }
  /* Overlay aberto no mobile — anula transforms do GSAP desktop */
  .proposta-overlay.is-open {
    position: fixed !important;
    inset: 0 !important;
    z-index: 950;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #fff;
    display: block;
  }
  .proposta-card {
    width: 100vw;
    max-width: 100vw;
    min-height: 100dvh;
    border-radius: 0;
    display: block;   /* Desliga o grid 2-colunas do desktop */
    grid-template-columns: none;
    box-shadow: none;
    overflow: visible;
  }

  /* SIDEBAR vira o header do modal mobile */
  .proposta-sidebar {
    background: var(--cream);
    padding: 20px 22px 14px 22px;
    gap: 14px;
    border-bottom: 1px solid rgba(0,104,105,0.10);
  }
  .proposta-logo-shield { width: 30px; height: 40px; }
  .proposta-logo-text span:not(.sub) { font-size: 15px; letter-spacing: 0.22em; }
  .proposta-logo-text .sub { font-size: 9px; letter-spacing: 0.30em; }

  .proposta-intro h2 {
    font-size: 22px;
    margin-bottom: 8px;
    line-height: 1.15;
  }
  .proposta-intro p {
    font-size: 12.5px;
    margin-top: 8px;
    line-height: 1.5;
  }
  .intro-rule { width: 32px; margin: 6px 0 10px 0; }

  /* Steps viram chips 3 colunas */
  .proposta-steps {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 12px 0 0 0;
    padding: 0;
    list-style: none;
  }
  .proposta-steps .step {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 10px 6px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid rgba(0,104,105,0.18);
    text-align: center;
    min-width: 0;
  }
  .proposta-steps .step:not(:last-child)::before { display: none; }
  .proposta-steps .step.is-active {
    background: var(--teal);
    border-color: var(--teal);
  }
  .proposta-steps .step-circle {
    width: 22px; height: 22px;
    font-size: 11px;
    margin: 0 !important;
    display: flex; align-items: center; justify-content: center;
    background: #E5E1D8;
    color: #6b6b6b;
    border-radius: 50%;
  }
  .proposta-steps .step.is-active .step-circle {
    background: var(--gold);
    color: var(--teal-deep);
  }
  .proposta-steps .step-text {
    display: block;
    text-align: center;
  }
  .proposta-steps .step-text strong {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #0a1a1a;
    line-height: 1.2;
  }
  .proposta-steps .step.is-active .step-text strong { color: #fff; }
  .proposta-steps .step-text small { display: none; }

  /* Redes sociais na sidebar — escondidas no mobile (já estão no menu overlay) */
  .proposta-social { display: none; }

  /* MAIN — onde vive o conteúdo das etapas */
  .proposta-main {
    padding: 24px 22px 40px 22px;
    background: #fff;
  }
  .proposta-close {
    top: 14px; right: 14px;
    width: 38px; height: 38px;
    z-index: 5;
  }
  .proposta-help {
    top: 14px; right: 62px;
    width: 38px; height: 38px;
    z-index: 5;
  }

  /* CONTEÚDO DAS ETAPAS */
  .proposta-step {
    padding: 0;
  }
  .step-marker {
    font-size: 10.5px;
    letter-spacing: 0.24em;
    color: var(--gold);
    margin-bottom: 8px;
    padding-right: 100px; /* reserva espaço pros botões ? e X no canto sup. direito */
  }
  .step-title {
    font-size: 22px;
    line-height: 1.25;
    margin-bottom: 8px;
    padding-right: 100px; /* mesma reserva pra evitar sobreposição com help+close */
  }
  .step-sub {
    font-size: 13.5px;
    margin-bottom: 20px;
    line-height: 1.55;
  }

  /* ETAPA 2 — Escopo: textarea grande + nota EMBAIXO */
  .scope-row {
    display: block !important;
    grid-template-columns: none !important;
    gap: 0 !important;
    margin-bottom: 22px;
  }
  .scope-row .field--textarea {
    width: 100%;
    margin-bottom: 12px;
  }
  .scope-row textarea {
    min-height: 200px !important;
    height: 220px;
    font-size: 15px !important;
    line-height: 1.5;
    padding: 14px 16px !important;
    resize: vertical;
  }
  .scope-note {
    padding: 14px 16px;
    background: #F6F4F0;
    border-radius: 8px;
    display: flex;
    flex-direction: row !important;
    align-items: center;
    gap: 12px;
  }
  .scope-note svg { width: 20px; height: 20px; flex-shrink: 0; }
  .scope-note p {
    font-size: 12.5px;
    line-height: 1.5;
    margin: 0;
  }

  /* ETAPA 3 — Grid 2 colunas vira 1 coluna (uniformiza objetivo x atendimento) */
  .field-grid,
  .field-grid--2,
  .field-grid--3 {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .field label {
    display: block;
    margin-bottom: 8px;
    font-size: 12.5px;
  }
  .radio-stack {
    padding: 14px 16px;
    gap: 10px;
    background: #fff;
    border: 1px solid #DAD8D1;
    border-radius: 8px;
  }
  .radio-row {
    padding: 8px 0;
    font-size: 14px;
    min-height: 40px;
  }

  /* Upload compacto no mobile */
  .upload-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 22px 18px;
    gap: 10px;
  }
  .upload-box svg { width: 34px; height: 34px; }
  .upload-box strong { font-size: 14px; }
  .upload-box small { font-size: 11px; }

  /* Nav actions do form: full-width empilhados, Próxima em cima */
  .step-actions,
  .step-actions--split {
    display: flex !important;
    flex-direction: column-reverse !important;
    gap: 10px !important;
    margin-top: 24px;
  }
  .btn-prop,
  .btn-prop--primary,
  .btn-prop--ghost {
    width: 100%;
    justify-content: center;
    min-height: 50px;
  }

  /* Grid de serviços — 1 coluna */
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  .service-card {
    min-height: 68px;
    padding: 14px 16px !important;
  }

  /* Grid de campos — 1 coluna */
  .form-grid,
  .form-row {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .form-field label { font-size: 12px; }
  .form-field input,
  .form-field select,
  .form-field textarea {
    min-height: 48px;
    font-size: 16px !important; /* previne zoom iOS */
    padding: 12px 14px !important;
  }
  .form-field textarea { min-height: 140px; }

  /* Nav de botões */
  .step-nav,
  .proposta-nav {
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
    margin-top: 24px;
  }
  .step-nav .btn-back,
  .step-nav .btn-next,
  .step-nav .btn-submit,
  .proposta-nav .btn-back,
  .proposta-nav .btn-next,
  .proposta-nav .btn-submit,
  .btn-next, .btn-back, .btn-submit {
    width: 100%;
    justify-content: center;
    min-height: 50px;
  }

  /* Help popup mobile */
  .help-popup-card {
    padding: 32px 22px 28px 22px;
    max-width: 92vw;
  }
  .help-popup-title { font-size: 22px; line-height: 1.2; }
  .help-popup-text { font-size: 13px; }
  .help-popup-warning { font-size: 12.5px; }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE PEQUENO — ≤380px (iPhone SE etc)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 380px) {
  .p-title { font-size: 44px; }
  .premium-card { flex-basis: 78vw; }
  .mobile-menu-nav a { font-size: 22px; padding: 18px 0; }
}
