/* =========================================================
   DOMUS — Corretora de Saúde · v7
   Header capsule glass (estilo moneygirls.com.br)
   ========================================================= */

:root {
  --gold: #D69C31;
  --gold-light: #F3D68B;
  --gold-soft: rgba(214, 156, 49, 0.12);
  --gold-line: rgba(214, 156, 49, 0.3);

  --black: #0A0A0A;
  --black-deep: #050505;
  --black-soft: #161616;
  --black-medium: #1E1E1E;
  --white: #FFFFFF;
  --off-white: #F8F6F1;
  --cream: #F5F1E8;
  --gray-100: #ECECEC;
  --gray-300: #BFBFBF;
  --gray-500: #7E7E7E;
  --gray-600: #5A5A5A;
  --gray-700: #404040;

  --whatsapp: #25D366;
  --whatsapp-hover: #1EBE5D;

  --font-display: 'Lexend Zetta', 'Inter', sans-serif;
  --font-sans: 'Hanken Grotesk', 'Inter', sans-serif;

  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px;
  --s-9: 96px; --s-10: 128px;

  --container: 1280px;
  --container-narrow: 880px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-pill: 999px;

  --transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--black);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--gold); color: var(--black); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--s-5); }
.container--narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--s-5); }

/* ============ TIPOGRAFIA ============ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--black);
}
h1 { font-size: clamp(2.4rem, 4.6vw, 3.8rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 3.6vw, 2.8rem); font-weight: 500; }
h3 { font-size: 1.4rem; font-weight: 500; }

.gold-em { color: var(--gold); font-weight: 500; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.7rem;
  color: var(--gold);
}
.eyebrow--center { display: block; text-align: center; margin: 0 auto var(--s-4); }
.eyebrow--line { display: inline-flex; align-items: center; gap: var(--s-3); }
.eyebrow--line::before, .eyebrow--line::after {
  content: ''; width: 32px; height: 1px; background: currentColor; opacity: 0.6;
}

.section-titulo {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 500;
  text-align: center;
  margin: var(--s-3) auto var(--s-3);
  max-width: 880px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.section-titulo .gold-em { color: var(--gold); font-weight: 500; }
.section-sub {
  text-align: center;
  font-size: 1rem;
  color: var(--gray-600);
  margin: 0 auto var(--s-9);
  max-width: 640px;
  line-height: 1.75;
  font-weight: 400;
}
.section--dark .section-titulo { color: var(--white); }
.section--dark .section-sub { color: rgba(255, 255, 255, 0.6); }

/* ============ BOTÕES ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-align: center;
}
.btn-gold { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(214, 156, 49, 0.35);
}
.btn-whatsapp { background: var(--whatsapp); color: var(--white); border-color: var(--whatsapp); }
.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  border-color: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.32);
}
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.3); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-lg { padding: 18px 40px; font-size: 0.95rem; }
.btn-sm { padding: 10px 22px; font-size: 0.8rem; letter-spacing: 0.06em; }

/* =================================================
   HEADER — estilo MoneyGirls (capsule glass flutuante)
   Aparece SÓ quando rola
   ================================================= */
.header {
  pointer-events: none;
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 14px 16px;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.header.visible {
  opacity: 1;
  transform: translateY(0);
}

.navbar-shell {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: var(--s-2);
  padding: 10px 14px 10px 18px;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  max-width: 100%;
}
.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 4px 8px;
  color: var(--white);
  flex-shrink: 0;
  transition: opacity var(--transition);
}
.navbar-brand:hover { opacity: 0.85; }
.navbar-brand img { height: 30px; width: auto; }
.navbar-brand__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1;
}
.navbar-brand__sub {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.55rem;
  color: var(--gold);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  display: block;
  line-height: 1;
  margin-top: 4px;
}
.navbar-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.12);
  margin: 0 var(--s-2);
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.navbar-link {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  white-space: nowrap;
}
.navbar-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}
.navbar-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  background: var(--gold);
  color: var(--black);
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  flex-shrink: 0;
  transition: all var(--transition);
  margin-left: var(--s-2);
}
.navbar-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
@media (max-width: 880px) {
  .navbar-divider { display: none; }
  .navbar-links { display: none; }
  .navbar-brand__sub { display: none; }
}

/* ============ HERO CLARO E SOFISTICADO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--cream);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-7) 0 var(--s-6);
  overflow: hidden;
  text-align: center;
}

/* Camadas de luz dourada flutuantes (premium, sutil) */
.hero__lights {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__light {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.9;
  will-change: transform;
}
.hero__light--1 {
  width: 600px;
  height: 600px;
  top: -10%;
  left: -10%;
  background: radial-gradient(circle, rgba(214, 156, 49, 0.45), rgba(214, 156, 49, 0));
  animation: float1 22s ease-in-out infinite;
}
.hero__light--2 {
  width: 700px;
  height: 700px;
  bottom: -15%;
  right: -15%;
  background: radial-gradient(circle, rgba(243, 214, 139, 0.55), rgba(243, 214, 139, 0));
  animation: float2 28s ease-in-out infinite;
}
.hero__light--3 {
  width: 500px;
  height: 500px;
  top: 30%;
  right: 20%;
  background: radial-gradient(circle, rgba(214, 156, 49, 0.28), rgba(214, 156, 49, 0));
  animation: float3 25s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(80px, 60px) scale(1.1); }
  66% { transform: translate(40px, -40px) scale(0.95); }
}
@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-100px, -80px) scale(1.15); }
}
@keyframes float3 {
  0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
  50% { transform: translate(-60px, 40px) scale(0.9) rotate(20deg); }
}

/* Pattern sutil de pontos dourados pra textura premium */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'><circle cx='1' cy='1' r='0.6' fill='%23D69C31' opacity='0.18'/></svg>");
  background-size: 30px 30px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
}

/* Suaviza a borda inferior do hero pra próxima seção */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--cream));
  z-index: 1;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--s-5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-6);
}

/* Logo dourada com glow premium */
.hero__logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-5);
}
.hero__logo-wrap::before {
  /* Halo dourado sutil atrás da logo */
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(214, 156, 49, 0.28) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
  filter: blur(20px);
}
.hero__logo-com-nome {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 320px;
  height: auto;
  /* Filter pra transformar logo BRANCA em DOURADA */
  filter:
    brightness(0) saturate(100%)
    invert(72%) sepia(60%) saturate(450%) hue-rotate(3deg) brightness(89%) contrast(86%)
    drop-shadow(0 8px 24px rgba(214, 156, 49, 0.35));
  animation: float 7s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero__content { max-width: 720px; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  font-weight: 500;
  color: var(--black);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-5);
}
.hero h1 .gold-em { color: var(--gold); font-weight: 500; font-style: italic; }
.hero__sub {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0 auto var(--s-6);
  max-width: 540px;
  font-weight: 400;
}
.hero__ctas {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
  justify-content: center;
}

/* Rede de operadoras — centralizada no hero, agora em fundo claro */
.hero__rede {
  width: 100%;
  max-width: 720px;
  padding-top: var(--s-6);
  border-top: 1px solid rgba(214, 156, 49, 0.25);
  text-align: center;
}
.hero__rede-label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: var(--s-4);
}
.hero__rede-logos {
  display: flex;
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}
.hero__rede-logos img {
  width: 130px;
  height: 42px;
  object-fit: contain;
  /* Em fundo claro: cinza escala, hover colorido */
  filter: grayscale(100%);
  opacity: 0.55;
  transition: filter 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
  flex-shrink: 0;
}
.hero__rede-logos img:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.05);
}
@media (max-width: 720px) {
  .hero__rede-logos img { width: 96px; height: 32px; }
  .hero__rede-logos { gap: 16px; }
}

.hero__scroll {
  /* Agora dentro do flow normal — fica logo após operadoras */
  margin-top: var(--s-5);
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.55;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
  animation: pulseHint 2.5s ease-in-out infinite;
}
.hero__scroll::after {
  content: '';
  width: 1px; height: 24px;
  background: currentColor;
}
@keyframes pulseHint {
  0%, 100% { opacity: 0.4; transform: translateY(0); }
  50% { opacity: 0.7; transform: translateY(-3px); }
}

/* ============ STATS BAND ============ */
.stats-band {
  background: var(--black);
  color: var(--white);
  padding: var(--s-7) 0;
  position: relative;
  border-bottom: 1px solid rgba(214, 156, 49, 0.18);
}
.stats-band::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 80px; height: 1px;
  background: var(--gold);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
  text-align: center;
}
@media (max-width: 720px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-7) var(--s-5); }
}
.stat__value {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--s-2);
  font-weight: 500;
}
.stat__value sup { font-size: 0.5em; vertical-align: super; margin-left: 2px; }
.stat__label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

/* ============ SEÇÕES ============ */
.section { padding: var(--s-10) 0; position: relative; }
.section--dark { background: var(--black); color: var(--white); }
.section--cream { background: var(--cream); }
.section--off { background: var(--off-white); }
.section--white { background: var(--white); }

.section__ornament {
  display: block;
  width: 80px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto var(--s-5);
  opacity: 0.6;
}

/* ============ QUEM SOMOS — centralizado, sem card escuro ============ */
.sobre__content {
  max-width: 760px;
  margin: var(--s-7) auto 0;
  text-align: center;
}
.sobre__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 500;
  margin-bottom: var(--s-5);
  line-height: 1.15;
}
.sobre__content h2 .gold-em { color: var(--gold); }
.sobre__content p {
  font-size: 1.02rem;
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: var(--s-4);
  text-align: left;
}
.sobre__content p:last-of-type { margin-bottom: var(--s-6); }
.sobre__highlights {
  list-style: none;
  background: var(--white);
  border-left: 3px solid var(--gold);
  padding: var(--s-5) var(--s-6);
  box-shadow: 0 8px 32px rgba(10, 10, 10, 0.06);
  text-align: left;
  max-width: 680px;
  margin: 0 auto;
}
.sobre__highlights li {
  padding: var(--s-3) 0;
  font-size: 0.95rem;
  color: var(--gray-600);
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.sobre__highlights li:last-child { border: none; }
.sobre__highlights li::before {
  content: '◇';
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 6px;
  flex-shrink: 0;
}
.sobre__highlights strong { color: var(--black); font-weight: 600; }

/* ============ FEATURES ============ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
  margin-top: var(--s-7);
}
@media (max-width: 720px) { .features-grid { grid-template-columns: 1fr; } }
.feature {
  padding: var(--s-7) var(--s-6);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(214, 156, 49, 0.18);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.5s ease;
}
.feature:hover {
  border-color: var(--gold);
  background: rgba(214, 156, 49, 0.04);
  transform: translateY(-3px);
}
.feature:hover::before { width: 100%; }
.feature__num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: var(--s-3);
  display: block;
}
.feature h3 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: var(--s-3);
  font-weight: 500;
}
.feature p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.96rem;
  line-height: 1.75;
}

/* ============ OPERADORAS (sem caixote branco — estilo do hero) ============ */
.operadoras-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--s-7) var(--s-5);
  margin-top: var(--s-7);
}
@media (max-width: 980px) { .operadoras-grid { grid-template-columns: repeat(4, 1fr); gap: var(--s-6) var(--s-5); } }
@media (max-width: 560px) { .operadoras-grid { grid-template-columns: repeat(3, 1fr); gap: var(--s-5) var(--s-4); } }
.operadora {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-3);
  height: 60px;
  transition: all var(--transition);
}
.operadora img {
  max-width: 100%;
  max-height: 44px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.45;
  transition: filter 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
}
.operadora:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.06);
}
.operadora--plus {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.operadora--plus:hover { opacity: 1; }

/* ============ COBERTURAS ============ */
.coberturas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  margin-top: var(--s-7);
}
@media (max-width: 880px) { .coberturas-grid { grid-template-columns: 1fr; } }
.cobertura {
  background: var(--white);
  padding: var(--s-7);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  position: relative;
}
.cobertura:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(10, 10, 10, 0.08);
}
.cobertura--featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, var(--cream), var(--white));
}
.cobertura--featured::before {
  content: 'MAIS VENDIDO';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
}
.cobertura__nome {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: var(--s-2);
}
.cobertura__tipo {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: var(--s-5);
}
.cobertura ul { list-style: none; }
.cobertura li {
  font-size: 0.92rem;
  padding: var(--s-3) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  gap: var(--s-3);
  color: var(--gray-600);
}
.cobertura li::before {
  content: '◇';
  color: var(--gold);
  font-size: 0.7rem;
  margin-top: 6px;
  flex-shrink: 0;
}
.cobertura li:last-child { border: none; }
.cobertura__price-from {
  font-size: 0.68rem;
  color: var(--gray-500);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: var(--s-5);
  padding-top: var(--s-4);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.cobertura__price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--black);
  margin-top: var(--s-1);
}
.cobertura__price small {
  font-size: 1rem;
  color: var(--gray-500);
  font-weight: 400;
}

/* ============ PERFIS ============ */
.perfis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  margin-top: var(--s-7);
}
@media (max-width: 880px) { .perfis-grid { grid-template-columns: 1fr; } }
.perfil {
  padding: var(--s-7);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(214, 156, 49, 0.18);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.perfil::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.5s ease;
}
.perfil:hover {
  border-color: var(--gold);
  background: rgba(214, 156, 49, 0.04);
  transform: translateY(-3px);
}
.perfil:hover::before { width: 100%; }
.perfil__num {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: var(--s-4);
  display: block;
  font-weight: 500;
}
.perfil h3 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: var(--s-3);
  font-weight: 500;
}
.perfil__desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.96rem;
  margin-bottom: var(--s-5);
}
.perfil__detail {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.06em;
  padding-top: var(--s-4);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 1.7;
}
.perfil__detail strong { color: var(--gold); font-weight: 500; }
.perfil__price {
  margin-top: var(--s-4);
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--gold);
  font-weight: 500;
}
.perfil__price small {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-top: var(--s-1);
  font-weight: 500;
}

/* ============ STEPS ============ */
.steps { position: relative; margin-top: var(--s-7); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  opacity: 0.5;
  z-index: 0;
}
@media (max-width: 880px) {
  .steps-grid { grid-template-columns: 1fr; gap: var(--s-7); }
  .steps-grid::before { display: none; }
}
.step { text-align: center; position: relative; z-index: 1; }
.step__num {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: var(--s-4);
  font-weight: 500;
  line-height: 1;
  width: 64px;
  height: 64px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  letter-spacing: 0.04em;
}
.section--dark .step__num { background: var(--black); }
.step h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: var(--s-3);
  font-weight: 500;
}
.section--dark .step h3 { color: var(--white); }
.step p {
  color: var(--gray-600);
  font-size: 0.94rem;
  max-width: 240px;
  margin: 0 auto;
}
.section--dark .step p { color: rgba(255, 255, 255, 0.6); }

/* ============ FORM ============ */
.form-section {
  position: relative;
  padding: var(--s-10) 0;
  background: linear-gradient(rgba(5, 5, 5, 0.95), rgba(20, 20, 20, 0.95));
  background-color: var(--black-deep);
  color: var(--white);
  overflow: hidden;
}
.form-section .section-titulo { color: var(--white); }
.form-section .section-sub { color: rgba(255, 255, 255, 0.65); }
.form-box {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(20, 20, 20, 0.85);
  padding: var(--s-8) var(--s-7);
  border-radius: var(--radius-md);
  border: 1px solid rgba(214, 156, 49, 0.22);
  backdrop-filter: blur(16px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
  position: relative;
}
.form-box::before, .form-box::after {
  content: '';
  position: absolute;
  width: 36px;
  height: 36px;
  border-color: var(--gold);
  border-style: solid;
}
.form-box::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; border-top-left-radius: var(--radius-md); }
.form-box::after { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; border-bottom-right-radius: var(--radius-md); }
@media (max-width: 640px) { .form-box { padding: var(--s-6) var(--s-5); } }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3);
  margin-bottom: var(--s-3);
}
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-input {
  width: 100%;
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.form-input::placeholder { color: rgba(255, 255, 255, 0.35); }
.form-input:focus { outline: none; border-color: var(--gold); background: rgba(0, 0, 0, 0.6); }
.form-button-row {
  display: flex;
  gap: var(--s-3);
  margin-top: var(--s-5);
}
.form-button-row .btn { flex: 1; }
@media (max-width: 560px) { .form-button-row { flex-direction: column; } }
.form-note {
  margin-top: var(--s-4);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

/* ============ GLOSSÁRIO ============ */
.glossario-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: var(--s-7);
}
@media (max-width: 720px) { .glossario-grid { grid-template-columns: 1fr; } }
.term { background: var(--white); padding: var(--s-6); }
.term h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: var(--s-2);
  color: var(--black);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: var(--s-2);
}
.term h4::before { content: '◇'; color: var(--gold); font-size: 0.8rem; }
.term p { font-size: 0.92rem; color: var(--gray-600); line-height: 1.7; }

/* ============ FAQ ============ */
.faq-list { max-width: 880px; margin: var(--s-7) auto 0; }
.faq-item {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-sm);
  padding: var(--s-5) var(--s-6);
  margin-bottom: var(--s-2);
  transition: all var(--transition);
}
.faq-item:hover { border-color: var(--gold); }
.faq-item[open] { border-color: var(--gold); background: var(--cream); }
.faq-item summary {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--black);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
  cursor: pointer;
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--transition);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: var(--s-4); color: var(--gray-600); font-size: 0.95rem; line-height: 1.7; }

/* ============ FOOTER ============ */
.footer {
  background: var(--black-deep);
  color: rgba(255, 255, 255, 0.55);
  padding: var(--s-10) 0 var(--s-5);
  border-top: 1px solid rgba(214, 156, 49, 0.18);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 80px; height: 1px;
  background: var(--gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s-7);
  margin-bottom: var(--s-7);
}
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-6); } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 56px; margin-bottom: var(--s-4); }
.footer-brand .nome {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: var(--s-1);
  letter-spacing: 0.04em;
}
.footer-brand .sub {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  color: var(--gold);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: var(--s-4);
  font-weight: 500;
}
.footer-brand p { font-size: 0.92rem; max-width: 320px; line-height: 1.7; opacity: 0.7; }
.footer h5 {
  color: var(--gold);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: var(--s-4);
}
.footer a {
  display: block;
  font-size: 0.92rem;
  font-weight: 400;
  margin-bottom: var(--s-2);
  transition: color var(--transition);
}
.footer a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: var(--s-4);
  font-size: 0.74rem;
  text-align: center;
  opacity: 0.5;
  letter-spacing: 0.05em;
}

/* ============ WHATSAPP FLUTUANTE ============ */
.whatsapp-float {
  position: fixed;
  bottom: var(--s-6);
  right: var(--s-6);
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.45);
  transition: all var(--transition);
  z-index: 99;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 16px 48px rgba(37, 211, 102, 0.6); }
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(37, 211, 102, 0.45);
  border-radius: 50%;
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ============ FADE UP ============ */
@media (prefers-reduced-motion: no-preference) {
  .fade-up { opacity: 0; transform: translateY(28px); transition: all 0.85s cubic-bezier(0.2, 0.8, 0.2, 1); }
  .fade-up.visible { opacity: 1; transform: none; }
}

/* =========================================================
   v9 — MELHORIAS MOBILE (não afeta desktop)
   - Hamburger menu (only mobile)
   - Hero ajustes em telas pequenas
   - Wrap das operadoras em telas mini
   - Logo otimizada
   ========================================================= */

/* Hamburger button — escondido em desktop por padrão */
.navbar-burger {
  display: none;
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  padding: 0;
  margin-left: var(--s-2);
}
.navbar-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.navbar-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.navbar-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.navbar-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu overlay — escondido em desktop */
.mobile-menu {
  display: none;
}

/* ============ MOBILE (max-width: 880px) ============ */
@media (max-width: 880px) {
  /* Mostra hamburger, esconde nav-cta no header pra dar espaço */
  .navbar-burger { display: flex; }
  .navbar-cta { display: none; }

  /* Mobile menu overlay */
  .mobile-menu {
    display: block;
    position: fixed;
    top: 64px;
    left: 50%;
    transform: translateX(-50%) translateY(-12px);
    width: calc(100% - 32px);
    max-width: 420px;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 8px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
    z-index: 99;
  }
  .mobile-menu.open {
    pointer-events: auto;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  .mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .mobile-menu a {
    display: block;
    padding: 14px 18px;
    color: rgba(255, 255, 255, 0.78);
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: 12px;
    transition: all 0.25s ease;
  }
  .mobile-menu a:hover, .mobile-menu a:active {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
  }
  .mobile-menu__cta {
    background: var(--gold) !important;
    color: var(--black) !important;
    text-align: center;
    margin-top: 4px;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.08em !important;
    font-size: 0.82rem !important;
  }
  .mobile-menu__cta:hover, .mobile-menu__cta:active {
    background: var(--gold-light) !important;
  }
}

/* ============ HERO em MOBILE ============ */
@media (max-width: 720px) {
  .hero { padding: var(--s-7) 0 var(--s-8); min-height: 92vh; }

  /* Logo um pouco menor */
  .hero__logo-com-nome { max-width: 240px; }
  .hero__logo-wrap { padding: var(--s-5) var(--s-6); }

  /* Subtítulo menor pra caber sem rolar */
  .hero__sub { font-size: 0.95rem; }

  /* Botão CTA mais largo no mobile */
  .hero__ctas { width: 100%; justify-content: center; }
  .hero__ctas .btn { min-width: 240px; }

  /* Operadoras: permitir 2 linhas em telas muito pequenas, sem comprimir */
  .hero__rede-logos {
    flex-wrap: wrap;
    gap: 16px 24px;
  }
  .hero__rede-logos img {
    width: 92px;
    height: 28px;
  }

  /* Esconde o "Continue" pra ganhar espaço vertical */
  .hero__scroll { display: none; }
}

@media (max-width: 480px) {
  .hero__logo-com-nome { max-width: 220px; }
  .hero h1 { font-size: 1.55rem; }
  .hero__sub { font-size: 0.92rem; line-height: 1.65; }
  .hero__ctas .btn { min-width: 100%; padding: 16px 28px; }

  /* Operadoras 4 logos viram 2x2 em mobile pequeno */
  .hero__rede-logos { gap: 14px 20px; }
  .hero__rede-logos img { width: 84px; height: 26px; }
}

/* ============ Stats labels em mobile pequeno ============ */
@media (max-width: 480px) {
  .stat__label { font-size: 0.6rem; letter-spacing: 0.18em; }
}

/* ============ Glossário/sobre/etc — padding lateral pro mobile ============ */
@media (max-width: 720px) {
  .section { padding: var(--s-9) 0; }
  .section-titulo { font-size: clamp(1.7rem, 6vw, 2.2rem); }
  .section-sub { font-size: 0.95rem; margin-bottom: var(--s-7); }
  .form-section { padding: var(--s-9) 0; }
}

/* ============ Footer mais compacto em mobile ============ */
@media (max-width: 480px) {
  .footer { padding: var(--s-9) 0 var(--s-5); }
  .footer-grid { gap: var(--s-6); }
}

/* =========================================================
   v10 — TONS CLAROS (saúde acolhedora)
   Pilares, Perfis e Stats agora em fundo claro
   ========================================================= */

/* ============ STATS BAND escura (original) ============ */
.stats-band {
  background: var(--black);
  color: var(--white);
  border-top: 1px solid rgba(214, 156, 49, 0.22);
  border-bottom: 1px solid rgba(214, 156, 49, 0.22);
}
.stats-band::before {
  background: var(--gold);
}
.stat__label {
  color: rgba(255, 255, 255, 0.55);
}

/* ============ FEATURES (Pilares) — agora em FUNDO CLARO ============ */
.section--white .feature {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 16px rgba(10, 10, 10, 0.04);
}
.section--white .feature:hover {
  border-color: var(--gold);
  background: linear-gradient(180deg, var(--white), var(--cream));
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(10, 10, 10, 0.08);
}
.section--white .feature__num {
  color: var(--gold);
}
.section--white .feature h3 {
  color: var(--black);
}
.section--white .feature p {
  color: var(--gray-600);
}
.section--white .feature__ico {
  color: var(--gold);
}

/* ============ PERFIS — agora em FUNDO CREAM ============ */
.section--cream .perfil {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 16px rgba(10, 10, 10, 0.04);
}
.section--cream .perfil:hover {
  border-color: var(--gold);
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(10, 10, 10, 0.08);
}
.section--cream .perfil__num {
  color: var(--gold);
}
.section--cream .perfil h3 {
  color: var(--black);
}
.section--cream .perfil__desc {
  color: var(--gray-600);
}
.section--cream .perfil__detail {
  color: var(--gray-500);
  border-top-color: rgba(0, 0, 0, 0.08);
}
.section--cream .perfil__detail strong {
  color: var(--gold);
}
.section--cream .perfil__price {
  color: var(--gold);
}
.section--cream .perfil__price small {
  color: var(--gray-500);
}

/* ============ STEPS — funcionam em ambos fundos ============ */
.section--white .step__num,
.section--cream .step__num {
  background: var(--white);
}
.section--white .step h3,
.section--cream .step h3 {
  color: var(--black);
}
.section--white .step p,
.section--cream .step p {
  color: var(--gray-600);
}

/* ============ SECTION TÍTULOS em fundos claros ============ */
.section--white .section-titulo,
.section--cream .section-titulo {
  color: var(--black);
}
.section--white .section-sub,
.section--cream .section-sub {
  color: var(--gray-600);
}
.section--white .section__ornament,
.section--cream .section__ornament {
  background: var(--gold);
}

/* =========================================================
   v11 — Animações premium do hero (escudo + cardiograma)
   Logo mais brilhante, +58 operadoras, Continue visível
   ========================================================= */

/* SVG de proteção atrás da logo */
.hero__protection {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Camadas do escudo se desenhando */
.hero__shield path {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: drawShield 3.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.hero__shield .shield-outer { animation-delay: 0.2s; }
.hero__shield .shield-mid   { animation-delay: 0.6s; }
.hero__shield .shield-inner { animation-delay: 1s; }

@keyframes drawShield {
  to { stroke-dashoffset: 0; }
}

/* Pulso suave do escudo após desenhar */
.hero__shield {
  animation: pulseShield 4s ease-in-out 4s infinite;
  transform-origin: 240px 240px;
}
@keyframes pulseShield {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.04); opacity: 0.85; }
}

/* Cardiograma: linha se desenhando + repete em loop */
.hero__ecg path {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: drawECG 3s ease-out 2s infinite;
  filter: drop-shadow(0 0 6px rgba(214, 156, 49, 0.6));
}
@keyframes drawECG {
  0% { stroke-dashoffset: 800; opacity: 0.3; }
  20% { opacity: 0.8; }
  60% { stroke-dashoffset: 0; opacity: 0.9; }
  100% { stroke-dashoffset: -800; opacity: 0; }
}

/* Logo — boutique elegante, sem brilho excessivo */
.hero__logo-com-nome {
  position: relative;
  z-index: 2;
  animation: logoEnter 1.4s cubic-bezier(0.4, 0, 0.2, 1) forwards, float 7s ease-in-out 1.4s infinite;
  opacity: 0;
}
@keyframes logoEnter {
  0% { opacity: 0; transform: scale(0.92) translateY(8px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* Variante PRETA (default — boutique elegante) */
body[data-logo="preta"] .hero__logo-com-nome,
body:not([data-logo]) .hero__logo-com-nome {
  filter:
    brightness(0) saturate(100%)
    drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}

/* Variante DOURADO SÓBRIO (ouro velho) */
body[data-logo="dourado-sobrio"] .hero__logo-com-nome {
  filter:
    brightness(0) saturate(100%)
    invert(58%) sepia(28%) saturate(750%) hue-rotate(8deg) brightness(85%) contrast(90%)
    drop-shadow(0 4px 16px rgba(168, 128, 48, 0.18));
}

/* Variante DOURADO ESCURO (antiquado, premium) */
body[data-logo="dourado-escuro"] .hero__logo-com-nome {
  filter:
    brightness(0) saturate(100%)
    invert(48%) sepia(40%) saturate(550%) hue-rotate(10deg) brightness(75%) contrast(95%)
    drop-shadow(0 4px 16px rgba(140, 100, 40, 0.2));
}

/* "+58" ao lado das operadoras — pílula dourada elegante */
.hero__rede-mais {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  background: rgba(214, 156, 49, 0.12);
  border: 1px solid rgba(214, 156, 49, 0.35);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all var(--transition);
}
.hero__rede-mais:hover {
  background: rgba(214, 156, 49, 0.22);
  border-color: var(--gold);
}

/* Continue mais visível em fundo cream */
.hero__scroll {
  color: var(--gold);
  opacity: 0.85;
  font-weight: 600;
}
.hero__scroll::after {
  background: var(--gold);
  height: 26px;
}

/* Operadoras hero — mais visíveis em fundo cream */
.hero__rede-logos img {
  filter: grayscale(100%);
  opacity: 0.6;
}

/* =========================================================
   v12 — Seções com VÍDEO LATERAL (split layout)
   Seção A: cream + texto esquerda + vídeo direita
   Seção B: dark + vídeo esquerda + texto direita (--reverse)
   ========================================================= */

.video-split {
  padding: var(--s-10) 0;
  position: relative;
  overflow: hidden;
}
.video-split.section--dark {
  background: var(--black);
  color: var(--white);
}
.video-split.section--dark .video-split__title { color: var(--white); }
.video-split.section--dark .video-split__text { color: rgba(255, 255, 255, 0.72); }
.video-split.section--dark .video-split__text strong { color: var(--white); }

.video-split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-9);
  align-items: center;
}
@media (max-width: 880px) {
  .video-split__grid { grid-template-columns: 1fr; gap: var(--s-7); }
}

/* Reverse — inverte ordem visual mas mantém ordem semântica */
.video-split--reverse .video-split__grid {
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 881px) {
  .video-split--reverse .video-split__media { order: 1; }
  .video-split--reverse .video-split__content { order: 2; }
}

/* Conteúdo à esquerda/direita */
.video-split__content {
  max-width: 540px;
}
.video-split__content .eyebrow {
  margin-bottom: var(--s-4);
}
.video-split__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: var(--s-5);
  letter-spacing: -0.02em;
  color: var(--black);
}
.video-split__title .gold-em {
  color: var(--gold);
  font-style: italic;
}
.video-split__text {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--gray-600);
  margin-bottom: var(--s-4);
}
.video-split__text strong {
  color: var(--black);
  font-weight: 600;
}
.video-split__content .btn {
  margin-top: var(--s-3);
}

/* Mídia (vídeo) à direita/esquerda */
.video-split__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 580px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(214, 156, 49, 0.18);
}
.video-split.section--dark .video-split__media {
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(214, 156, 49, 0.25);
}
.video-split__media::after {
  /* Borda dourada decorativa de canto */
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(214, 156, 49, 0.4) 0%, transparent 30%, transparent 70%, rgba(214, 156, 49, 0.4) 100%);
  opacity: 0.4;
  mix-blend-mode: overlay;
}
.video-split__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 880px) {
  .video-split { padding: var(--s-9) 0; }
  .video-split__media { aspect-ratio: 16/10; max-height: 380px; }
  .video-split__content { max-width: 100%; text-align: center; }
}

/* =========================================================
   v13 — Vídeos sem quadrado + Continue maior + Animação visível + Switcher logo
   ========================================================= */

/* ============ VÍDEOS COM FADE NAS BORDAS (sem quadrado) ============ */
.video-split__media {
  /* Tira o shadow box duro */
  box-shadow: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
  background: transparent;
  position: relative;
}
.video-split__media::after {
  display: none; /* tira o gradient overlay anterior */
}
.video-split__video {
  /* Mask radial: vídeo se dissolve nas bordas, sem quadrado */
  -webkit-mask-image: radial-gradient(ellipse 78% 88% at center, #000 50%, transparent 100%);
  mask-image: radial-gradient(ellipse 78% 88% at center, #000 50%, transparent 100%);
  border-radius: 0;
  filter: contrast(1.05) saturate(1.05);
}

/* Versão dark: SÓ ajusta o filter (não sobrescreve mask que vem do switcher) */
.video-split.section--dark .video-split__video {
  filter: brightness(0.95) contrast(1.05) saturate(1.05);
}

/* Glow dourado decorativo atrás do vídeo (substitui a borda) */
.video-split__media::before {
  content: '';
  position: absolute;
  inset: 8%;
  background: radial-gradient(ellipse at center, rgba(214, 156, 49, 0.18), transparent 65%);
  filter: blur(40px);
  z-index: -1;
}

/* ============ CONTINUE MAIOR E VISÍVEL ============ */
.hero__scroll {
  margin-top: var(--s-7);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--black);
  opacity: 1;
  letter-spacing: 0.36em;
}
.hero__scroll::after {
  height: 40px;
  width: 1px;
  background: var(--gold);
  opacity: 0.85;
}

/* ============ ANIMAÇÕES HERO MAIS VISÍVEIS ============ */
/* Escudo maior + opacidade aumentada */
.hero__protection {
  width: 130%;
  height: 130%;
  inset: -15%;
}
.hero__shield path {
  stroke-width: 1.5 !important;
}
.hero__shield .shield-outer { opacity: 0.7 !important; }
.hero__shield .shield-mid   { opacity: 0.55 !important; }
.hero__shield .shield-inner { opacity: 0.4 !important; }

/* Cardiograma mais grosso e visível */
.hero__ecg path {
  stroke-width: 2.5 !important;
  filter: drop-shadow(0 0 12px rgba(214, 156, 49, 0.85)) !important;
}

/* PARALLAX SCROLL: luzes douradas reagem ao scroll */
.hero__lights {
  will-change: transform;
}

/* Novos elementos animados aparecendo conforme rola */
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  filter: blur(1px);
  box-shadow: 0 0 12px rgba(214, 156, 49, 0.8);
  animation: particleFloat 8s ease-in-out infinite;
}
.hero__particle:nth-child(1) { left: 15%; top: 25%; animation-delay: 0s; }
.hero__particle:nth-child(2) { left: 78%; top: 18%; animation-delay: 1.5s; }
.hero__particle:nth-child(3) { left: 22%; top: 70%; animation-delay: 3s; }
.hero__particle:nth-child(4) { left: 82%; top: 65%; animation-delay: 4.5s; }
.hero__particle:nth-child(5) { left: 50%; top: 12%; animation-delay: 2s; }
.hero__particle:nth-child(6) { left: 35%; top: 85%; animation-delay: 5s; }

@keyframes particleFloat {
  0%, 100% { opacity: 0; transform: translateY(0) scale(0.6); }
  50% { opacity: 0.8; transform: translateY(-30px) scale(1); }
}

/* ============ PAINEL SWITCHER DE LOGO (canto inferior) ============ */
.logo-switcher {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(214, 156, 49, 0.35);
  border-radius: 12px;
  padding: 10px 12px;
  z-index: 200;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 180px;
}
.logo-switcher__title {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin: 0;
}
.logo-switcher__buttons {
  display: flex;
  gap: 4px;
  flex-direction: column;
}
.logo-switcher__btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
  padding: 7px 12px;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: left;
}
.logo-switcher__btn:hover {
  background: rgba(214, 156, 49, 0.12);
  border-color: rgba(214, 156, 49, 0.4);
  color: #fff;
}
.logo-switcher__btn.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  font-weight: 600;
}

/* =========================================================
   v14 — Animação ESPALHADA pelo hero + variantes de vídeo
   ========================================================= */

/* SVG de fundo: cardiograma + ondas + constelação atravessando hero inteiro */
.hero__bg-anim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.85;
}

/* Cardiograma atravessando largura completa */
.bg-ecg {
  stroke-dasharray: 2400;
  stroke-dashoffset: 2400;
  animation: bgEcgDraw 5s ease-out 1s infinite;
  filter: drop-shadow(0 0 8px rgba(214, 156, 49, 0.7));
}
@keyframes bgEcgDraw {
  0% { stroke-dashoffset: 2400; opacity: 0.4; }
  10% { opacity: 0.9; }
  60% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: -2400; opacity: 0; }
}

/* Ondas suaves se movendo */
.bg-wave {
  stroke-dasharray: 4000;
  stroke-dashoffset: 4000;
  animation: bgWaveDraw 8s ease-in-out infinite;
}
.bg-wave--top { animation-delay: 0s; }
.bg-wave--bottom { animation-delay: 2s; }
@keyframes bgWaveDraw {
  0%, 100% { stroke-dashoffset: 4000; }
  50% { stroke-dashoffset: 0; }
}

/* Constelação piscando */
.bg-constelation circle {
  animation: constelationTwinkle 3s ease-in-out infinite;
}
.bg-constelation circle:nth-child(2n) { animation-delay: 0.5s; }
.bg-constelation circle:nth-child(3n) { animation-delay: 1s; }
.bg-constelation circle:nth-child(5n) { animation-delay: 1.8s; }
@keyframes constelationTwinkle {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.4); }
  transform-origin: center;
}

/* Mais partículas espalhadas (12 agora) */
.hero__particle:nth-child(7) { left: 8%; top: 50%; animation-delay: 0.5s; }
.hero__particle:nth-child(8) { left: 92%; top: 45%; animation-delay: 2.5s; }
.hero__particle:nth-child(9) { left: 60%; top: 90%; animation-delay: 6s; }
.hero__particle:nth-child(10) { left: 12%; top: 8%; animation-delay: 3.5s; }
.hero__particle:nth-child(11) { left: 88%; top: 80%; animation-delay: 7s; }
.hero__particle:nth-child(12) { left: 45%; top: 78%; animation-delay: 5.5s; }

/* Esconde o SVG concentrado anterior (agora a animação está no fundo todo) */
.hero__protection {
  opacity: 0.5;
}
.hero__shield .shield-outer { opacity: 0.3 !important; }
.hero__shield .shield-mid   { opacity: 0.2 !important; }
.hero__shield .shield-inner { opacity: 0.15 !important; }

/* =========================================================
   VARIANTES DE TRATAMENTO DOS VÍDEOS
   (alterar via body[data-video=""])
   ========================================================= */

/* Variante 1: OVAL LEVE — aplica em AMBOS vídeos (independente da seção) */
body[data-video="oval-leve"] .video-split .video-split__video,
body:not([data-video]) .video-split .video-split__video {
  -webkit-mask-image: radial-gradient(ellipse 80% 88% at center, #000 55%, transparent 100%) !important;
  mask-image: radial-gradient(ellipse 80% 88% at center, #000 55%, transparent 100%) !important;
  border-radius: 0 !important;
}

/* Variante 2: CÍRCULO PERFEITO — aplica em AMBOS vídeos */
body[data-video="circulo"] .video-split .video-split__media {
  aspect-ratio: 1 / 1 !important;
  max-height: 480px !important;
}
body[data-video="circulo"] .video-split .video-split__video {
  -webkit-mask-image: radial-gradient(circle at center, #000 48%, transparent 70%) !important;
  mask-image: radial-gradient(circle at center, #000 48%, transparent 70%) !important;
  border-radius: 0 !important;
}

/* Variante 3: OVAL FADE FORTE — aplica em AMBOS */
body[data-video="oval-forte"] .video-split .video-split__video {
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at center, #000 30%, transparent 95%) !important;
  mask-image: radial-gradient(ellipse 70% 80% at center, #000 30%, transparent 95%) !important;
  border-radius: 0 !important;
}

/* Variante 4: MOLDURA DOURADA (sem mask, com borda dourada decorativa) */
body[data-video="moldura-dourada"] .video-split__video {
  -webkit-mask-image: none;
  mask-image: none;
  border-radius: 4px;
  filter: contrast(1.05);
}
body[data-video="moldura-dourada"] .video-split__media {
  padding: 14px;
  background: linear-gradient(135deg, rgba(214, 156, 49, 0.5), rgba(168, 128, 48, 0.2));
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
}
body[data-video="moldura-dourada"] .video-split__media::before {
  display: none;
}

/* Variante 5: VINHETA DUPLA — aplica em AMBOS */
body[data-video="duas-vinhetas"] .video-split .video-split__video {
  -webkit-mask-image: radial-gradient(ellipse 75% 85% at center, #000 45%, transparent 90%) !important;
  mask-image: radial-gradient(ellipse 75% 85% at center, #000 45%, transparent 90%) !important;
  border-radius: 0 !important;
}
body[data-video="duas-vinhetas"] .video-split__media::before {
  inset: -8%;
  background: radial-gradient(ellipse at center, rgba(214, 156, 49, 0.35), transparent 60%);
  filter: blur(60px);
  opacity: 0.8;
}
body[data-video="duas-vinhetas"] .video-split__media::after {
  content: '';
  display: block !important;
  position: absolute;
  inset: 4%;
  border: 1px solid rgba(214, 156, 49, 0.3);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.6;
}

/* ============ PAINEL VÍDEO SWITCHER ============ */
.video-switcher {
  position: fixed;
  bottom: 24px;
  left: 220px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(214, 156, 49, 0.35);
  border-radius: 12px;
  padding: 10px 12px;
  z-index: 200;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 220px;
}
.video-switcher__btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
  padding: 7px 12px;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: left;
}
.video-switcher__btn:hover {
  background: rgba(214, 156, 49, 0.12);
  border-color: rgba(214, 156, 49, 0.4);
  color: #fff;
}
.video-switcher__btn.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  font-weight: 600;
}

@media (max-width: 720px) {
  .logo-switcher, .video-switcher { display: none; }
}

/* =========================================================
   v15 — Vídeo de fundo do HERO + switcher
   ========================================================= */

.hero__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  display: none; /* só aparece quando user escolhe uma opção */
  filter: brightness(0.85) contrast(1.05) saturate(1.1);
}

/* Overlay sutil pra integrar com cream */
.hero__bg-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  background:
    linear-gradient(180deg, rgba(245, 241, 232, 0.3) 0%, rgba(245, 241, 232, 0.15) 50%, rgba(245, 241, 232, 0.5) 100%);
}

/* Quando vídeo de fundo está ativo */
body[data-hero]:not([data-hero="atual"]) .hero__bg-video-overlay { opacity: 1; }
body[data-hero]:not([data-hero="atual"]) .hero__bg-anim { opacity: 0.4; }
body[data-hero]:not([data-hero="atual"]) .hero__lights { opacity: 0.5; }
body[data-hero]:not([data-hero="atual"]) .hero__particles { opacity: 0.5; }

/* Painel HERO switcher (canto direito inferior) */
.hero-switcher {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(214, 156, 49, 0.35);
  border-radius: 12px;
  padding: 10px 12px;
  z-index: 200;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 220px;
}
.hero-switcher__btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
  padding: 7px 12px;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: left;
}
.hero-switcher__btn:hover {
  background: rgba(214, 156, 49, 0.12);
  border-color: rgba(214, 156, 49, 0.4);
  color: #fff;
}
.hero-switcher__btn.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  font-weight: 600;
}

@media (max-width: 720px) {
  .hero-switcher { display: none; }
}

/* =========================================================
   v16 — 5 ANIMAÇÕES SVG TEMA SAÚDE (escolhidas via switcher)
   ========================================================= */

.hero__animations {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-anim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
}

/* Mostra a variante ativa */
body[data-hero="cardiograma"] .hero-anim--cardiograma { opacity: 1; }
body[data-hero="network"] .hero-anim--network { opacity: 1; }
body[data-hero="dna"] .hero-anim--dna { opacity: 1; }
body[data-hero="pulses"] .hero-anim--pulses { opacity: 1; }
body[data-hero="cells"] .hero-anim--cells { opacity: 1; }

/* ============ ANIMAÇÃO 1: Cardiograma + Coração pulsando ============ */
.ecg-line {
  stroke-dasharray: 2400;
  stroke-dashoffset: 2400;
  animation: ecgDraw 4s ease-out infinite;
  filter: drop-shadow(0 0 10px rgba(214, 156, 49, 0.7));
}
.ecg-line--2 {
  animation-delay: 1.5s;
}
@keyframes ecgDraw {
  0% { stroke-dashoffset: 2400; opacity: 0.4; }
  10% { opacity: 1; }
  70% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: -2400; opacity: 0; }
}
.heart-pulse {
  transform-origin: center;
  animation: heartBeat 1.4s ease-in-out infinite;
  filter: drop-shadow(0 0 16px rgba(214, 156, 49, 0.5));
}
@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  20% { transform: scale(1.12); }
  40% { transform: scale(1); }
  60% { transform: scale(1.08); }
}

/* ============ ANIMAÇÃO 2: Network — pontos se conectando ============ */
.network-lines line {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: networkConnect 3s ease-out forwards;
}
.network-lines line:nth-child(2n) { animation-delay: 0.3s; }
.network-lines line:nth-child(3n) { animation-delay: 0.6s; }
.network-lines line:nth-child(4n) { animation-delay: 0.9s; }
.network-lines line:nth-child(5n) { animation-delay: 1.2s; }
@keyframes networkConnect {
  to { stroke-dashoffset: 0; }
}
.network-nodes circle {
  animation: nodePulse 3s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(214, 156, 49, 0.6));
  transform-origin: center;
}
.network-nodes circle:nth-child(2n) { animation-delay: 0.4s; }
.network-nodes circle:nth-child(3n) { animation-delay: 0.8s; }
.network-nodes circle:nth-child(5n) { animation-delay: 1.6s; }
@keyframes nodePulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

/* ============ ANIMAÇÃO 3: DNA helix rotacionando ============ */
.dna-group {
  animation: dnaRotate 12s linear infinite;
  transform-origin: 960px 540px;
}
@keyframes dnaRotate {
  0% { transform: translate(960px, 540px) rotateY(0deg); }
  100% { transform: translate(960px, 540px) rotateY(360deg); }
}
.dna-strand {
  animation: dnaScale 6s ease-in-out infinite;
  transform-origin: center;
}
@keyframes dnaScale {
  0%, 100% { transform: scaleX(1); }
  50% { transform: scaleX(0.7); }
}

/* ============ ANIMAÇÃO 4: Pulsos concêntricos (proteção) ============ */
.pulse-ring {
  transform-origin: center;
  animation: pulseExpand 3s ease-out infinite;
}
.pulse-2 { animation-delay: 1s; }
.pulse-3 { animation-delay: 2s; }
@keyframes pulseExpand {
  0% { transform: scale(1); opacity: 0.9; stroke-width: 3; }
  100% { transform: scale(15); opacity: 0; stroke-width: 0.5; }
}

/* ============ ANIMAÇÃO 5: Células flutuando ============ */
.cell {
  transform-origin: center;
  animation: cellFloat 8s ease-in-out infinite;
}
.cell-1 { animation-delay: 0s; }
.cell-2 { animation-delay: 1s; }
.cell-3 { animation-delay: 2s; }
.cell-4 { animation-delay: 3s; }
.cell-5 { animation-delay: 4s; }
.cell-6 { animation-delay: 5s; }
.cell-7 { animation-delay: 6s; }
.cell-8 { animation-delay: 7s; }
@keyframes cellFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
  50% { transform: translate(20px, -30px) scale(1.15); opacity: 1; }
}

/* =========================================================
   v17 — MESH GRADIENT premium (estilo Stripe / Linear)
   Substitui TODAS as animações anteriores por algo elegante
   ========================================================= */

/* Esconde elementos antigos que poluíam */
.hero__animations,
.hero__animations--removed,
.hero__bg-anim,
.hero__protection,
.hero__particles,
.hero__lights {
  display: none !important;
}

/* Container do mesh gradient */
.hero__mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: var(--cream);
}

/* 4 blobs grandes que se movem lentamente em direções diferentes,
   criando o efeito mesh gradient suave (igual Stripe) */
.hero__mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.85;
  will-change: transform;
}

.hero__mesh-blob--1 {
  width: 60%;
  height: 70%;
  top: -20%;
  left: -10%;
  background: radial-gradient(circle at center, rgba(214, 156, 49, 0.55), transparent 70%);
  animation: meshFloat1 24s ease-in-out infinite;
}

.hero__mesh-blob--2 {
  width: 70%;
  height: 75%;
  bottom: -25%;
  right: -15%;
  background: radial-gradient(circle at center, rgba(243, 214, 139, 0.6), transparent 70%);
  animation: meshFloat2 28s ease-in-out infinite;
}

.hero__mesh-blob--3 {
  width: 55%;
  height: 60%;
  top: 25%;
  right: 15%;
  background: radial-gradient(circle at center, rgba(255, 246, 220, 0.7), transparent 70%);
  animation: meshFloat3 26s ease-in-out infinite;
}

.hero__mesh-blob--4 {
  width: 50%;
  height: 55%;
  bottom: 20%;
  left: 25%;
  background: radial-gradient(circle at center, rgba(214, 156, 49, 0.35), transparent 70%);
  animation: meshFloat4 30s ease-in-out infinite;
}

/* Movimentos suaves em direções diferentes */
@keyframes meshFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(120px, 80px) scale(1.15); }
  66% { transform: translate(-60px, 140px) scale(0.95); }
}

@keyframes meshFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-180px, -120px) scale(1.2); }
}

@keyframes meshFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
  50% { transform: translate(-100px, 80px) scale(1.1) rotate(15deg); }
}

@keyframes meshFloat4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-80px, -60px) scale(1.05); }
  66% { transform: translate(140px, 40px) scale(1.1); }
}

/* Ruído sutil de textura premium em cima do mesh */
.hero__mesh::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.84 0 0 0 0 0.61 0 0 0 0 0.19 0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.05'/></svg>");
  background-size: 200px 200px;
  opacity: 0.4;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* =========================================================
   v18 — HERO estilo MoneyGirls (preto void, minimalista, premium)
   ========================================================= */

/* Esconde mesh gradient antigo */
.hero__mesh,
.hero__mesh-blob { display: none !important; }

.hero {
  background: #0A0A0A !important; /* preto void absoluto */
  color: #FFFFFF !important;
  position: relative;
  overflow: hidden;
}

/* Vinheta nas bordas pra criar foco */
.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(0, 0, 0, 0.6) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.5) 100%);
}

/* Linhas verticais douradas que se desenham (estilo MoneyGirls split-line) */
.hero__split-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  z-index: 1;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(214, 156, 49, 0) 5%,
    rgba(214, 156, 49, 0.5) 30%,
    rgba(214, 156, 49, 0.7) 50%,
    rgba(214, 156, 49, 0.5) 70%,
    rgba(214, 156, 49, 0) 95%,
    transparent 100%
  );
  transform-origin: top center;
  animation: splitLineGrow 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  transform: scaleY(0);
}
.hero__split-line--left { left: 8%; animation-delay: 0.4s; }
.hero__split-line--right { right: 8%; animation-delay: 0.8s; }

@keyframes splitLineGrow {
  0% { transform: scaleY(0); opacity: 0; }
  100% { transform: scaleY(1); opacity: 1; }
}

/* Marcações horizontais (referência design editorial) */
.hero__marks {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero__mark {
  position: absolute;
  left: 50%;
  width: 60px;
  height: 1px;
  background: rgba(214, 156, 49, 0.6);
  transform: translateX(-50%) scaleX(0);
  animation: markDraw 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.hero__mark--top { top: 60px; animation-delay: 1.2s; }
.hero__mark--bottom { bottom: 60px; animation-delay: 1.4s; }
@keyframes markDraw {
  to { transform: translateX(-50%) scaleX(1); }
}

/* TEXTO BRANCO no hero agora (antes era preto sobre cream) */
.hero h1 {
  color: #FFFFFF !important;
  font-weight: 600 !important;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem) !important;
}
.hero h1 .gold-em {
  color: var(--gold) !important;
  font-style: italic !important;
}
.hero__sub {
  color: rgba(255, 255, 255, 0.7) !important;
  text-shadow: none !important;
}

/* Logo dourada brilhante sobre preto — APENAS quando hero é escuro (não hero-light) */
body:not(.hero-light)[data-logo="preta"] .hero__logo-com-nome,
body:not(.hero-light):not([data-logo]) .hero__logo-com-nome {
  filter:
    brightness(0) saturate(100%)
    invert(72%) sepia(48%) saturate(700%) hue-rotate(2deg) brightness(95%) contrast(92%)
    drop-shadow(0 6px 20px rgba(214, 156, 49, 0.45)) !important;
}

/* Em hero claro: logo PRETA SÓLIDA (igual o nome do switcher diz) */
body.hero-light[data-logo="preta"] .hero__logo-com-nome,
body.hero-light:not([data-logo]) .hero__logo-com-nome {
  filter:
    brightness(0) saturate(100%)
    drop-shadow(0 4px 16px rgba(0, 0, 0, 0.18)) !important;
}

/* Eyebrow no hero (se tivesse) */
.hero .eyebrow {
  color: var(--gold) !important;
}

/* Operadoras: cinza claro sobre preto */
.hero__rede {
  border-top-color: rgba(255, 255, 255, 0.1) !important;
}
.hero__rede-label {
  color: var(--gold) !important;
}
.hero__rede-logos img {
  filter: brightness(0) invert(1) !important;
  opacity: 0.6 !important;
}
.hero__rede-logos img:hover {
  filter: none !important;
  opacity: 1 !important;
}

/* +58 dourado sobre preto */
.hero__rede-mais {
  color: var(--gold);
  border-color: rgba(214, 156, 49, 0.5);
  background: rgba(214, 156, 49, 0.08);
}

/* Continue branco sobre preto */
.hero__scroll {
  color: rgba(255, 255, 255, 0.85) !important;
}
.hero__scroll::after {
  background: var(--gold) !important;
}

/* Halo dourado discreto atrás da logo */
.hero__logo-wrap::before {
  background: radial-gradient(ellipse at center, rgba(214, 156, 49, 0.15) 0%, transparent 65%) !important;
  filter: blur(40px) !important;
}

/* Transição suave do hero pra próxima seção (cream) */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--cream));
  z-index: 2;
  pointer-events: none;
}

/* =========================================================
   v20 — CORREÇÕES MOBILE (prioridade absoluta)
   ========================================================= */

/* ============ MOBILE GERAL ============ */
@media (max-width: 880px) {
  /* Esconde linhas verticais no mobile (cortavam botão) */
  .hero__split-line { display: none !important; }

  /* Esconde marcas horizontais decorativas em mobile pequeno */
  .hero__mark { width: 40px; }

  /* Hero — padding lateral seguro pra não tocar borda */
  .hero { padding: 100px 24px 80px !important; }
  .hero__inner { padding: 0 !important; }

  /* Logo menor em mobile */
  .hero__logo-com-nome { max-width: 220px !important; }

  /* H1 menor */
  .hero h1 { font-size: clamp(1.4rem, 5vw, 1.8rem) !important; }
  .hero__sub { font-size: 0.92rem !important; }

  /* Botão CTA com largura controlada (não corta nas bordas) */
  .hero__ctas {
    width: 100% !important;
    justify-content: center !important;
  }
  .hero__ctas .btn {
    width: 100% !important;
    max-width: 320px !important;
    padding: 16px 24px !important;
    font-size: 0.85rem !important;
    box-sizing: border-box;
  }

  /* Operadoras hero — wrap pra 2 linhas */
  .hero__rede-logos {
    flex-wrap: wrap !important;
    gap: 16px 20px !important;
    justify-content: center !important;
  }
  .hero__rede-logos img {
    width: 92px !important;
    height: 28px !important;
  }
  .hero__rede-mais {
    font-size: 0.7rem !important;
    padding: 5px 12px !important;
  }

  /* ============ VIDEO SPLIT (Seções "Quem você ama" e "Reflita") ============ */
  /* Garante 1 coluna em mobile, ordem correta (texto primeiro, vídeo depois) */
  .video-split__grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .video-split--reverse .video-split__grid {
    grid-template-columns: 1fr !important;
  }

  /* Conteúdo (texto) sempre por cima */
  .video-split__content,
  .video-split--reverse .video-split__content {
    order: 1 !important;
    max-width: 100% !important;
    text-align: center !important;
    padding: 0 !important;
  }

  /* Vídeo sempre por baixo, com tamanho que aparece */
  .video-split__media,
  .video-split--reverse .video-split__media {
    order: 2 !important;
    width: 100% !important;
    aspect-ratio: 4 / 3 !important;
    max-height: 360px !important;
    min-height: 240px !important;
    margin: 0 auto !important;
  }

  /* Garante que vídeo preenche o container no mobile */
  .video-split__video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  /* Container da seção com padding lateral seguro */
  .video-split {
    padding: 64px 0 !important;
  }
  .video-split .container {
    padding: 0 24px !important;
  }

  /* Botão dentro de video-split */
  .video-split__content .btn {
    width: 100%;
    max-width: 320px;
    margin: 16px auto 0;
  }

  /* Título da seção menor em mobile */
  .video-split__title {
    font-size: clamp(1.5rem, 6vw, 2rem) !important;
    text-align: center !important;
  }
  .video-split__text {
    font-size: 0.95rem !important;
    text-align: center !important;
  }
}

/* ============ MOBILE PEQUENO (< 480px) ============ */
@media (max-width: 480px) {
  .hero { padding: 90px 20px 64px !important; }

  .hero__logo-com-nome { max-width: 180px !important; }
  .hero h1 { font-size: 1.3rem !important; }
  .hero__sub { font-size: 0.88rem !important; }

  /* Operadoras menores ainda */
  .hero__rede-logos img {
    width: 76px !important;
    height: 24px !important;
  }
  .hero__rede-logos { gap: 12px 16px !important; }

  /* Vídeos um pouco menores */
  .video-split__media {
    aspect-ratio: 4 / 3 !important;
    max-height: 280px !important;
  }

  /* Operadora plus + texto */
  .hero__rede-mais { font-size: 0.65rem !important; }

  /* Switchers escondidos em mobile (tela pequena pra eles) */
  .logo-switcher,
  .video-switcher,
  .hero-switcher { display: none !important; }
}

/* =========================================================
   v21 — FOOTER centralizado com logo completa dourada
   ========================================================= */

/* Esconde a versão antiga do footer (footer-grid + footer-brand antigo) */
.footer-grid { display: none; }

/* Footer com layout centralizado */
.footer {
  text-align: center;
  padding: var(--s-9) 0 var(--s-5) !important;
}

/* Bloco da marca — topo centralizado */
.footer-brand-center {
  margin-bottom: var(--s-8);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-4);
}

/* Logo COMPLETA dourada (com nome) */
.footer-logo-completa {
  width: 100%;
  max-width: 280px;
  height: auto;
  /* Filtro pra deixar logo branca → dourada brilhante */
  filter:
    brightness(0) saturate(100%)
    invert(72%) sepia(48%) saturate(700%) hue-rotate(2deg) brightness(95%) contrast(92%)
    drop-shadow(0 6px 20px rgba(214, 156, 49, 0.35));
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
  font-weight: 300;
}

/* Grid de info centralizado em 3 colunas */
.footer-grid-center {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: var(--s-9);
  justify-content: center;
  margin-bottom: var(--s-8);
  padding-top: var(--s-7);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col {
  text-align: center;
}

.footer-col h5 {
  color: var(--gold);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: var(--s-4);
}

.footer-col a {
  display: block;
  font-size: 0.92rem;
  font-weight: 400;
  margin-bottom: var(--s-2);
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}
.footer-col a:hover {
  color: var(--gold);
}

/* Linha inferior do copyright — centralizada e clean */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: var(--s-5);
  font-size: 0.74rem;
  text-align: center;
  opacity: 0.5;
  letter-spacing: 0.05em;
  display: block !important;
}

/* MOBILE — empilha as colunas */
@media (max-width: 720px) {
  .footer-grid-center {
    grid-template-columns: 1fr !important;
    gap: var(--s-6) !important;
    padding-top: var(--s-6) !important;
  }
  .footer-logo-completa {
    max-width: 220px;
  }
  .footer-tagline {
    font-size: 0.88rem;
    padding: 0 var(--s-4);
  }
  .footer-bottom {
    font-size: 0.7rem;
    padding: var(--s-4) var(--s-4) 0;
    line-height: 1.7;
  }
}

/* =========================================================
   v22 — HERO CLARO (cor cream do "Quem somos") + vídeos ovais
   Ativado via body.hero-light. Resto do site continua escuro.
   ========================================================= */

/* Hero ganha cor cream (mesma do "Quem somos") */
body.hero-light .hero {
  background: var(--cream) !important;
  color: var(--black) !important;
}

/* Vinheta vira cream (não preta) */
body.hero-light .hero__vignette {
  background: radial-gradient(ellipse at center, transparent 25%, rgba(245, 241, 232, 0.92) 95%) !important;
}

/* Linhas verticais douradas continuam, mas adaptadas ao fundo claro */
body.hero-light .hero__split-line {
  background: linear-gradient(180deg, transparent 0%, rgba(214, 156, 49, 0.35) 30%, rgba(214, 156, 49, 0.45) 50%, rgba(214, 156, 49, 0.35) 70%, transparent 100%) !important;
}

/* Marcações horizontais — cor dourada visível em claro */
body.hero-light .hero__mark {
  background: rgba(214, 156, 49, 0.55) !important;
}

/* Texto do título preto profundo */
body.hero-light .hero h1 {
  color: var(--black) !important;
}
body.hero-light .hero h1 .gold-em {
  color: var(--gold) !important;
}

/* Subtítulo cinza médio */
body.hero-light .hero__sub {
  color: rgba(10, 10, 10, 0.7) !important;
}

/* Operadoras label e logos visíveis em claro */
body.hero-light .hero__rede-label {
  color: rgba(10, 10, 10, 0.55) !important;
}
body.hero-light .hero__rede-logos img {
  filter: grayscale(100%) brightness(0.35) contrast(1.1) !important;
  opacity: 0.7 !important;
}
body.hero-light .hero__rede-logos img:hover {
  filter: grayscale(0) brightness(1) !important;
  opacity: 1 !important;
}
body.hero-light .hero__rede-mais {
  color: var(--gold) !important;
}

/* Scroll "Continue" preto sólido (era o problema antes — ficava apagado) */
body.hero-light .hero__scroll {
  color: rgba(10, 10, 10, 0.7) !important;
}
body.hero-light .hero__scroll::after {
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.5), transparent) !important;
}

/* Logo Domus: deixa o switcher controlar (data-logo) — sem override */
/* Em hero claro, sugestão default é "preta" ou "dourado-escuro" */

/* v23 — Garantir switcher de logo visível em desktop */
@media (min-width: 880px) {
  .logo-switcher {
    display: flex !important;
    bottom: 24px !important;
    left: 24px !important;
    z-index: 9999 !important;
  }
}

/* v24 — Novas variantes de logo: imagens nativas (sem filter CSS) */
body[data-logo="dourada-real"] .hero__logo-com-nome,
body[data-logo="textura-clara"] .hero__logo-com-nome,
body[data-logo="textura-escura"] .hero__logo-com-nome,
body[data-logo="completo-claro"] .hero__logo-com-nome {
  filter: none !important;
}

/* Switcher: scroll interno se ficar muito alto */
.logo-switcher__buttons {
  max-height: 60vh;
  overflow-y: auto;
}

/* =========================================================
   v26 — Logo TEXTURA ESCURA refinada:
   - Máscara radial dissolve as bordas (some o quadrado)
   - Halo radial escuro DENTRO da paleta cream/marrom (não preto)
   ========================================================= */

/* TEXTURA ESCURA: PNG com fundo preto sólido.
   mix-blend-mode: screen faz preto virar transparente sobre cream.
   IMPORTANTE: NENHUM filter/transform/z-index pode bloquear o blend.
   Removemos animação, filter, z-index — tudo que cria stacking context. */
body[data-logo="textura-escura"] .hero__logo-com-nome {
  mix-blend-mode: screen !important;
  filter: none !important;
  -webkit-mask-image: none !important;
          mask-image: none !important;
  background: transparent !important;
  animation: none !important;
  opacity: 1 !important;
  z-index: auto !important;
  position: static !important;
  transform: none !important;
}
body[data-logo="textura-escura"] .hero__logo-wrap {
  background: transparent !important;
  isolation: auto !important;
  filter: none !important;
}
/* O halo ::before precisa estar atrás (z-index baixo) e não criar isolamento */
body[data-logo="textura-escura"] .hero__logo-wrap::before {
  mix-blend-mode: normal !important;
}

/* Halo cream-marrom atrás da logo (substitui o halo dourado em hero claro + textura) */
body.hero-light[data-logo="textura-escura"] .hero__logo-wrap::before {
  background: radial-gradient(
    ellipse 60% 65% at center,
    rgba(75, 50, 28, 0.32) 0%,
    rgba(120, 85, 50, 0.18) 30%,
    rgba(214, 156, 49, 0.08) 55%,
    transparent 80%
  ) !important;
  filter: blur(28px) !important;
  inset: -12% !important;
}

/* Idem para hero escuro (caso volte a ser usado): halo bege quente */
body:not(.hero-light)[data-logo="textura-escura"] .hero__logo-wrap::before {
  background: radial-gradient(
    ellipse 60% 65% at center,
    rgba(214, 156, 49, 0.35) 0%,
    rgba(214, 156, 49, 0.15) 40%,
    transparent 70%
  ) !important;
  filter: blur(24px) !important;
}

/* =========================================================
   v29 — Logo DOURADA OFICIAL realçada em hero claro:
   - Halo cream/marrom escuro radial atrás (paleta da página)
   - Drop-shadow sutil pra dar profundidade
   - SEM caixa, SEM borda, SEM fundo sólido
   ========================================================= */

body[data-logo="dourada-real"] .hero__logo-com-nome {
  filter:
    drop-shadow(0 6px 24px rgba(75, 50, 28, 0.35))
    drop-shadow(0 2px 8px rgba(214, 156, 49, 0.18))
    contrast(1.08)
    saturate(1.12) !important;
  -webkit-mask-image: none !important;
          mask-image: none !important;
  mix-blend-mode: normal !important;
  background: transparent !important;
}

/* Halo radial escuro DENTRO da paleta cream/marrom — só atrás da logo */
body.hero-light[data-logo="dourada-real"] .hero__logo-wrap::before {
  background: radial-gradient(
    ellipse 55% 55% at center,
    rgba(60, 40, 22, 0.42) 0%,
    rgba(95, 65, 38, 0.28) 25%,
    rgba(150, 110, 65, 0.14) 50%,
    rgba(214, 156, 49, 0.04) 70%,
    transparent 90%
  ) !important;
  filter: blur(36px) !important;
  inset: -18% !important;
  opacity: 1 !important;
}

/* =========================================================
   v35 — ANIMAÇÕES 3D no hero (CSS puro, performance perfeita)
   Controle via body[data-anim3d="cubo|globo|orbita"]
   ========================================================= */

/* Wrapper genérico das animações — fixed dentro da viewport visível do hero */
.anim3d {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  max-height: 100%;
  display: none;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  perspective: 1200px;
  perspective-origin: 50% 50%;
}
body[data-anim3d="cubo"] .anim3d--cubo,
body[data-anim3d="globo"] .anim3d--globo,
body[data-anim3d="orbita"] .anim3d--orbita,
body[data-anim3d="logo-mp4"] .anim3d--logo-mp4,
body[data-anim3d="casa3d"] .anim3d--casa3d,
body[data-anim3d="logo3d"] .anim3d--logo3d {
  display: block;
}

/* ============ 1. CUBO 3D wireframe dourado ============ */
.cube {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 280px;
  height: 280px;
  transform-style: preserve-3d;
  transform: translate(-50%, -50%) rotateX(-22deg) rotateY(-30deg);
  animation: cubeRotate 28s linear infinite;
  opacity: 0.55;
}
.cube__face {
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1.5px solid rgba(214, 156, 49, 0.55);
  background: radial-gradient(ellipse at center, rgba(214, 156, 49, 0.05), transparent 60%);
  box-shadow: inset 0 0 60px rgba(214, 156, 49, 0.08);
}
.cube__face--front  { transform: translateZ(140px); }
.cube__face--back   { transform: translateZ(-140px) rotateY(180deg); }
.cube__face--right  { transform: rotateY(90deg) translateZ(140px); }
.cube__face--left   { transform: rotateY(-90deg) translateZ(140px); }
.cube__face--top    { transform: rotateX(90deg) translateZ(140px); }
.cube__face--bottom { transform: rotateX(-90deg) translateZ(140px); }
@keyframes cubeRotate {
  0%   { transform: translate(-50%, -50%) rotateX(-22deg) rotateY(0deg); }
  100% { transform: translate(-50%, -50%) rotateX(-22deg) rotateY(360deg); }
}

/* ============ 2. GLOBO 3D de anéis dourados ============ */
.globe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 360px;
  height: 360px;
  transform-style: preserve-3d;
  transform: translate(-50%, -50%);
  animation: globeRotate 32s linear infinite;
  opacity: 0.6;
}
.globe__ring {
  position: absolute;
  inset: 0;
  border: 1.2px solid rgba(214, 156, 49, 0.45);
  border-radius: 50%;
  box-shadow:
    0 0 40px rgba(214, 156, 49, 0.12),
    inset 0 0 30px rgba(214, 156, 49, 0.05);
}
.globe__ring--1 { transform: rotateY(0deg)   rotateX(0deg);   }
.globe__ring--2 { transform: rotateY(30deg)  rotateX(0deg);   }
.globe__ring--3 { transform: rotateY(60deg)  rotateX(0deg);   }
.globe__ring--4 { transform: rotateY(90deg)  rotateX(0deg);   }
.globe__ring--5 { transform: rotateY(120deg) rotateX(0deg);   }
.globe__ring--6 { transform: rotateY(150deg) rotateX(0deg);   }
@keyframes globeRotate {
  0%   { transform: translate(-50%, -50%) rotateX(-15deg) rotateY(0deg); }
  100% { transform: translate(-50%, -50%) rotateX(-15deg) rotateY(360deg); }
}

/* ============ 3. ANÉIS ORBITAIS 3D entrelaçados ============ */
.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 420px;
  height: 420px;
  transform-style: preserve-3d;
  transform: translate(-50%, -50%);
  animation: orbitRotate 24s linear infinite;
  opacity: 0.55;
}
.orbit__ring {
  position: absolute;
  inset: 0;
  border: 1.5px solid rgba(214, 156, 49, 0.5);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(214, 156, 49, 0.1);
}
.orbit__ring--x { transform: rotateX(75deg); }
.orbit__ring--y { transform: rotateY(75deg); }
.orbit__ring--z { transform: rotateZ(0deg); border-color: rgba(214, 156, 49, 0.35); }
.orbit__core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
  background: radial-gradient(circle, #F3D68B 0%, #D69C31 60%, transparent 100%);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(243, 214, 139, 0.7);
  animation: corePulse 3s ease-in-out infinite;
}
.orbit__particle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  background: radial-gradient(circle, #F3D68B, #D69C31);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(214, 156, 49, 0.8);
}
.orbit__particle--1 { animation: particleX 6s linear infinite; }
.orbit__particle--2 { animation: particleY 8s linear infinite; }
.orbit__particle--3 { animation: particleZ 10s linear infinite; }
@keyframes orbitRotate {
  0%   { transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg); }
  100% { transform: translate(-50%, -50%) rotateX(360deg) rotateY(360deg); }
}
@keyframes corePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}
@keyframes particleX {
  0%   { transform: rotateX(75deg) translateX(210px) rotateZ(0deg); }
  100% { transform: rotateX(75deg) translateX(210px) rotateZ(360deg); }
}
@keyframes particleY {
  0%   { transform: rotateY(75deg) translateX(210px) rotateZ(0deg); }
  100% { transform: rotateY(75deg) translateX(210px) rotateZ(-360deg); }
}
@keyframes particleZ {
  0%   { transform: rotateZ(0deg) translateX(210px); }
  100% { transform: rotateZ(360deg) translateX(210px); }
}

/* Em hero claro: ajusta opacidade e cor pra ficar visível */
body.hero-light .anim3d {
  filter: brightness(0.85) contrast(1.1);
}
body.hero-light .cube,
body.hero-light .globe,
body.hero-light .orbit {
  opacity: 0.4;
}

/* Switcher 3D */
.anim3d-switcher {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(214, 156, 49, 0.35);
  border-radius: 12px;
  padding: 10px 12px;
  z-index: 9999;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 180px;
}
.anim3d-switcher__title {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 4px;
}
.anim3d-switcher__btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(214, 156, 49, 0.2);
  color: rgba(255, 255, 255, 0.85);
  padding: 7px 10px;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.2s;
}
.anim3d-switcher__btn:hover {
  background: rgba(214, 156, 49, 0.18);
  border-color: rgba(214, 156, 49, 0.5);
}
.anim3d-switcher__btn.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
@media (max-width: 879px) {
  .anim3d-switcher { display: none; }
}

/* =========================================================
   v36 — Mais 3 animações 3D: Logo MP4 oficial, Casa wireframe, Logo 3D rotacionando
   ========================================================= */

/* ============ 4. LOGO MP4 OFICIAL (vídeo do brand book) ============ */
.anim3d--logo-mp4 {
  display: none;
}
.logo-mp4-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(720px, 85vw);
  height: auto;
  transform: translate(-50%, -50%);
  filter: contrast(1.1) brightness(1.05) saturate(1.05);
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 75% 80% at center, #000 45%, rgba(0,0,0,0.6) 75%, transparent 100%);
          mask-image: radial-gradient(ellipse 75% 80% at center, #000 45%, rgba(0,0,0,0.6) 75%, transparent 100%);
}
/* Em hero CLARO: screen — preto do vídeo vira transparente sobre cream */
body.hero-light .logo-mp4-video {
  mix-blend-mode: screen;
  opacity: 0.85;
}
/* Em hero ESCURO: lighten — preto do fundo do vídeo se mistura natural */
body:not(.hero-light) .logo-mp4-video {
  mix-blend-mode: lighten;
  opacity: 0.75;
}

/* ============ 5. CASA 3D wireframe (Domus literal) ============ */
.casa3d {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 360px;
  height: 360px;
  transform-style: preserve-3d;
  transform: translate(-50%, -50%) rotateX(-15deg) rotateY(0deg);
  animation: casaRotate 32s linear infinite;
  opacity: 0.55;
}
.casa3d__face {
  position: absolute;
  border: 1.5px solid rgba(214, 156, 49, 0.55);
  box-shadow: inset 0 0 30px rgba(214, 156, 49, 0.06);
  background: radial-gradient(ellipse, rgba(214, 156, 49, 0.04), transparent 65%);
}
/* Corpo cúbico da casa (4 paredes + chão) */
.casa3d__face--front  { width: 240px; height: 200px; left: 60px; top: 100px; transform: translateZ(120px); }
.casa3d__face--back   { width: 240px; height: 200px; left: 60px; top: 100px; transform: translateZ(-120px) rotateY(180deg); }
.casa3d__face--right  { width: 240px; height: 200px; left: 60px; top: 100px; transform: rotateY(90deg) translateZ(120px); }
.casa3d__face--left   { width: 240px; height: 200px; left: 60px; top: 100px; transform: rotateY(-90deg) translateZ(120px); }
.casa3d__face--floor  { width: 240px; height: 240px; left: 60px; top: 60px; transform: rotateX(90deg) translateZ(-100px); }
/* Telhado triangular (2 águas) */
.casa3d__roof {
  position: absolute;
  width: 0; height: 0;
  left: 60px; top: 100px;
  transform-style: preserve-3d;
}
.casa3d__roof-front, .casa3d__roof-back {
  position: absolute;
  width: 240px; height: 130px;
  border: 1.5px solid rgba(214, 156, 49, 0.55);
  background: radial-gradient(ellipse, rgba(214, 156, 49, 0.05), transparent 65%);
  clip-path: polygon(0% 100%, 50% 0%, 100% 100%);
}
.casa3d__roof-front { transform: translateZ(120px) translateY(-130px); }
.casa3d__roof-back  { transform: translateZ(-120px) translateY(-130px) rotateY(180deg); }
.casa3d__roof-side-l, .casa3d__roof-side-r {
  position: absolute;
  width: 250px; height: 130px;
  border: 1.5px solid rgba(214, 156, 49, 0.55);
  background: radial-gradient(ellipse, rgba(214, 156, 49, 0.04), transparent 65%);
}
.casa3d__roof-side-l { transform: translateY(-65px) translateX(-5px) translateZ(0) rotateY(90deg) rotateZ(28deg); transform-origin: left center; }
.casa3d__roof-side-r { transform: translateY(-65px) translateX(245px) translateZ(0) rotateY(-90deg) rotateZ(-28deg); transform-origin: right center; }
@keyframes casaRotate {
  0%   { transform: translate(-50%, -50%) rotateX(-15deg) rotateY(0deg); }
  100% { transform: translate(-50%, -50%) rotateX(-15deg) rotateY(360deg); }
}

/* ============ 6. LOGO DOMUS 3D (símbolo da casa em SVG rotacionando) ============ */
.logo3d {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  height: 320px;
  transform-style: preserve-3d;
  transform: translate(-50%, -50%);
  animation: logo3dRotate 14s ease-in-out infinite;
  opacity: 0.7;
}
.logo3d__symbol {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}
@keyframes logo3dRotate {
  0%, 100% { transform: translate(-50%, -50%) rotateY(0deg) rotateX(0deg); }
  25%      { transform: translate(-50%, -50%) rotateY(180deg) rotateX(0deg); }
  50%      { transform: translate(-50%, -50%) rotateY(360deg) rotateX(0deg); }
  75%      { transform: translate(-50%, -50%) rotateY(360deg) rotateX(20deg); }
}

body.hero-light .logo3d { opacity: 0.4; }
body.hero-light .casa3d { opacity: 0.4; }

/* =========================================================
   v40 — DEPLOY: limpeza + reforço mobile
   ========================================================= */

/* Esconde definitivamente todos os switchers de DEV (caso o HTML
   ainda os tenha por cache do servidor) */
.anim3d-switcher,
.logo-switcher,
.video-switcher,
.hero-switcher {
  display: none !important;
}

/* WhatsApp float removido: o widget Domi cumpre essa função
   no canto inferior direito. Botão "Falar no WhatsApp" no form continua. */
.whatsapp-float { display: none !important; }

/* ============ MOBILE — REFINAMENTOS ============ */

/* Container com folga lateral em telas pequenas */
@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .container--narrow { padding: 0 20px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .container--narrow { padding: 0 16px; }
}

/* Hero — Logo MP4 não pode dominar a tela em mobile */
@media (max-width: 720px) {
  .logo-mp4-video {
    width: min(440px, 90vw) !important;
  }
}
@media (max-width: 480px) {
  .logo-mp4-video {
    width: min(340px, 92vw) !important;
    opacity: 0.6 !important;
  }
}

/* Eyebrow não pode esticar tanto em telas estreitas */
@media (max-width: 480px) {
  .eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.22em;
  }
  .eyebrow--line::before,
  .eyebrow--line::after { width: 20px; }
}

/* Section titulo / sub mais legível em mobile pequeno */
@media (max-width: 480px) {
  .section-titulo { font-size: clamp(1.55rem, 6vw, 1.95rem); line-height: 1.15; }
  .section-sub { font-size: 0.92rem; line-height: 1.65; margin-bottom: var(--s-7); }
  .section { padding: var(--s-8) 0; }
}

/* Pilares (4 cards) — leituras maiores em mobile */
@media (max-width: 720px) {
  .feature h3 { font-size: 1.2rem; }
  .feature p { font-size: 0.95rem; }
}

/* Perfis — preço não pode ficar grande demais */
@media (max-width: 480px) {
  .perfil__price { font-size: 1.6rem !important; }
  .perfil h3 { font-size: 1.25rem; }
}

/* Operadoras — gap menor em telas estreitas */
@media (max-width: 380px) {
  .operadoras-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 16px !important; }
}

/* FAQ — padding interno melhor pra leitura */
@media (max-width: 480px) {
  .faq-item summary { font-size: 0.95rem; padding: 16px 0; }
  .faq-item p { font-size: 0.9rem; }
}

/* Form — inputs maiores em mobile (toque mais fácil) */
@media (max-width: 720px) {
  .form-input {
    padding: 14px 16px;
    font-size: 16px; /* evita zoom automático no iOS */
  }
}

/* Glossário — menos padding interno em mobile pequeno */
@media (max-width: 480px) {
  .term { padding: var(--s-5); }
  .term h4 { font-size: 1rem; }
  .term p { font-size: 0.88rem; }
}

/* Steps — circle menor em mobile */
@media (max-width: 480px) {
  .step__num { width: 56px; height: 56px; font-size: 1.05rem; }
  .step h3 { font-size: 1.15rem; }
  .step p { font-size: 0.92rem; }
}

/* Footer — espaçamento e leitura */
@media (max-width: 480px) {
  .footer-tagline { font-size: 0.85rem; }
  .footer-col h5 { font-size: 0.62rem; }
  .footer-col a { font-size: 0.88rem; }
  .footer-bottom { font-size: 0.66rem; padding: var(--s-4) 16px 0; }
}

/* Botões de tap target adequado em mobile */
@media (max-width: 480px) {
  .btn { min-height: 48px; padding: 14px 22px; font-size: 0.85rem; }
  .btn-lg { min-height: 52px; padding: 16px 28px; font-size: 0.9rem; }
}

/* Header capsule mobile — não exceder largura segura */
@media (max-width: 480px) {
  .navbar-shell {
    padding: 8px 12px 8px 14px;
    gap: 6px;
  }
  .navbar-brand img { height: 24px; }
  .navbar-brand__name { font-size: 0.82rem; }
}

/* Hero ::after gradiente menor em mobile (não cobrir botão) */
@media (max-width: 480px) {
  .hero::after { height: 60px; }
}

/* Garante que o widget Domi tenha espaço pra respirar acima do
   conteúdo do hero — empurra um pouco o "Continue" pra cima */
@media (max-width: 720px) {
  .hero__scroll { display: none !important; }
}

/* Stats labels não podem cortar */
@media (max-width: 480px) {
  .stat__value { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .stat__label { font-size: 0.55rem; line-height: 1.4; }
}

/* Sobre highlights — bullets confortáveis */
@media (max-width: 480px) {
  .sobre__highlights li { font-size: 0.92rem; padding-left: 24px; }
}

/* Video-split title 2 linhas confortáveis */
@media (max-width: 480px) {
  .video-split__title { font-size: clamp(1.4rem, 6.5vw, 1.85rem) !important; line-height: 1.2; }
  .video-split__text { font-size: 0.92rem !important; line-height: 1.7 !important; }
  .video-split { padding: 56px 0 !important; }
  .video-split .container { padding: 0 16px !important; }
  .video-split__media { max-height: 240px !important; }
}
