/* ============================================================
   LUMINA ODONTOLOGIA ESTÉTICA — CSS
   Luxury Wellness | Mobile-First | IntersectionObserver
   ============================================================ */

/* ---------- VARIÁVEIS CSS ---------- */
:root {
  /* Cores */
  --ouro: #C9A96E;
  --ouro-escuro: #B8995A;
  --creme: #F5F0E8;
  --preto: #1A1A1A;
  --grafite: #2C2C2C;
  --cinza: #8E8E8E;
  --branco: #FFFFFF;
  --branco-suave: #FAFAFA;
  --borda: rgba(201, 169, 110, 0.15);
  --borda-forte: rgba(201, 169, 110, 0.3);

  /* Fontes */
  --font-titulo: 'Playfair Display', Georgia, serif;
  --font-corpo: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Espaçamentos */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Container */
  --container-max: 1200px;
  --container-pad: 1.5rem;

  /* Transições */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);

  /* Navbar */
  --navbar-height: 85px;
  --navbar-height-scrolled: 70px;
}

/* ---------- ANIMAÇÕES ---------- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 800ms var(--ease-out);
}

.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-on-scroll[data-delay="200"] { transition-delay: 200ms; }
.reveal-on-scroll[data-delay="400"] { transition-delay: 400ms; }


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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-corpo);
  font-weight: 400;
  color: var(--grafite);
  background-color: var(--branco);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  -webkit-text-size-adjust: 100%;
}

/* PageSpeed fix: use class for scroll locking instead of inline style */
body.no-scroll {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* SEO: texto visível apenas para crawlers/leitores de tela */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--preto);
  color: var(--ouro);
  padding: 0.75rem 1.5rem;
  z-index: 9999;
  border-radius: 0 0 8px 8px;
  font-weight: 500;
  font-size: 0.875rem;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

/* ---------- UTILITÁRIOS ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

@media (max-width: 768px) {
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    max-width: 100vw;
  }
}

/* Klaas-style numbering block */
.numbering-block {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--space-lg);
}

.numbering-block.is-align-center {
  justify-content: center;
}

.sign-text {
  font-family: var(--font-corpo);
  font-size: 0.75rem;
  font-weight: 600; /* Aumentado de 500 para 600 */
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #666666; /* Escurecido para passar no contraste WCAG 4.5:1 */
}

.sign-text.is-number {
  font-family: var(--font-titulo);
  font-size: 1rem;
  color: var(--ouro);
  font-weight: 400;
}

.numbering-line {
  width: 40px;
  height: 1px;
  background-color: var(--borda-forte);
}

.section-label {
  display: block;
  font-family: var(--font-corpo);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ouro);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-titulo);
  font-weight: 400;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.2;
  color: var(--preto);
}

.section-title em {
  font-style: italic;
  color: var(--ouro-escuro); /* Usar ouro mais escuro para melhor contraste em fundo claro */
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

/* Vertical flex gap utility */
.vertical-flex-gap-4em {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.vertical-flex-gap-4em.is-center {
  align-items: center;
  text-align: center;
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-corpo);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 4px;
  transition: all 300ms var(--ease-out);
  will-change: transform, background-color, color;
}

.btn-primary {
  background-color: var(--ouro);
  color: var(--branco);
  border: 1.5px solid var(--ouro);
}

.btn-primary:hover {
  background-color: var(--preto);
  color: var(--ouro);
  border-color: var(--preto);
}

/* Botão WhatsApp da hero — degradê marrom→dourado (espelha a navbar) */
.hero-actions .btn-primary {
  background: linear-gradient(135deg,
    rgba(46, 32, 20, .95) 0%,
    rgba(68, 50, 30, .92) 55%,
    rgba(132, 100, 56, .90) 100%);
  color: #F5E6C8;
  border: 1px solid rgba(201, 169, 110, .22);
  border-radius: 999px;
  padding: 14px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 0.72rem;
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow: 0 10px 28px -10px rgba(42, 30, 20, .45);
  display: inline-flex;
  align-items: center;
  gap: .65rem;
}

.hero-actions .btn-primary .btn-wa-icon {
  width: 18px;
  height: 18px;
  color: #E8C88C;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(232, 200, 140, .35));
  transition: transform .3s ease;
}

.hero-actions .btn-primary:hover {
  background: linear-gradient(135deg,
    rgba(38, 26, 16, 1) 0%,
    rgba(74, 54, 32, 1) 55%,
    rgba(156, 118, 64, .95) 100%);
  color: var(--ouro);
  border-color: rgba(201, 169, 110, .4);
  box-shadow: 0 14px 32px -10px rgba(42, 30, 20, .6);
  transform: translateY(-2px);
}

.hero-actions .btn-primary:hover .btn-wa-icon {
  transform: scale(1.1);
}

/* Botão minimalista — link com traço dourado embaixo */
.btn-link-minimal {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: .65rem 2px;
  font-family: var(--font-corpo);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  color: var(--preto);
  text-decoration: none;
  background: transparent;
  border: 0;
  border-radius: 0;
  align-self: flex-start;
  text-transform: uppercase;
  transition: color .3s ease;
}

.btn-link-minimal::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 1px;
  background: var(--ouro);
  transform-origin: left;
  transition: transform .35s var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1));
}

.btn-link-minimal:hover {
  color: var(--ouro);
}

.btn-link-minimal:hover::after {
  transform: scaleX(0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--preto);
  border: 1.5px solid var(--preto);
}

.btn-secondary:hover {
  background-color: var(--preto);
  color: var(--ouro);
}

.btn-mapa svg {
  width: 1rem;
  height: 1rem;
}

/* ============================================================
   NAVBAR PREMIUM — Refined Klaas Style
   ============================================================ */

/* ─── NAVBAR FLUTUANTE PREMIUM ─── */
.navbar-wrapper {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 1000;
  pointer-events: none;
  transition: top 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar {
  pointer-events: auto;
  position: relative;
  width: calc(100% - 32px);
  max-width: 980px;
  margin: 0 auto;
  height: 56px;
  display: flex;
  align-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg,
    rgba(38, 26, 16, .82) 0%,
    rgba(58, 42, 24, .78) 55%,
    rgba(110, 82, 44, .72) 100%);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  border: 1px solid rgba(201, 169, 110, .22);
  box-shadow: 0 8px 24px -10px rgba(42, 30, 20, .4);
  transition: all .45s var(--ease-out);
}

.navbar-container {
  width: 100%;
  padding: 0 22px 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Centraliza menu desktop com logo absoluta à esquerda */
@media (min-width: 1024px) {
  .navbar-container {
    justify-content: center;
  }
  .navbar-logo {
    position: absolute;
    left: 28px;
    top: 50%;
    transform: translateY(-50%);
  }
}

@media (max-width: 768px) {
  .navbar-wrapper { top: 14px; }
  .navbar {
    width: calc(100% - 24px);
    height: 56px;
    border-radius: 999px;
  }
  .navbar-container {
    padding: 0 14px 0 18px;
  }
}

.navbar-wrapper--scrolled {
  top: 12px;
}

.navbar-wrapper--scrolled .navbar {
  height: 52px;
  background: linear-gradient(135deg,
    rgba(30, 20, 12, .92) 0%,
    rgba(52, 38, 22, .90) 55%,
    rgba(102, 76, 42, .85) 100%);
  border-color: rgba(201, 169, 110, .28);
  box-shadow: 0 10px 28px -12px rgba(42, 30, 20, .5);
}

/* Estado Hidden — some ao rolar para baixo */
.navbar-wrapper--hidden {
  transform: translateY(-120%);
}

@media (max-width: 768px) {
  .navbar-wrapper--scrolled { top: 10px; }
  .navbar-wrapper--scrolled .navbar { height: 52px; }
}

/* Logo Adjustment */
.navbar-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  z-index: 2;
}

.logo-image {
  height: 34px;
  width: auto;
  display: block;
  transition: height 0.3s ease;
  max-width: 150px;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(245, 230, 200, .25));
}

.navbar-wrapper--scrolled .logo-image {
  height: 30px;
}

@media (max-width: 768px) {
  .logo-image {
    height: 30px;
    max-width: 130px;
  }
  .navbar-wrapper--scrolled .logo-image {
    height: 26px;
  }
}

/* Menu Desktop */
.navbar-desktop {
  display: none;
  align-items: center;
  gap: 0;
}

.navbar-links {
  display: flex;
  gap: 2.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  position: relative;
  font-family: Arial, sans-serif;
  font-size: 0.52rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: #F5E6C8;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 4px;
  transition: color .3s ease;
  text-decoration: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--ouro);
  transition: width .35s var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1));
}

.nav-link:hover,
.nav-link.active {
  color: #F5E6C8;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 22px;
}

.nav-link svg {
  transition: transform 0.3s ease;
  opacity: 0.6;
}

.nav-item:hover .nav-link svg {
  transform: rotate(180deg);
  opacity: 1;
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background: var(--preto);
  min-width: 240px;
  padding: 1.25rem 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  border-radius: 4px;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--ouro);
  border-radius: 4px 4px 0 0;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 0.85rem 2rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--ouro);
  padding-left: 2.25rem;
}

/* CTA Visão Geral */
.btn-navbar-cta {
  background: var(--grafite);
  color: var(--branco);
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease-out);
  border: 1px solid rgba(255,255,255,0.1);
}

.btn-navbar-cta:hover {
  background: var(--ouro);
  border-color: var(--ouro);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(201, 169, 110, 0.2);
}

/* Mobile Toggle Hamburger — animação X quando ativo */
.navbar-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 14px;
  margin-right: -8px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  width: 48px;
  height: 48px;
}

.hamburger-line {
  width: 22px;
  height: 1.5px;
  background-color: #F5E6C8;
  transition: transform 360ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 220ms ease,
              background-color 220ms ease;
  transform-origin: center;
  display: block;
}

.navbar-wrapper:not(.navbar-wrapper--scrolled) .hamburger-line {
  background-color: #F5E6C8;
}

/* Animação X — quando drawer aberto */
.navbar-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
  background-color: var(--ouro);
}
.navbar-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.navbar-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
  background-color: var(--ouro);
}

@media (min-width: 1024px) {
  .navbar-desktop {
    display: flex;
  }
  .navbar-toggle {
    display: none;
  }
}

@media (max-width: 768px) {
  .topbar-contact {
    gap: 1.25rem;
  }
  .topbar-link span {
    display: none;
  }
  .topbar-action span {
    font-size: 0.55rem;
  }

  /* Rodapé — Mobile */
  .footer-main {
    padding: 40px 20px 30px !important;
  }

  .footer-container {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    padding: 0 !important;
  }

  .footer-brand,
  .footer-links,
  .footer-contact {
    margin-left: 0 !important;
    padding-left: 0 !important;
    text-align: left !important;
    align-items: flex-start !important;
  }

  .footer-brand .rodape-logo {
    justify-content: flex-start !important;
    margin: 0 0 1rem !important;
  }

  .footer-desc {
    max-width: 100% !important;
  }

  .footer-social {
    justify-content: flex-start !important;
  }

  .creditos-layout {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1rem !important;
  }

  .rodape-creditos .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .footer-legal-links {
    justify-content: flex-start !important;
  }

  .creditos-direita {
    text-align: left !important;
    margin-left: 0 !important;
  }
}


/* ============================================================
   DRAWER MOBILE — Slide da direita
   ============================================================ */

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 320ms ease, visibility 320ms ease;
}

.drawer-overlay.drawer-overlay--visible {
  opacity: 1;
  visibility: visible;
}

/* ─── DRAWER MOBILE — Premium Boutique ─── */
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 86vw);
  background:
    radial-gradient(ellipse at 50% 20%, rgba(201, 169, 110, .08) 0%, transparent 55%),
    linear-gradient(180deg, #15110B 0%, #1A1410 60%, #0F0C08 100%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  padding: 1.6rem 1.6rem 2rem;
  transform: translateX(100%);
  transition: transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
  box-shadow: -20px 0 60px rgba(0, 0, 0, .55);
  isolation: isolate;
}

.drawer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(201, 169, 110, .55) 25%, rgba(201, 169, 110, .55) 75%, transparent 100%);
  pointer-events: none;
}

.drawer--aberto { transform: translateX(0); }

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(201, 169, 110, .18);
}

.drawer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.drawer-logo-img {
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  filter: brightness(1.15) drop-shadow(0 0 12px rgba(201, 169, 110, .25));
}

.drawer-close {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(201, 169, 110, .25);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 230, 200, .7);
  cursor: pointer;
  padding: 0;
  transition: all .3s ease;
}

.drawer-close:hover {
  color: var(--ouro);
  border-color: var(--ouro);
  transform: rotate(90deg);
}

/* Eyebrow "MENU" antes dos links */
.drawer-links::before {
  content: 'MENU';
  display: block;
  text-align: center;
  font-family: var(--font-corpo);
  font-size: .52rem;
  font-weight: 700;
  letter-spacing: .42em;
  color: rgba(201, 169, 110, .55);
  margin-bottom: 1.4rem;
}

.drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  padding: 0;
  margin: 0;
}

.drawer-links li {
  position: relative;
  text-align: center;
}

.drawer-links li + li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, .25), transparent);
}

.drawer-link {
  position: relative;
  display: block;
  font-family: var(--font-titulo);
  font-size: 0.85rem;
  font-weight: 400;
  color: #F5E6C8;
  text-decoration: none;
  padding: 0.55rem 0;
  letter-spacing: .04em;
  transition: color .3s ease, transform .3s ease;
}

.drawer-link em,
.drawer-link i {
  font-style: italic;
  color: var(--ouro);
}

.drawer-link:hover,
.drawer-link:active {
  color: var(--ouro);
}

/* Diamante separador no rodapé do drawer */
.drawer-links::after {
  content: '✦';
  display: block;
  text-align: center;
  color: var(--ouro);
  font-size: 11px;
  opacity: .45;
  letter-spacing: .5em;
  margin-top: 1.2rem;
}

.navbar-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.navbar-cta {
  display: inline-flex;
  padding: 0.75rem 1.5rem;
  background-color: var(--ouro);
  color: var(--branco);
  font-family: var(--font-corpo);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 4px;
  border: 1.5px solid var(--ouro);
  transition: all 300ms var(--ease-out);
}

.navbar-cta:hover {
  background-color: var(--preto);
  color: var(--ouro);
  border-color: var(--preto);
}

/* ============================================================
   HERO — Klaas 50/50 Split
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background-color: var(--creme);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--navbar-height) + 3rem) var(--container-pad) 3rem;
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .5rem;
}

@media (max-width: 768px) {
  .hero-content {
    padding: calc(var(--navbar-height) + 30vh) 1.25rem 4rem; /* Abaixa o texto para fugir do rosto */
    text-align: left;
    align-items: flex-start;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
}

.hero-text {
  max-width: 100%;
}

.hero-title {
  font-family: var(--font-titulo);
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: 1.8rem;
  max-width: 80%;
}

@media (max-width: 768px) {
  .hero-title { max-width: 100%; }
}

.hero-line {
  display: block;
}

.hero-line-1 {
  font-size: clamp(0.7rem, 5vw, 2rem);
  color: var(--preto);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 700ms var(--ease-out) 200ms forwards;
}

.hero-line-2 {
  font-size: clamp(0.7rem, 5vw, 2rem);
  color: var(--ouro);
  font-style: italic;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 700ms var(--ease-out) 350ms forwards;
}

/* Desktop: 2 linhas (uma cada hero-line), nowrap pra não vazar pro vídeo */
@media (min-width: 769px) {
  .hero-line-1,
  .hero-line-2 {
    display: block;
    white-space: nowrap;
    font-size: clamp(1rem, 1.8vw, 1.5rem);
  }
  .hero-line-2::before {
    content: none;
  }
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-family: var(--font-corpo);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.65;
  font-weight: 300;
  color: var(--grafite);
  margin-top: 27px;
  margin-right: -140px;
  margin-bottom: 2.4rem;
  max-width: 82%;
  opacity: 0;
  animation: heroFadeUp 600ms var(--ease-out) 500ms forwards;
}

@media (max-width: 768px) {
  .hero-subtitle { max-width: 100%; }
}

.hero-star {
  color: var(--ouro);
  display: inline-block;
  animation: starPulse 3s ease-in-out infinite;
}

@keyframes starPulse {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: scale(1.3) rotate(15deg);
    opacity: 0.8;
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: .4rem;
  margin-bottom: var(--space-xl);
  opacity: 0;
  animation: heroFadeUp 600ms var(--ease-out) 650ms forwards;
}

@media (min-width: 600px) {
  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }
}

/* Header line block (Klaas style) */
.header-line-block {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: heroFadeUp 500ms var(--ease-out) 450ms forwards;
}

.header-line {
  width: 40px;
  height: 1px;
  background-color: var(--ouro);
}

.header-subtitle {
  font-family: var(--font-corpo);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cinza);
}

/* Badge Google */
.hero-badge {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.875rem 1.25rem;
  background: var(--branco);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: scale(0.8);
  animation: heroBadgeIn 400ms var(--ease-out) 900ms forwards;
  align-self: flex-start;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-badge:hover {
  transform: scale(1.05) translateY(-5px) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

@keyframes heroBadgeIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.badge-stars {
  font-size: 0.875rem;
  letter-spacing: 2px;
}

.badge-rating {
  font-family: var(--font-titulo);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--preto);
  line-height: 1;
}

.badge-source {
  font-size: 0.6875rem;
  color: var(--cinza);
  font-weight: 400;
}

.hero-decorative-line {
  display: none;
}

@media (min-width: 1024px) {
  .hero-decorative-line {
    display: block;
    position: absolute;
    right: -100px;
    top: 35%;
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, var(--ouro) 0%, transparent 100%);
    z-index: 15;
    opacity: 0;
    transform: translateX(-50px);
    animation: lineSlide 1200ms var(--ease-out) 1000ms forwards;
  }

  @keyframes lineSlide {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
}

/* Hero Image — Luminous Editorial Style */
.hero-image-wrapper {
  position: relative;
  width: 100%;
  margin-top: var(--space-lg);
  overflow: hidden;
  background-color: var(--creme); /* Fundo claro e arejado */
}

.hero-image {
  width: 100%;
  height: 450px; /* Um pouco mais alto para mobile */
  object-fit: cover;
  object-position: center center;
  display: block;
  border-radius: 4px;
  opacity: 0;
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.05);
  animation: heroImageLuminous 1800ms var(--ease-out) 300ms forwards;
}

/* Garante proporção correta do vídeo do hero (sem esticar) */
video.hero-image {
  aspect-ratio: auto;
  object-fit: cover !important;
}

@media (max-width: 768px) {
  .hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin-top: 0;
    z-index: 1;
  }
  
  .hero-image {
    height: 100% !important;
    border-radius: 0;
    object-position: center center;
  }

  .hero-image-overlay {
    background: linear-gradient(to right, 
                  rgba(245, 240, 232, 0.95) 25%, 
                  rgba(245, 240, 232, 0.6) 100%);
    z-index: 2;
  }
}

@keyframes heroImageLuminous {
  0% {
    opacity: 0;
    transform: scale(1.1);
    filter: saturate(1.05) contrast(1.02) brightness(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: saturate(1.05) contrast(1.02) brightness(1);
  }
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  /* Gradiente marrom escuro premium (chocolate/café) → creme no rodapé */
  background: linear-gradient(to bottom,
                rgba(44, 24, 16, 0.88) 0%,
                rgba(61, 41, 25, 0.55) 35%,
                rgba(89, 60, 36, 0.25) 65%,
                rgba(245, 240, 232, 0.55) 90%,
                var(--creme) 100%);
  pointer-events: none;
}

.hero-image-flare {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 80%;
  height: 80%;
  /* Flare de luz branca/ouro suave, não escuro */
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
  z-index: 3;
  pointer-events: none;
  mix-blend-mode: overlay;
  animation: lightMove 20s ease-in-out infinite alternate;
}

@keyframes lightMove {
  from { transform: translate(-2%, -2%); opacity: 0.3; }
  to { transform: translate(2%, 2%); opacity: 0.6; }
}

.hero-image-texture {
  position: absolute;
  inset: 0;
  z-index: 4;
  opacity: 0.03;
  pointer-events: none;
  background-image: url("https://www.transparenttextures.com/patterns/natural-paper.png"); /* Textura de papel premium */
}

.hero-image-frame {
  display: none;
}

/* ============================================================
   MARQUEE
   ============================================================ */

.marquee {
  background-color: var(--preto);
  padding: 0.875rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  animation: marqueeScroll 20s linear infinite;
  will-change: transform;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.marquee-item {
  font-family: var(--font-corpo);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ouro);
  padding: 0 1.5rem;
}

.marquee-sep {
  color: rgba(201, 169, 110, 0.4);
  font-size: 0.625rem;
}

/* ============================================================
   DIFERENCIAIS — Boutique Balance (Refined & Balanced)
   ============================================================ */
 
 .boutique-diferenciais {
   padding: var(--space-2xl) 0;
   background-color: var(--branco);
   border-bottom: 1px solid rgba(0,0,0,0.03);
 }
 
 .boutique-header {
   text-align: center;
   margin-bottom: var(--space-xl);
 }
 
 .boutique-title {
   font-family: var(--font-titulo);
   font-size: clamp(1.8rem, 3.5vw, 2.4rem);
   color: var(--preto);
   letter-spacing: -0.01em;
 }
 
 .boutique-title em {
   font-style: italic;
   color: var(--ouro);
   font-weight: 300;
 }
 
 .boutique-grid {
   display: grid;
   grid-template-columns: repeat(1, 1fr);
   gap: 1.5rem;
 }
 
 .boutique-card {
   background: var(--branco);
   padding: 2.2rem 1.5rem; /* Padding equilibrado */
   border: 1px solid rgba(196, 154, 60, 0.15);
   text-align: center; /* Volta ao centralizado */
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 1rem;
   transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
   position: relative;
   overflow: hidden;
 }
 
 .boutique-icon {
   width: 32px;
   height: 32px;
   color: var(--ouro);
   margin-bottom: 0.5rem;
 }
 
 .boutique-card h3 {
   font-family: var(--font-titulo);
   font-size: 1.25rem;
   color: var(--preto);
   margin: 0;
 }
 
 .boutique-card p {
   font-size: 0.875rem;
   line-height: 1.6;
   color: var(--cinza);
   margin: 0;
   max-width: 280px; /* Evita linhas muito longas no centro */
 }
 
 .boutique-card::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 50%;
   width: 0;
   height: 2px;
   background: var(--ouro);
   transition: all 0.4s ease;
   transform: translateX(-50%);
 }
 
 .boutique-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 10px 30px rgba(196, 154, 60, 0.08);
   border-color: var(--ouro);
 }
 
 .boutique-card:hover::after {
   width: 40px; /* Linha dourada centralizada no hover */
 }
 
 @media (min-width: 768px) {
   .boutique-grid {
     grid-template-columns: repeat(3, 1fr);
   }
 }

/* ============================================================
   SERVIÇOS — Klaas Immersive Style
   ============================================================ */
 
 .klaas-servicos {
   padding: var(--space-4xl) 0;
   background-color: var(--branco);
 }
 
 .klaas-header {
   margin-bottom: var(--space-4xl);
 }
 
 .klaas-intro {
   display: flex;
   align-items: center;
   gap: 1.5rem;
   margin-bottom: 2rem;
 }
 
 .klaas-main-title {
   font-family: var(--font-titulo);
   font-size: clamp(3rem, 6vw, 4.5rem);
   line-height: 1;
   color: var(--preto);
   letter-spacing: -0.04em;
   margin-top: 1.5rem;
 }
 
 .klaas-main-title em {
   font-style: italic;
   color: var(--ouro);
   font-weight: 300;
 }
 
 .klaas-grid {
   display: grid;
   grid-template-columns: repeat(1, 1fr);
   gap: 1.5rem;
 }
 
 .klaas-card {
   position: relative;
   height: 500px;
   overflow: hidden;
   cursor: pointer;
   background-color: var(--preto);
 }
 
 .klaas-card-bg {
   position: absolute;
   inset: 0;
   z-index: 1;
 }
 
 .klaas-card-bg img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
   opacity: 0.8;
 }
 
 .klaas-overlay {
   position: absolute;
   inset: 0;
   background-color: rgba(10, 20, 40, 0.6); /* Navy/Deep Blue overlay */
   transition: background-color 0.5s ease;
 }
 
 .klaas-content {
   position: absolute;
   inset: 0;
   z-index: 2;
   padding: 3rem;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   align-items: center;
   text-align: center;
   color: var(--branco);
 }
 
 .klaas-category {
   font-family: var(--font-corpo);
   font-size: 0.75rem;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 0.3em;
   opacity: 0.8;
 }
 
 .klaas-card-title {
   font-family: var(--font-titulo);
   font-size: clamp(2rem, 3vw, 2.5rem);
   color: var(--branco);
   margin: 0;
   line-height: 1.1;
 }
 
 .klaas-card-desc {
   font-size: 1rem;
   color: rgba(255, 255, 255, 0.8);
   line-height: 1.6;
   margin-top: 1rem;
   max-width: 280px;
   margin-left: auto;
   margin-right: auto;
 }
 
 .klaas-cta {
   display: block;
   text-decoration: none;
   color: var(--branco);
   font-family: var(--font-corpo);
   font-size: 0.8125rem;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 0.2em;
   opacity: 0;
   transform: translateY(10px);
   transition: all 0.4s var(--ease-out);
 }
 
 .klaas-circle {
   display: none;
 }
 
 .klaas-card:hover .klaas-card-bg img {
   transform: scale(1.1);
 }
 
 .klaas-card:hover .klaas-overlay {
   background-color: rgba(10, 20, 40, 0.75);
 }
 
 .klaas-card:hover .klaas-cta {
   opacity: 1;
   transform: translateY(0);
 }
 
 @media (min-width: 768px) {
   .klaas-grid {
     grid-template-columns: repeat(2, 1fr);
   }
 }
 
 @media (min-width: 1024px) {
   .klaas-grid {
     grid-template-columns: repeat(3, 1fr);
     gap: 2rem;
   }
 }

/* Divider lines (Klaas style) */
.categoria-linhas {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: var(--space-sm) 0 var(--space-md);
}

.categoria-linha {
  height: 1px;
  background: linear-gradient(90deg, var(--borda-forte) 0%, transparent 100%);
}

.categoria-linha.is-2nd {
  width: 60%;
}

/* Legacy servico-item styles for backwards compatibility */
.servicos-lista {
  display: none;
}

.servico-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--borda);
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out);
}

.servico-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.servico-numero {
  font-family: var(--font-titulo);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  color: var(--ouro);
  line-height: 1;
  min-width: 80px;
  opacity: 0.85;
}

.servico-conteudo {
  flex: 1;
}

.servico-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

.servico-titulo {
  font-family: var(--font-titulo);
  font-size: clamp(1.25rem, 3vw, 1.625rem);
  font-weight: 400;
  color: var(--preto);
}

.servico-toggle {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--borda-forte);
  border-radius: 50%;
  color: var(--ouro);
  font-size: 1.25rem;
  transition: all 300ms ease;
  flex-shrink: 0;
}

.servico-toggle:hover {
  background-color: var(--ouro);
  color: var(--branco);
  border-color: var(--ouro);
}

.servico-toggle[aria-expanded="true"] .toggle-icon {
  transform: rotate(45deg);
}

.toggle-icon {
  display: block;
  transition: transform 300ms ease;
  line-height: 1;
}

.servico-separador {
  height: 1px;
  background: linear-gradient(90deg, var(--ouro) 0%, transparent 100%);
  margin: var(--space-sm) 0;
  opacity: 0.3;
}

.servico-descricao {
  padding-top: var(--space-sm);
}

.servico-descricao[hidden] {
  display: none;
}

.servico-procedimentos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.servico-procedimentos li {
  font-size: 0.9375rem;
  color: var(--grafite);
  padding-left: 1.25rem;
  position: relative;
}

.servico-procedimentos li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--ouro);
  font-size: 0.625rem;
  top: 3px;
}

/* ============================================================
ESTÉTICA CORPORAL
============================================================ */

/* ============================================================
ESTÉTICA CORPORAL (MINIMAL COMPACT)
============================================================ */
 
.estetica-compact {
  padding: var(--space-3xl) 0;
  background-color: var(--branco);
  margin-top: var(--space-xl);
}
 
.estetica-glass-card {
  display: flex;
  flex-direction: column;
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 24px 60px -20px rgba(42, 30, 20, .18);
}
 
.estetica-card-content {
  padding: var(--space-xl);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
 
.estetica-tag {
  font-family: var(--font-corpo);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ouro);
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: block;
}
 
.estetica-min-title {
  font-family: var(--font-titulo);
  font-size: 2rem;
  color: var(--preto);
  margin-bottom: 0.5rem;
}
 
.estetica-min-title em {
  font-style: italic;
  color: var(--ouro);
}
 
.estetica-card-content p {
  font-size: 0.9375rem;
  color: var(--grafite);
  margin-bottom: var(--space-lg);
}
 
.estetica-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-xl);
}
 
.estetica-chip {
  background: var(--branco);
  border: 1px solid var(--borda);
  padding: 0.4rem 0.8rem;
  border-radius: 2px;
  font-family: var(--font-corpo);
  font-size: 0.75rem;
  color: var(--grafite);
  font-weight: 500;
  transition: all 0.3s ease;
}
 
.estetica-chip:hover {
  border-color: var(--ouro);
  color: var(--ouro);
}
 
.btn-estetica-min {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--preto);
  font-family: var(--font-corpo);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: all 0.3s ease;
}
 
.btn-estetica-min svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}
 
.btn-estetica-min:hover {
  color: var(--ouro);
}
 
.btn-estetica-min:hover svg {
  transform: translateX(5px);
}
 
.estetica-card-image {
  position: relative;
  overflow: hidden;
  background: var(--branco-suave);
}

.estetica-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

/* Mobile: imagem em formato vertical 9:16 — mais alta, menos larga */
@media (max-width: 1023px) {
  .estetica-card-image {
    aspect-ratio: 9 / 16;
    max-width: 280px;
    max-height: 60vh;
    width: 100%;
    margin: 0 auto;
    border-radius: 1rem;
  }
  .estetica-card-image img {
    border-radius: inherit;
  }
}
 
.image-overlay-gold {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(201, 169, 110, 0.2), transparent);
  pointer-events: none;
}
 
@media (min-width: 1024px) {
  .estetica-glass-card {
    flex-direction: row;
    min-height: 400px;
  }
 
  .estetica-card-content {
    padding: var(--space-2xl);
    width: 60%;
  }
 
  .estetica-card-image {
    width: 40%;
    height: auto;
  }
}

.estetica-compact p {
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.estetica-lista {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
}

.estetica-lista li {
  font-size: 0.875rem;
  color: var(--grafite);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.estetica-ponto {
  color: var(--ouro);
  font-size: 0.625rem;
}

/* ============================================================
   GALERIA — Mosaico assimétrico
   ============================================================ */

/* ============================================================
   NOSSO ESPAÇO — GALERIA EDITORIAL (Magazine Style)
   ============================================================ */
.espaco-editorial {
  padding: var(--space-3xl) 0;
  background-color: var(--creme); /* Fundo suave para contraste */
  overflow: hidden;
}

/* Unificação visual: Essência + Divisor + Atmosfera no mesmo background */
.essencia-bloco {
  background: var(--creme);
  position: relative;
}

.essencia-bloco .sobre-unified,
.essencia-bloco .atmosfera-unified {
  background: transparent !important;
  padding-top: 4rem;
  padding-bottom: 2.5rem;
}

.essencia-bloco .atmosfera-unified {
  padding-top: 2.5rem;
  padding-bottom: 4.5rem;
}

/* Unificação Serviços + Estética Corporal (mesmo fundo creme + divisor premium) */
.servicos-bloco {
  background: var(--creme);
  position: relative;
}

.servicos-bloco .srv-unified,
.servicos-bloco .estetica-unified {
  background: transparent !important;
}

.servicos-bloco .srv-unified {
  padding-top: 4.5rem;
  padding-bottom: 2rem;
}

.servicos-bloco .estetica-unified {
  padding-top: 2rem;
  padding-bottom: 4.5rem;
  margin-top: 0 !important;
}

@media (max-width: 768px) {
  .servicos-bloco .srv-unified { padding-top: 3rem; padding-bottom: 1.2rem; }
  .servicos-bloco .estetica-unified { padding-top: 1.2rem; padding-bottom: 3rem; }
}

/* Divisor premium entre as duas seções */
.section-divider-premium {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  padding: 1.2rem var(--container-pad);
  opacity: 0;
  animation: dividerFadeIn .9s cubic-bezier(0.16, 1, 0.3, 1) .2s forwards;
}

.section-divider-premium .divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201, 169, 110, .45) 50%,
    transparent 100%);
}

.section-divider-premium .divider-icon {
  color: var(--ouro);
  font-size: .85rem;
  opacity: .9;
  letter-spacing: .15em;
}

@keyframes dividerFadeIn {
  to { opacity: 1; }
}

/* Depoimentos com fundo creme premium (alinhado às outras seções) */
.depoimentos.depoimentos-premium,
.social-bridge.social-premium,
.faq.faq-premium,
.localizacao.localizacao-premium {
  background-color: var(--creme) !important;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (max-width: 768px) {
  .depoimentos.depoimentos-premium,
  .social-bridge.social-premium,
  .faq.faq-premium,
  .localizacao.localizacao-premium {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

/* Instagram bridge: subtitle em 1 linha + iframes mais próximos do header */
.social-bridge.social-premium .social-header {
  margin-bottom: 1.6rem;
}

.social-bridge.social-premium .srv-premium-sub {
  white-space: nowrap;
  max-width: none;
  font-size: clamp(.78rem, 1.2vw, .92rem);
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 768px) {
  .social-bridge.social-premium .social-header { margin-bottom: 1.2rem; }
  .social-bridge.social-premium .srv-premium-sub {
    white-space: normal;
    font-size: .8rem;
  }
}

/* Cards de Instagram (embeds + posts) sem fundo branco — encostam no creme */
.social-bridge.social-premium .social-embed,
.social-bridge.social-premium .social-post {
  margin-top: 0;
}

/* Divisor standalone — entre seções com backgrounds diferentes */
.section-divider-standalone {
  background: var(--creme);
  padding: 3rem var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-divider-standalone::before,
.section-divider-standalone::after {
  content: '';
  flex: 1;
  max-width: 280px;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201, 169, 110, .45) 50%,
    transparent 100%);
}

.section-divider-standalone .divider-line { display: none; }

.section-divider-standalone .divider-icon {
  color: var(--ouro);
  font-size: .85rem;
  opacity: .9;
  margin: 0 1.2rem;
}

@media (max-width: 768px) {
  .section-divider-standalone { padding: 2rem var(--container-pad); }
  .section-divider-standalone::before,
  .section-divider-standalone::after { max-width: 140px; }
  .section-divider-standalone .divider-icon { font-size: .7rem; margin: 0 .9rem; }
}

@media (max-width: 768px) {
  .essencia-bloco .sobre-unified { padding-top: 3rem; padding-bottom: 1.5rem; }
  .essencia-bloco .atmosfera-unified { padding-top: 1.5rem; padding-bottom: 3rem; }
  .section-divider-premium { padding: .8rem var(--container-pad); gap: .9rem; }
  .section-divider-premium .divider-icon { font-size: .7rem; }
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (max-width: 1023px) {
  .editorial-grid {
    gap: 0.55rem; 
  }
}

/* Sidebar fixa no desktop */
.editorial-sidebar {
  padding-right: var(--space-lg);
}

.editorial-sidebar .section-title {
  margin-bottom: var(--space-md);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
}

.editorial-intro {
  font-size: 1.125rem;
  color: var(--cinza);
  max-width: 35ch;
  margin-bottom: var(--space-xl);
  line-height: 1.5;
}

@media (max-width: 1023px) {
  .editorial-intro {
    margin-bottom: 0.75rem;
  }
}

/* Showcase - O Carrossel */
.editorial-showcase {
  position: relative;
  width: 100%;
}

.cinematic-track {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5; 
  border-radius: 4px;
}

.cinematic-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.cinematic-slide.active {
  opacity: 1;
  visibility: visible;
}

/* Moldura Galeria (Pass-partout) */
.gallery-frame {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 1rem;
  background-color: var(--branco);
  box-shadow: 0 40px 100px rgba(0,0,0,0.1);
}

.gallery-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  background-color: var(--creme); /* Fundo neutro para fotos menores */
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-image-video {
  background: #0F0F0F;
}

.gallery-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* Garante que a foto apareça inteira */
  transition: transform 8s ease-out;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cinematic-slide.active .gallery-image img {
  transform: scale(1.1);
}

/* Caption editorial — abaixo da imagem, estilo placa de museu */
.gallery-content {
  position: relative;
  margin-top: 1.8rem;
  margin-bottom: .6rem;
  padding: 0 .25rem;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .6s ease, transform .6s ease;
  pointer-events: none;
  background: transparent;
}

.cinematic-slide.active .gallery-content {
  opacity: 1;
  transform: translateY(0);
}

.gallery-num { display: none; }

.gallery-text {
  max-width: 460px;
  margin: 0 auto;
  text-align: center;
}

.gallery-text::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--ouro);
  margin: 0 auto .85rem;
  opacity: .7;
}

.gallery-text h3 {
  font-family: var(--font-titulo);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  margin: 0 0 .4rem;
  color: var(--preto);
  letter-spacing: -.01em;
  line-height: 1.15;
}

.gallery-text p {
  font-size: .58rem;
  color: var(--ouro);
  text-transform: uppercase;
  letter-spacing: .32em;
  line-height: 1.5;
  font-weight: 500;
  margin: 0;
}

@media (max-width: 768px) {
  .gallery-content { margin-top: 1.1rem; }
  .gallery-text h3 { font-size: 1.05rem; }
  .gallery-text p { font-size: .54rem; letter-spacing: .28em; }
  .gallery-text::before { width: 22px; margin-bottom: .65rem; }
}

/* Navegação Editorial */
.editorial-nav-desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: 2.5rem;
}

.editorial-arrow {
  background: none;
  border: none;
  padding: 0;
  width: 48px; /* Aumentado para touch target de 48px */
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--preto);
  transition: all 0.5s var(--ease-out);
  cursor: pointer;
  opacity: 0.6;
}

.editorial-arrow:hover {
  color: var(--ouro);
  opacity: 1;
  transform: scale(1.2);
}

.editorial-arrow svg {
  width: 100%;
  height: 100%;
}

.editorial-indicators {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.indicator-dot {
  width: 40px;
  height: 1px;
  background-color: var(--borda-forte);
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  padding: 0;
  border-radius: 0;
  cursor: pointer;
  position: relative; /* Adicionado para pseudo-elemento de toque */
}

.indicator-dot::before {
  content: '';
  position: absolute;
  top: -20px;
  bottom: -20px;
  left: 0;
  right: 0;
}

.indicator-dot.active {
  background-color: var(--ouro);
  width: 80px;
  height: 2px;
}

/* Hover nos indicadores para interação premium */
.indicator-dot:hover {
  background-color: var(--ouro-escuro);
}

/* Responsivo Editorial */
@media (min-width: 1024px) {
  .editorial-grid {
    grid-template-columns: 300px 1fr;
    gap: var(--space-3xl);
  }

  .cinematic-track {
    aspect-ratio: 16/13; /* Ajuste fino: um pouco menos que 14, mas ainda imponente */
  }

  .gallery-frame {
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .gallery-image {
    box-shadow: 0 50px 120px rgba(0,0,0,0.15);
    border: 15px solid var(--branco);
  }
}

@media (max-width: 768px) {
  .cinematic-track {
    aspect-ratio: 1/1.4; /* Ajuste para mobile */
    width: 100%;
  }

  .gallery-frame {
    padding: 0.5rem;
  }

  .gallery-num {
    font-size: 2.5rem;
    margin-right: 0.5rem;
  }
  
  .gallery-text {
    padding-left: 0.5rem;
  }

  .gallery-text h3 {
    font-size: 1.15rem;
  }

  .editorial-nav-desktop {
    gap: 1rem;
  }

  .editorial-arrow {
    width: 40px;
    height: 40px;
  }

  .indicator-dot {
    width: 25px;
  }

  .indicator-dot.active {
    width: 50px;
  }
}

@media (max-width: 1023px) {
  .editorial-nav-desktop {
    margin-top: 2.2rem !important;
    justify-content: center;
    gap: 1.4rem !important;
    position: relative;
    z-index: 5;
  }

  .editorial-sidebar {
    text-align: left;
    padding-right: 0;
  }

  .editorial-intro {
    margin: 0 0 var(--space-lg);
  }

  /* Caption respira mais antes das setas */
  .gallery-content {
    margin-top: 1.4rem !important;
    margin-bottom: 1rem !important;
    padding-bottom: 0;
  }

  .gallery-text::before {
    margin-bottom: .75rem !important;
  }

  /* Setas com background visível pra não confundirem com o traço dourado do caption */
  .editorial-arrow {
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    background: var(--branco) !important;
    border: 1px solid rgba(201, 169, 110, .3) !important;
    box-shadow: 0 6px 16px -8px rgba(42, 30, 20, .25) !important;
    opacity: 1 !important;
    padding: 10px !important;
  }

  .editorial-arrow:hover {
    background: var(--ouro) !important;
    border-color: var(--ouro) !important;
    color: var(--branco) !important;
    transform: scale(1.05) !important;
  }
}

/* ============================================================
   SOBRE / CREDENCIAIS — Klaas 3-col icon grid + Split
   ============================================================ */

/* ============================================================
   SOBRE / ESSÊNCIA PREMIUM — Editorial Design
   ============================================================ */
.sobre {
  padding: var(--space-3xl) 0;
  background-color: var(--branco);
  overflow: hidden;
}

.sobre-editorial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

/* Visual Composition (Left Side) */
.sobre-visual-composition {
  position: relative;
  padding: 60px 40px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 600px;
}

/* Background Decorative Text "ESSÊNCIA" */
.sobre-visual-composition::before {
  content: 'ESSÊNCIA';
  position: absolute;
  left: -80px;
  bottom: 15%;
  font-family: var(--font-titulo);
  font-size: 14rem;
  font-weight: 700;
  color: #000;
  opacity: 0.03;
  z-index: 0;
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: -0.05em;
  max-width: 100%; /* Evita que o pseudo-elemento estique o body */
}

/* Gold Line Top Right */
.sobre-visual-composition::after {
  content: '';
  position: absolute;
  top: 10%;
  right: 0;
  width: 180px;
  height: 1px;
  background-color: var(--ouro);
  opacity: 0.3;
  z-index: 0;
}

.image-wrapper {
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.main-image {
  position: relative;
  width: 80%;
  max-width: 450px;
  aspect-ratio: 3 / 4.2;
  z-index: 1;
  border-radius: 2px;
  overflow: hidden;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.secondary-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 58%;
  aspect-ratio: 1 / 1;
  z-index: 3;
  background: var(--branco);
  padding: 10px; /* Reduzido de 18px para 10px para um visual mais fino */
  /* Moldura branca com ponta no canto inferior direito */
  border-radius: 50% 50% 15px 50%; 
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
  display: block; /* Removido flex para facilitar o preenchimento */
  overflow: hidden;
}

.secondary-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* A imagem agora segue o formato da moldura, indo até a ponta */
  border-radius: 50% 50% 5px 50%; 
}


.decorative-box {
  display: none;
}

/* Content Narrative (Right Side) */
/* Content Narrative (Right Side) */
.sobre-content-narrative {
  padding-left: var(--space-xl);
  position: relative;
  z-index: 2;
}

/* Numbering Premium Style */
.numbering-premium {
  display: flex;
  align-items: center;
  gap: 0.75rem; /* Reduzido de 1.5rem para aproximar os elementos */
  margin-bottom: var(--space-md);
}


.numbering-premium .is-number {
  font-family: var(--font-titulo);
  font-size: 1.125rem; /* Aumentado levemente conforme solicitado */
  color: var(--ouro);
  line-height: 1;
  font-weight: 400;
}



.numbering-premium .numbering-line {
  width: 40px; /* Aumentado para 40px como no Feedback */
  height: 1.5px; /* Engrossado levemente conforme solicitado */
  background-color: var(--ouro);
  opacity: 0.4; /* Aumentado levemente a opacidade para dar mais presença */
}



.numbering-premium .sign-text:not(.is-number) {
  font-family: var(--font-corpo);
  font-size: 0.75rem; /* Igual ao Feedback */
  font-weight: 500; /* Igual ao Feedback */
  letter-spacing: 0.2em; /* Igual ao Feedback */
  text-transform: uppercase;
  color: var(--cinza); /* Cor cinza igual ao Feedback */
}




.narrative-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
  margin-top: var(--space-sm);
  color: var(--grafite); /* Alterado de preto para grafite para suavizar */
}

.lead-text {
  font-family: var(--font-titulo);
  font-size: 1.25rem;
  color: var(--ouro);
  font-style: italic;
  margin-bottom: var(--space-md);
  line-height: 1.5;
}

.narrative-text-block {
  font-size: 1.0625rem;
  color: var(--grafite);
  margin-bottom: var(--space-sm); /* Reduzido de LG para SM para aproximar os pilares */
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  line-height: 1.8;
  max-width: 520px; /* Limite de largura para melhor alinhamento editorial */
  text-align: justify; /* Alinhamento justificado para um visual mais limpo */
}




.narrative-text-block strong {
  color: var(--ouro);
  font-weight: 400; /* Removido o negrito conforme solicitado */
}



/* Brand Pillars Premium Inline */
.brand-pillars-premium {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: var(--space-md);
  padding: var(--space-sm) 0;
  border-top: 1px solid var(--borda);
  border-bottom: 1px solid var(--borda);
  font-family: var(--font-corpo);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grafite);
  width: 100%;
}

@media (min-width: 768px) {
  .brand-pillars-premium {
    flex-wrap: nowrap;
    justify-content: flex-start;
    white-space: nowrap;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}


.brand-pillars-premium::-webkit-scrollbar {
  display: none; /* Esconde scrollbar Chrome/Safari */
}


.pillar-sep {
  color: var(--ouro);
  font-size: 0.6rem;
}


.btn-discover-lumina {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem 0;
  font-family: var(--font-corpo);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grafite); /* Alterado para grafite */
  text-decoration: none;
  position: relative;
  transition: all 0.3s var(--ease-out);
}

.btn-discover-lumina::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--ouro);
  transition: transform 0.4s var(--ease-out);
}

.btn-discover-lumina svg {
  width: 20px;
  height: 20px;
  transition: transform 0.4s var(--ease-out);
}

.btn-discover-lumina:hover {
  color: var(--ouro);
}

.btn-discover-lumina:hover svg {
  transform: translateX(8px);
}


/* Responsive Adjustments */
@media (min-width: 1024px) {
  .sobre-editorial-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: var(--space-3xl);
  }

  .sobre-content-narrative {
    padding-left: var(--space-lg);
  }
}

@media (max-width: 1023px) {
  /* Textos vêm PRIMEIRO, imagem DEPOIS */
  .sobre-editorial-grid {
    display: flex !important;
    flex-direction: column;
    gap: 2.5rem;
    grid-template-columns: none;
  }

  .sobre-content-narrative {
    order: 1;
    padding-left: 0;
    width: 100%;
    text-align: center;
  }

  .sobre-content-narrative .numbering-premium {
    justify-content: center;
  }

  .sobre-visual-composition {
    order: 2;
    padding: 0;
    min-height: auto;
    margin-bottom: 0;
    overflow: visible;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .sobre-visual-composition::before {
    font-size: 4rem;
    left: 0;
    bottom: 0;
    opacity: .05;
    max-width: 100%;
  }

  .sobre-visual-composition::after {
    display: none;
  }

  /* Imagem principal 9:16 — mais alta, menos larga, sem corte */
  .main-image {
    position: relative !important;
    width: 75% !important;
    max-width: 300px !important;
    aspect-ratio: 9 / 16 !important;
    margin: 0 auto !important;
    border-radius: 1rem !important;
    overflow: hidden !important;
  }

  .main-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  /* Balão secundário sutil, integrado e sem cortar imagem principal */
  .secondary-image {
    position: absolute !important;
    width: 38% !important;
    max-width: 130px !important;
    bottom: -16px !important;
    right: -10px !important;
    aspect-ratio: 1 / 1 !important;
    margin: 0 !important;
    padding: 6px !important;
    border-radius: 50% 50% 12px 50% !important;
    z-index: 5;
    background: var(--branco) !important;
    box-shadow: 0 18px 40px -16px rgba(42, 30, 20, .35) !important;
  }

  .secondary-image img {
    border-radius: 50% 50% 6px 50% !important;
  }

  .brand-pillars-premium {
    flex-wrap: wrap !important;
    white-space: normal !important;
    justify-content: center !important;
    gap: 1rem !important;
    padding: 1.5rem 0 !important;
    width: 100% !important;
    overflow: visible !important;
  }

  .sobre-actions {
    justify-content: center !important;
    display: flex;
  }

  /* ATMOSFERA — header centralizado no mobile */
  .espaco-editorial .editorial-sidebar {
    text-align: center !important;
    align-items: center;
    padding-right: 0 !important;
  }

  .espaco-editorial .editorial-sidebar .numbering-block {
    justify-content: center !important;
  }

  .espaco-editorial .editorial-sidebar .section-title,
  .espaco-editorial .editorial-sidebar .editorial-intro {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .espaco-editorial .editorial-intro {
    max-width: 360px;
  }

  /* DEPOIMENTOS — reforço de centralização */
  .depoimentos.depoimentos-premium .depoimentos-header-side,
  .depoimentos.depoimentos-premium .depoimentos-header-side * {
    text-align: center !important;
  }

  .depoimentos.depoimentos-premium .depoimentos-header-side .numbering-block {
    justify-content: center !important;
  }

  /* ── REMOVER traço (numbering-line) nas 3 seções no mobile ── */
  .depoimentos.depoimentos-premium .numbering-line,
  .sobre.sobre-unified .numbering-line,
  .espaco-editorial.atmosfera-unified .numbering-line {
    display: none !important;
  }

  /* Padronizar o sign-text como eyebrow (igual seção Serviços) */
  .depoimentos.depoimentos-premium .sign-text,
  .sobre.sobre-unified .sign-text,
  .espaco-editorial.atmosfera-unified .sign-text {
    font-family: var(--font-corpo) !important;
    font-size: .65rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: .32em !important;
    color: var(--ouro) !important;
    margin-bottom: 1rem !important;
    display: inline-block !important;
    text-align: center !important;
  }

  .depoimentos.depoimentos-premium .numbering-block,
  .sobre.sobre-unified .numbering-block,
  .sobre.sobre-unified .numbering-premium,
  .espaco-editorial.atmosfera-unified .numbering-block {
    display: block !important;
    text-align: center !important;
    margin-bottom: .5rem !important;
    gap: 0 !important;
  }

  /* Card "Quer ver mais? Avaliações no Google" — centralizado no mobile */
  .depoimentos.depoimentos-premium .google-reviews-card-container {
    justify-content: center !important;
    width: 100% !important;
  }

  .depoimentos.depoimentos-premium .google-reviews-card {
    margin: 0 auto !important;
  }
}




 

 

 

 

 

 

 

 

 

 


/* ============================================================
   DEPOIMENTOS — Carrossel fade + Google
   ============================================================ */

.depoimentos {
  padding: var(--space-2xl) 0;
  background-color: var(--branco);
}

.depoimentos-layout {
  display: grid;
  gap: var(--space-xl);
}



/* Depoimentos Carrossel Premium V2 - Compacto */
.depoimentos {
  padding: var(--space-xl) 0; /* Reduzido de 3xl para xl */
  background-color: var(--branco);
  overflow: hidden;
}

/* Depoimentos Layout Split (Lado a Lado) */
.depoimentos-layout-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.depoimentos-header-side {
  text-align: left;
}

.depoimentos-header-side .numbering-block {
  justify-content: flex-start;
  margin-bottom: var(--space-sm);
}

.title-premium-depoimentos {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.title-prefix {
  display: block;
  font-family: var(--font-corpo);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--cinza);
  margin-bottom: 0.5rem;
}

.title-premium-depoimentos em {
  font-family: var(--font-titulo);
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  color: var(--ouro);
  font-style: italic;
}

.google-reviews-card-container {
  margin-top: 0;
  display: flex;
  justify-content: flex-start;
}

.google-reviews-card {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  background: var(--branco);
  border-left: 3px solid var(--ouro);
  padding: var(--space-md) var(--space-xl);
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 400ms ease;
  width: fit-content;
}

.google-reviews-card:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(201, 169, 110, 0.12);
}

.google-card-title {
  font-family: var(--font-corpo);
  font-weight: 700;
  font-size: 0.9375rem; /* Reduzido de 1.125rem */
  color: var(--preto);
  margin-bottom: 0;
  white-space: nowrap;
}

.google-card-link {
  font-family: var(--font-titulo);
  font-size: 1rem;
  color: var(--ouro);
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.google-card-link svg {
  transition: transform 300ms ease;
}

.google-reviews-card:hover .google-card-link svg {
  transform: translateX(5px);
}

.depoimentos-content-side {
  width: 100%;
}



.depoimentos-carrossel-premium {
  width: 100%;
  position: relative;
}

@media (min-width: 1024px) {
  .depoimentos-layout-split {
    grid-template-columns: 380px 1fr;
    grid-template-rows: auto 1fr;
    column-gap: var(--space-3xl);
    row-gap: 0;
  }

  .title-premium-depoimentos {
    transform: translateY(1.5rem);
  }

  .depoimentos-header-side {
    grid-column: 1;
    grid-row: 1;
  }

  .depoimentos-content-side {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .google-reviews-card-container {
    grid-column: 1;
    grid-row: 2;
    margin-top: var(--space-lg);
  }

  .depoimento-card-v2 {
    text-align: left;
    align-items: flex-start;
    padding: var(--space-xl) var(--space-2xl);
  }

  .depoimento-texto-v2 {
    max-width: 100%;
  }

  .depoimento-autor-v2::before {
    left: 0;
    transform: none;
  }

  .carrossel-controls-v2 {
    justify-content: flex-start;
  }
}

.depoimentos-carrossel-premium {
  max-width: 800px; /* Reduzido de 900px */
  margin: 0 auto;
  position: relative;
}

.carrossel-container {
  position: relative;
}

.carrossel-track {
  position: relative;
  height: 400px; /* Aumentado para garantir espaço */
  display: flex;
  align-items: center;
}

.depoimento-card-v2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: 24px;
  padding: var(--space-xl) var(--space-2xl);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  opacity: 0;
  visibility: hidden;
  transition: all 800ms cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(30px) scale(0.98);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  overflow: hidden; /* Garante que nada saia da borda arredondada */
}

.depoimento-card-v2.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  transform: translateX(0) scale(1);
}

.depoimento-stars-v2 {
  color: var(--ouro);
  font-size: 0.875rem;
  margin-bottom: var(--space-md);
  letter-spacing: 3px;
  flex-shrink: 0;
}

.depoimento-texto-v2 {
  font-family: var(--font-titulo);
  font-size: clamp(1rem, 2vw, 1.25rem); /* Ajustado para caber melhor */
  color: var(--preto);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: var(--space-lg);
  max-width: 100%;
  overflow-y: auto; /* Permite rolar se o texto for gigante */
  max-height: 220px; /* Limite interno para o texto */
  padding-right: 10px;
}

/* Custom scrollbar para o texto do depoimento */
.depoimento-texto-v2::-webkit-scrollbar {
  width: 3px;
}
.depoimento-texto-v2::-webkit-scrollbar-thumb {
  background: var(--ouro);
  border-radius: 10px;
}

.depoimento-autor-v2 {
  font-family: var(--font-corpo);
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--preto);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  padding-top: var(--space-sm);
}

.depoimento-autor-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background-color: var(--ouro);
}

/* Controles V2 Compactos */
.carrossel-controls-v2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-md); /* Reduzido de lg para md */
}

.carrossel-btn-v2 {
  width: 48px; /* Aumentado para touch target de 48px */
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--branco);
  border: 1px solid var(--borda-forte);
  border-radius: 50%;
  color: var(--grafite);
  cursor: pointer;
  transition: all 400ms ease;
}

.carrossel-btn-v2:hover {
  border-color: var(--ouro);
  color: var(--ouro);
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(201, 169, 110, 0.2);
}

.carrossel-dots-v2 {
  display: flex;
  gap: 12px;
}

.carrossel-dot-v2 {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--borda-forte);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 400ms ease;
  position: relative; /* Adicionado para pseudo-elemento de toque */
}

.carrossel-dot-v2::before {
  content: '';
  position: absolute;
  top: -20px;
  bottom: -20px;
  left: -20px;
  right: -20px;
}

.carrossel-dot-v2.active {
  background: var(--ouro);
  transform: scale(1.5);
  box-shadow: 0 0 10px rgba(201, 169, 110, 0.4);
}

/* ============================================================
   LUMINA BOUTIQUE REEL V2 (ESTÁVEL)
   ============================================================ */
.video-reel-v2 {
  padding: var(--space-2xl) 0;
  background-color: var(--branco);
  overflow: hidden;
}

.reel-grid-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.reel-card-v2 {
  position: relative;
  cursor: pointer;
  width: 100%;
}

.reel-thumb-v2 {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--preto);
  margin-bottom: 1rem;
}

.reel-thumb-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reel-play-v2 {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: all 0.4s ease;
}

.reel-play-v2 svg {
  width: 40px;
  height: 40px;
  color: var(--branco);
  transform: scale(0.8);
  transition: transform 0.4s var(--ease-out);
}

.reel-card-v2:hover .reel-thumb-v2 img {
  transform: scale(1.05);
  opacity: 0.7;
}

.reel-card-v2:hover .reel-play-v2 {
  opacity: 1;
}

.reel-card-v2:hover .reel-play-v2 svg {
  transform: scale(1);
}

.reel-info-v2 h3 {
  font-family: var(--font-titulo);
  font-size: 1.15rem;
  color: var(--preto);
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.reel-tag-v2 {
  font-family: var(--font-corpo);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ouro);
  opacity: 0.8;
}

/* Responsividade V2 */
@media (max-width: 1024px) {
  .reel-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .reel-grid-v2 {
    display: flex !important;
    flex-direction: column !important;
    gap: 2.5rem !important;
  }
  
  .reel-card-v2 {
    max-width: 100% !important;
  }
}

/* Modal de Vídeo Cinematic (Ultra-Premium) */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(30px) saturate(150%);
  -webkit-backdrop-filter: blur(30px) saturate(150%);
}

.video-modal-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
}

.video-modal-container {
  position: relative;
  width: 90%;
  max-width: 280px;
  z-index: 10;
  transform: translateY(40px) scale(0.95);
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.video-modal.active .video-modal-container {
  transform: translateY(0) scale(1);
}

.video-modal-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
  animation: modalAura 4s ease-in-out infinite alternate;
}

.video-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  padding: 0 0.15rem;
}

.modal-tag {
  display: block;
  font-family: var(--font-corpo);
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.4em;
  color: var(--ouro);
  margin-bottom: 0.15rem;
  text-transform: uppercase;
}

.modal-title {
  font-family: var(--font-titulo);
  font-size: 1.15rem;
  color: var(--branco);
  font-weight: 300;
  letter-spacing: -0.01em;
}

.video-modal-close {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--branco);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.video-modal-close svg {
  width: 16px;
  height: 16px;
}

.video-wrapper {
  position: relative;
  background: #000;
  aspect-ratio: 9 / 16;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 
              0 0 0 1px rgba(255, 255, 255, 0.08);
}

/* Controles Customizados Premium */
.video-custom-controls {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 10;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.video-modal.active .video-custom-controls {
  opacity: 1;
  transform: translateX(0);
}

.control-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--branco);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
}

.control-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--branco);
}

.control-btn:hover {
  background: var(--ouro);
  border-color: var(--ouro);
  color: var(--preto);
  transform: scale(1.1);
}

.control-btn:hover svg {
  stroke: var(--preto);
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Evitar zoom no modo tela cheia */
video:fullscreen {
  object-fit: contain !important;
}

video:-webkit-full-screen {
  object-fit: contain !important;
}

video:-ms-fullscreen {
  object-fit: contain !important;
}

.video-modal-footer {
  margin-top: 0.75rem;
  text-align: center;
  opacity: 0.8;
}

.video-modal-footer p {
  font-family: var(--font-corpo);
  font-size: 0.65rem;
  /* Accessibility fix (WCAG 4.5:1): subiu de 0.4 → 0.85 sobre fundo escuro do modal */
  color: rgba(255, 255, 255, 0.85);
}

.modal-cta-link {
  color: var(--ouro);
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 768px) {
  .video-modal-container {
    max-width: 65vw;
  }
}

/* ============================================================
   FAQ — Acordeão
   ============================================================ */

.faq {
  padding: var(--space-lg) 0; /* Aproximado ainda mais: de xl para lg */
  background-color: var(--branco-suave);
}

.faq-layout {
  display: grid;
  gap: var(--space-md); /* Reduzido de lg para md no mobile */
}

.faq-sidebar-side {
  display: contents; /* Permite que os filhos participem do grid principal no mobile */
}

.faq-header-side { order: 1; }
.faq-content-side { order: 2; }
.faq-cta-box { order: 3; }

.faq-header-side {
  max-width: 450px;
}

.faq-header-side .section-title {
  margin-bottom: var(--space-md);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
}

.faq-intro {
  font-size: 1.125rem;
  color: var(--grafite);
  margin-bottom: var(--space-xs); /* Reduzido de sm para xs no mobile */
  line-height: 1.6;
}

/* CTA Box Lateral */
.faq-cta-box {
  background: var(--branco);
  padding: var(--space-md);
  border-radius: 4px;
  border-left: 3px solid var(--ouro);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.faq-cta-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--preto);
  margin-bottom: 0.5rem;
}

.faq-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ouro);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: gap 0.3s ease;
}

.faq-cta-link:hover {
  gap: 0.75rem;
}

.faq-cta-link svg {
  width: 18px;
  height: 18px;
}

.faq-lista {
  width: 100%;
}

.faq-item {
  border-bottom: 1px solid var(--borda-forte);
}

.faq-item:first-child {
  border-top: 1px solid var(--borda-forte);
}

.faq-pergunta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-sm) 0; /* Aproximado ainda mais: de md para sm */
  cursor: pointer;
  list-style: none;
  transition: all 0.3s ease;
}

.faq-pergunta::-webkit-details-marker {
  display: none;
}

.faq-pergunta-txt {
  font-family: var(--font-titulo);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--preto);
  padding-right: var(--space-md);
}

/* Ícone Plus Minimalista */
.faq-plus {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.faq-plus::before,
.faq-plus::after {
  content: '';
  position: absolute;
  background-color: var(--ouro);
  transition: transform 0.4s var(--ease-out);
}

/* Linha horizontal */
.faq-plus::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  transform: translateY(-50%);
}

/* Linha vertical */
.faq-plus::after {
  top: 0;
  left: 50%;
  width: 1.5px;
  height: 100%;
  transform: translateX(-50%);
}

.faq-item[open] .faq-plus::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-item[open] .faq-plus::before {
  transform: translateY(-50%) rotate(180deg);
}

.faq-resposta {
  padding-bottom: var(--space-lg);
  max-width: 65ch;
  animation: faqFadeIn 0.5s ease forwards;
}

@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.faq-resposta p {
  font-size: 1.0625rem;
  color: var(--grafite);
  line-height: 1.8;
}

.faq-resposta strong {
  color: var(--ouro);
  font-weight: 500;
}

/* Ajuste Responsivo */
@media (min-width: 1024px) {
  .faq {
    padding: var(--space-2xl) 0;
  }
  .faq-layout {
    grid-template-columns: 0.7fr 1.3fr;
    column-gap: var(--space-3xl);
    align-items: start;
  }
  .faq-sidebar-side {
    display: flex;
    flex-direction: column;
    align-self: start;
    height: fit-content;
    gap: var(--space-md); /* Reduzido de lg para md no desktop */
  }
  .faq-header-side, .faq-content-side, .faq-cta-box { order: 0; }
  .faq-header-side { max-width: 450px; }
  .faq-intro { margin-bottom: var(--space-xs); } /* Reduzido de md para xs no desktop */
  .faq-pergunta { padding: var(--space-lg) 0; }
}

/* ============================================================
   LOCALIZAÇÃO
   ============================================================ */

.localizacao {
  padding: var(--space-2xl) 0;
  background-color: var(--branco);
}

.localizacao-layout {
  display: grid;
  gap: var(--space-xl);
}

.localizacao-info .section-title {
  margin-bottom: var(--space-md);
}

.localizacao-endereco {
  font-style: normal;
  margin-bottom: var(--space-lg);
}

.localizacao-endereco p {
  font-size: 1rem;
  color: var(--grafite);
  line-height: 1.7;
}

.localizacao-contatos {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.contato-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--grafite);
  transition: color 200ms ease;
  padding: 0.5rem 0;
}

.contato-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--ouro);
}

.contato-link:hover {
  color: var(--ouro);
}

.localizacao-mapa {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.localizacao-mapa iframe {
  width: 100%;
  height: 350px;
  display: block;
}

/* ============================================================
   CTA / FORMULÁRIO — Klaas full-width image style
   ============================================================ */

/* ============================================================
   CTA / FORMULÁRIO — Ultra-Premium Editorial
   ============================================================ */

.cta {
  position: relative;
  padding: var(--space-3xl) 0;
  background-color: var(--preto);
  overflow: hidden;
}

/* Textura de ruído sutil para profundidade premium */
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
}

.cta-imagem-fundo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.cta-imagem-fundo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: grayscale(20%) contrast(110%);
}

.cta-filtro {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 50%, rgba(26, 26, 26, 0.7) 0%, rgba(26, 26, 26, 0.95) 100%);
  z-index: 1;
}

.cta > .container {
  position: relative;
  z-index: 2;
}

.cta-layout {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

/* Info Side — Editorial Style */
.cta-info {
  max-width: 560px;
}

.cta-info::before {
  content: 'Agendamento';
  display: block;
  font-family: var(--font-corpo);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ouro);
  margin-bottom: var(--space-md);
  opacity: 0.9;
}

.cta-titulo {
  font-family: var(--font-titulo);
  font-size: clamp(2.5rem, 6vw, 3.8rem);
  font-weight: 400;
  color: var(--branco);
  line-height: 1.05;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}

.cta-descricao {
  font-family: var(--font-corpo);
  font-size: 1.15rem;
  font-weight: 300;
  /* Accessibility fix (WCAG 4.5:1): subiu de 0.65 → 0.9 sobre fundo escuro do CTA */
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
  max-width: 45ch;
}

/* Formulário — Premium White Card */
.cta-formulario {
  background: var(--branco);
  padding: var(--space-xl);
  border-radius: 4px; /* Mais editorial que arredondado genérico */
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  border-left: 4px solid var(--ouro); /* Detalhe lateral premium */
  position: relative;
  overflow: hidden;
}

.form-grupo {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-family: var(--font-corpo);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--preto);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 1rem;
  font-family: var(--font-corpo);
  font-size: 1rem;
  color: var(--preto);
  background: var(--branco-suave);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 2px;
  transition: all 400ms var(--ease-out);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  background: var(--branco);
  border-color: var(--ouro);
  box-shadow: 0 4px 12px rgba(201, 169, 110, 0.1);
}

.form-input::placeholder {
  color: var(--cinza);
  opacity: 0.4;
}

.form-erro {
  display: none;
  font-size: 0.7rem;
  font-weight: 500;
  color: #c0392b;
  margin-top: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.form-input.erro {
  border-color: #c0392b;
}

.form-input.erro + .form-erro {
  display: block;
}

/* Botão Enviar — Refined CTA */
.btn-enviar {
  width: 100%;
  margin-top: var(--space-md);
  padding: 1.25rem;
  background-color: var(--preto);
  color: var(--ouro);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  border-radius: 2px;
  transition: all 450ms var(--ease-out);
  border: 1px solid var(--preto);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-enviar:hover {
  background-color: var(--ouro);
  color: var(--preto);
  border-color: var(--ouro);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(201, 169, 110, 0.2);
}

.btn-enviar .btn-loading {
  display: none;
}

.btn-enviar.enviando .btn-texto {
  opacity: 0;
}

.btn-enviar.enviando .btn-loading {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
  .cta {
    padding: var(--space-2xl) 0;
  }
  
  .cta-formulario {
    padding: var(--space-lg);
  }
  
  .cta-titulo {
    margin-bottom: var(--space-sm);
  }

  .cta-descricao {
    margin-bottom: 1.5rem;
  }
}

/* ============================================================
   RODAPÉ — Padrão AG5
   ============================================================ */

.rodape {
  background-color: #0A0A0A; /* Cor primária #1A1A1A escurecida */
  color: var(--branco);
  border-top: 1px solid rgba(201, 169, 110, 0.2);
}

/* footer-main */
.footer-main {
  padding: 40px var(--container-pad) 30px;
}

.footer-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 0 var(--container-pad);
}

.footer-brand,
.footer-links,
.footer-contact {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Coluna 1 — Marca */
.footer-brand .rodape-logo {
  display: inline-block;
  margin-bottom: 1.25rem;
}

.footer-logo-img {
  max-width: 180px;
  height: auto;
  object-fit: contain;
  opacity: 1;
}

.footer-desc {
  font-size: 0.875rem;
  /* Accessibility fix (WCAG 4.5:1): subiu de 0.7 → 0.85 sobre fundo escuro */
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  /* Accessibility fix (WCAG 4.5:1): subiu de 0.6 → 0.85 sobre fundo escuro */
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 300ms ease;
  position: relative;
}
/* Accessibility fix: touch target ≥44x44 sem mudar o visual */
.footer-social-link::before {
  content: '';
  position: absolute;
  inset: -4px;
}

.footer-social-link:hover {
  color: var(--ouro);
  background: rgba(201, 169, 110, 0.1);
  border-color: rgba(201, 169, 110, 0.3);
  transform: translateY(-2px);
}

/* Colunas 2 e 3 — Links */
.footer-col-title {
  font-family: var(--font-corpo);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ouro);
  margin-bottom: 1.5rem;
}

.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav-link {
  display: block;
  font-size: 0.875rem;
  /* Accessibility fix (WCAG 4.5:1): subiu de 0.7 → 0.85 sobre fundo escuro */
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  /* Accessibility fix: touch target maior (≥44px de altura efetiva) */
  padding: 0.5rem 0;
  transition: color 300ms ease, padding-left 300ms ease;
}

.footer-nav-link:hover {
  color: var(--ouro);
  padding-left: 6px;
}

/* Coluna 4 — Contato */
.footer-contact-link {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  /* Accessibility fix (WCAG 4.5:1): subiu de 0.7 → 0.85 sobre fundo escuro */
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  padding: 0.5rem 0;
  line-height: 1.5;
  transition: color 300ms ease;
}

.footer-contact-link svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--ouro);
  opacity: 0.8;
}

.footer-contact-link:hover {
  color: var(--ouro);
}

.footer-contact-info {
  font-size: 0.8rem;
  /* Accessibility fix (WCAG 4.5:1): subiu de 0.4 → 0.78 sobre fundo escuro */
  color: rgba(255, 255, 255, 0.78);
  padding: 0.25rem 0;
}

.footer-contact-info span {
  display: block;
}

/* Créditos */
.rodape-creditos {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}

.creditos-layout {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.creditos-esquerda {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.creditos-copyright {
  font-size: 0.75rem;
  /* Accessibility fix (WCAG 4.5:1): subiu de 0.5 → 0.78 sobre fundo escuro */
  color: rgba(255, 255, 255, 0.78);
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
}

.footer-legal-link {
  font-size: 11px;
  /* Accessibility fix (WCAG 4.5:1): subiu de 0.4 → 0.78 sobre fundo escuro */
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  /* Accessibility fix: touch target maior via padding (sem mudar visual) */
  padding: 10px 0;
  transition: color 200ms ease;
}

.footer-legal-link:hover {
  color: var(--ouro);
}

.footer-legal-sep {
  font-size: 11px;
  /* Decorativo, não é texto informativo — mantido com opacidade levemente reforçada */
  color: rgba(255, 255, 255, 0.55);
  opacity: 0.6;
  margin: 0 10px;
  /* Esconde dos leitores de tela já que é puramente decorativo */
}

.creditos-direita {
  font-size: 0.75rem;
  /* Accessibility fix (WCAG 4.5:1): subiu de 0.5 → 0.78 sobre fundo escuro */
  color: rgba(255, 255, 255, 0.78);
  white-space: nowrap;
}

.creditos-link {
  color: var(--ouro);
  font-weight: 600;
  text-decoration: none;
  transition: color 200ms ease;
}

.creditos-link:hover {
  color: var(--ouro-escuro);
}

/* ========================================
   COOKIE TOGGLE - Estilo iOS Minimalista
   ======================================== */

#cookie-toggle.active #cookie-toggle-dot {
  left: 15px !important;
  background: #C49A3C;
}

#cookie-toggle.inactive #cookie-toggle-dot {
  left: 2px !important;
  background: #888;
}

#ck-prefs-link:hover #cookie-toggle {
  border-color: rgba(255, 255, 255, 0.4) !important;
}

#ck-prefs-link:hover #cookie-toggle-dot {
  box-shadow: 0 0 8px rgba(196, 154, 60, 0.5) !important;
}

/* ============================================================
   WHATSAPP PREMIUM
   ============================================================ */

.wa-premium-container {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 9999;
  font-family: var(--font-corpo);
}

/* Balão Glassmorphism */
.wa-bubble {
  width: 300px;
  position: absolute;
  bottom: 80px;
  right: 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px 24px 4px 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wa-bubble.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Cabeçalho */
.wa-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.wa-avatar-wrapper { position: relative; }

.wa-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 2px solid #25d366;
}

.wa-status-dot {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  background: #25d366;
  border: 2px solid #fff;
  border-radius: 50%;
  animation: waPulseGreen 2s infinite;
}

.wa-name {
  display: block;
  font-weight: 700;
  color: #1a1a1a;
  font-size: 15px;
}

.wa-status-text {
  font-size: 11px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Digitação */
.wa-typing {
  display: flex;
  gap: 4px;
  padding: 8px 0;
}

.wa-typing span {
  width: 6px;
  height: 6px;
  background: #25d366;
  border-radius: 50%;
  animation: waTypingAni 1.4s infinite;
  opacity: 0.4;
}

.wa-typing span:nth-child(2) { animation-delay: 0.2s; }
.wa-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes waTypingAni {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(-4px); opacity: 1; }
}

/* Mensagem */
.wa-message-text p {
  margin: 0;
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

.wa-message-text strong { color: #000; font-weight: 700; }

/* Botão Flutuante — Redondo (conforme instrução) */
.wa-float-btn {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: waPulse 2s ease-in-out infinite;
}

.wa-float-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

/* Badge de notificação */
.wa-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #ff3b30;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  transform: scale(0);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wa-badge.show { transform: scale(1); }

/* Botão fechar */
.wa-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  color: #aaa;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color 0.2s ease;
}

.wa-close:hover { color: #333; }

/* Animações */
@keyframes waPulseGreen {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4); }
  50%       { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6); }
}

@media (max-width: 480px) {
  .wa-premium-container { bottom: 1rem; right: 1rem; }
  .wa-bubble { width: 260px; bottom: 72px; }
}

/* ============================================================
   CONVÊNIOS ACEITOS — Marquee Premium
   ============================================================ */

.planos-aceitos {
  padding: var(--space-2xl) 0;
  background: linear-gradient(180deg, var(--branco) 0%, var(--creme) 100%);
  border-top: 1px solid var(--borda);
  border-bottom: 1px solid var(--borda);
  overflow: hidden;
  position: relative;
}

.planos-aceitos::before,
.planos-aceitos::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 3;
  pointer-events: none;
}

.planos-aceitos::before {
  left: 0;
  background: linear-gradient(to right, var(--branco) 0%, transparent 100%);
}

.planos-aceitos::after {
  right: 0;
  background: linear-gradient(to left, var(--creme) 0%, transparent 100%);
}

.planos-header {
  text-align: center;
  margin-bottom: var(--space-xl);
  padding: 0 var(--container-pad);
}

.planos-eyebrow {
  display: block;
  font-family: var(--font-corpo);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ouro);
  margin-bottom: 0.85rem;
}

.planos-title {
  font-family: var(--font-titulo);
  font-weight: 400;
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  line-height: 1.15;
  color: var(--preto);
  letter-spacing: -0.015em;
  margin-bottom: 0.85rem;
}

.planos-title em {
  font-style: italic;
  color: var(--ouro-escuro);
}

.planos-subtitle {
  font-family: var(--font-corpo);
  font-size: 0.92rem;
  color: var(--cinza);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Marquee container */
.planos-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: var(--space-sm) 0;
}

.planos-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: planosScroll 32s linear infinite;
  will-change: transform;
}

.planos-marquee:hover .planos-track,
.planos-track:focus-within {
  animation-play-state: paused;
}

@keyframes planosScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Cards */
.plano-card {
  flex: 0 0 auto;
  width: 220px;
  height: 150px;
  perspective: 600px;
}

.plano-card-inner {
  width: 100%;
  height: 100%;
  background: var(--branco);
  border: 1px solid rgba(201, 169, 110, 0.22);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.2rem 1rem;
  position: relative;
  overflow: hidden;
  transition: all 420ms cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

/* Corner accent dourado */
.plano-card-inner::before {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 16px;
  height: 16px;
  border-top: 1px solid var(--ouro);
  border-right: 1px solid var(--ouro);
  opacity: 0.55;
  transition: all 420ms ease;
}

.plano-card-inner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--ouro) 50%, transparent 100%);
  transform: scaleX(0);
  transition: transform 420ms ease;
}

.plano-card:hover .plano-card-inner {
  border-color: var(--ouro);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(201, 169, 110, 0.18);
}

.plano-card:hover .plano-card-inner::before {
  width: 22px;
  height: 22px;
  opacity: 1;
}

.plano-card:hover .plano-card-inner::after {
  transform: scaleX(1);
}

.plano-icon {
  width: 32px;
  height: 32px;
  color: var(--ouro);
  display: flex;
  align-items: center;
  justify-content: center;
}

.plano-icon svg {
  width: 100%;
  height: 100%;
}

.plano-name {
  font-family: var(--font-titulo);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--preto);
  margin: 0;
  line-height: 1;
  letter-spacing: -0.01em;
}

.plano-tag {
  font-family: var(--font-corpo);
  font-size: 0.6rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--cinza);
  line-height: 1;
}

.planos-footnote {
  text-align: center;
  margin-top: var(--space-lg);
  padding: 0 var(--container-pad);
  font-size: 0.85rem;
  color: var(--cinza);
}

.planos-footnote a {
  color: var(--ouro-escuro);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(201, 169, 110, 0.4);
  transition: border-color 240ms ease, color 240ms ease;
}

.planos-footnote a:hover {
  color: var(--ouro);
  border-bottom-color: var(--ouro);
}

/* Mobile: cards menores e fade lateral mais curto */
@media (max-width: 768px) {
  .planos-aceitos { padding: 3rem 0; }
  .planos-aceitos::before,
  .planos-aceitos::after { width: 50px; }
  .plano-card { width: 180px; height: 130px; }
  .plano-name { font-size: 1.2rem; }
  .plano-tag { font-size: 0.55rem; letter-spacing: 0.18em; }
  .planos-track { gap: 0.85rem; animation-duration: 26s; }
}

@media (max-width: 480px) {
  .plano-card { width: 160px; height: 120px; }
  .plano-name { font-size: 1.08rem; }
  .plano-icon { width: 26px; height: 26px; }
  .planos-track { animation-duration: 22s; }
}

/* Reduced motion: pausa a animação */
@media (prefers-reduced-motion: reduce) {
  .planos-track { animation: none; }
  .planos-marquee { overflow-x: auto; scroll-snap-type: x mandatory; }
  .plano-card { scroll-snap-align: start; }
}

/* ═══════════════════════════════════════════════════════
   CONVÊNIOS PREMIUM — Logos minimalistas passando suave
═══════════════════════════════════════════════════════ */
.conv-premium {
  padding: 4rem 0 3.5rem;
  background: var(--branco);
  position: relative;
  overflow: hidden;
}

.conv-premium-header {
  text-align: center;
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

.conv-premium-eyebrow {
  display: inline-block;
  font-family: var(--font-corpo);
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .38em;
  color: var(--ouro);
  margin-bottom: .85rem;
}

.conv-premium-title {
  font-family: var(--font-titulo);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.1;
  color: var(--preto);
  letter-spacing: -.015em;
  margin: 0 0 .85rem;
  font-weight: 400;
}

.conv-premium-title em {
  font-style: italic;
  color: var(--ouro);
  font-weight: 400;
}

.conv-premium-sub {
  font-size: .9rem;
  line-height: 1.55;
  color: var(--cinza);
  margin: 0;
}

/* Marquee container com fade lateral — SEM scroll manual */
.conv-marquee {
  position: relative;
  width: 100%;
  overflow: hidden !important;
  overflow-x: hidden !important;
  scroll-snap-type: none !important;
  -webkit-overflow-scrolling: auto;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.conv-track { pointer-events: auto; }
.conv-item { pointer-events: auto; }

.conv-track {
  display: flex;
  align-items: center;
  gap: 5rem;
  width: max-content;
  animation: convScroll 90s linear infinite;
}

.conv-marquee:hover .conv-track {
  animation-play-state: paused;
}

@keyframes convScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.conv-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
}

.conv-item img {
  max-height: 100%;
  max-width: 130px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(.7) contrast(.95);
  opacity: .55;
  transition: filter .5s ease, opacity .5s ease;
}

.conv-item:hover img {
  filter: grayscale(0) brightness(1) contrast(1);
  opacity: 1;
}

.conv-premium-footnote {
  text-align: center;
  margin: 2.5rem auto 0;
  font-size: .82rem;
  color: var(--cinza);
}

.conv-premium-footnote a {
  color: var(--ouro);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease;
}

.conv-premium-footnote a:hover {
  border-bottom-color: var(--ouro);
}

@media (max-width: 768px) {
  .conv-premium { padding: 3rem 0 2.5rem; }
  .conv-premium-header { margin-bottom: 2rem; padding: 0 1.25rem; }
  .conv-marquee {
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  }
  .conv-track {
    gap: 3rem !important;
    animation: convScroll 40s linear infinite !important;
    animation-play-state: running !important;
  }
  .conv-item { height: 44px; }
  .conv-item img {
    max-width: 100px;
    /* Mobile: cor original (sem hover) — mais visual */
    filter: grayscale(.4) brightness(.85);
    opacity: .85;
  }
}

@media (max-width: 480px) {
  .conv-track {
    gap: 2.4rem !important;
    animation-duration: 32s !important;
  }
  .conv-item { height: 38px; }
  .conv-item img { max-width: 88px; }
}

@media (prefers-reduced-motion: reduce) and (min-width: 769px) {
  .conv-track { animation-duration: 60s; }
}

/* ═══════════════════════════════════════════════════════
   BOAS-VINDAS — Vídeo institucional + Carrossel (split)
═══════════════════════════════════════════════════════ */
.boas-vindas {
  padding: 3.5rem 0;
  background: var(--creme);
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .boas-vindas { padding: 4rem 0; }
}

.boas-vindas-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .boas-vindas-layout {
    grid-template-columns: minmax(0, 380px) minmax(0, 520px);
    gap: 2.5rem;
    align-items: center;
    justify-content: center;
  }
}

/* ── ESQUERDA: vídeo institucional grande ── */
.boas-vindas-video { width: 100%; }

.bv-video-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  width: 100%;
  max-width: 340px;
  max-height: 62vh;
  margin: 0 auto;
  border-radius: 1.4rem;
  overflow: hidden;
  background: #0F0F0F;
  box-shadow: 0 24px 50px -20px rgba(42, 30, 20, .4);
  isolation: isolate;
}

@media (min-width: 1024px) {
  .bv-video-frame {
    aspect-ratio: 9 / 16;
    max-width: 380px;
    max-height: 580px;
    margin: 0;
  }
}

.bv-video-el {
  object-fit: cover;
  object-position: center center;
}

.bv-video-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.bv-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(20, 12, 6, .35) 0%,
    rgba(20, 12, 6, .05) 30%,
    rgba(20, 12, 6, .1) 60%,
    rgba(20, 12, 6, .85) 100%);
  z-index: 1;
  pointer-events: none;
  transition: opacity .4s ease;
}

.bv-video-frame.is-playing .bv-video-overlay { opacity: .25; }

.bv-badge {
  position: absolute;
  top: .85rem;
  left: .85rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .28rem .55rem .28rem .42rem;
  border-radius: 999px;
  background: rgba(15, 10, 5, .42);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border: 1px solid rgba(232, 200, 140, .28);
  color: rgba(245, 230, 200, .9);
  font-size: .46rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  opacity: .85;
  transition: opacity .5s ease;
}

.bv-badge svg {
  width: 9px;
  height: 9px;
  color: var(--ouro);
}

/* Badge mais sutil quando tocando, mas mostra ao hover */
.bv-video-frame.is-playing .bv-badge { opacity: 0; }
.bv-video-frame.is-playing:hover .bv-badge { opacity: .85; }

.bv-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 1.5px solid rgba(232, 200, 140, .85);
  background: rgba(15, 10, 5, .42);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  color: #F5E6C8;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .35s ease;
  box-shadow: 0 14px 32px -10px rgba(0, 0, 0, .55);
}

.bv-play-btn:hover {
  background: var(--ouro);
  color: var(--preto);
  border-color: var(--ouro);
  transform: translate(-50%, -50%) scale(1.06);
}

.bv-play-btn svg { width: 26px; height: 26px; margin-left: 3px; }
.bv-icon-pause { margin-left: 0 !important; }

/* Botão de som no canto superior direito */
.bv-sound-btn {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 4;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(232, 200, 140, .4);
  background: rgba(15, 10, 5, .55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #F5E6C8;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s ease;
}

.bv-sound-btn:hover {
  background: var(--ouro);
  color: var(--preto);
  border-color: var(--ouro);
  transform: scale(1.08);
}

.bv-sound-btn svg { width: 18px; height: 18px; }

.bv-video-frame.is-playing .bv-play-btn {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.85);
}

.bv-video-frame:hover .bv-play-btn {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.bv-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: .85rem;
  z-index: 2;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .55s ease, transform .55s ease;
}

.bv-caption h3 {
  font-family: var(--font-titulo);
  font-size: clamp(.95rem, 1.6vw, 1.15rem);
  line-height: 1.15;
  color: var(--branco);
  margin: 0 0 .15rem;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .65);
}

.bv-caption p {
  font-size: .65rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, .8);
  margin: 0;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .55);
}

/* Auto-hide ao tocar (some após o gradient escurecer) */
.bv-video-frame.is-playing .bv-caption {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

.bv-video-frame.is-playing:hover .bv-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ── DIREITA: header + carrossel ── */
.boas-vindas-side {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.bv-side-header { text-align: left; }

.bv-side-eyebrow {
  display: inline-block;
  font-family: var(--font-corpo);
  font-size: .55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .38em;
  color: var(--ouro);
  margin-bottom: .65rem;
}

.bv-side-title {
  font-family: var(--font-titulo);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.1;
  color: var(--preto);
  letter-spacing: -.015em;
  margin: 0 0 .6rem;
  font-weight: 400;
}

.bv-side-title em {
  font-style: italic;
  color: var(--ouro);
  font-weight: 400;
}

.bv-side-sub {
  font-size: .9rem;
  line-height: 1.6;
  color: var(--cinza);
  margin: 0;
  max-width: 440px;
}

/* Cards de carrossel — scroll horizontal no mobile, coluna no desktop */
.bv-carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 calc(var(--container-pad) * -1);
  padding: .25rem var(--container-pad) 1rem;
}

.bv-carousel::-webkit-scrollbar { display: none; }

@media (min-width: 1024px) {
  .bv-carousel {
    flex-direction: column;
    overflow-x: visible;
    margin: 0;
    padding: 0;
    gap: .9rem;
  }
}

.bv-card {
  flex-shrink: 0;
  width: 72vw;
  max-width: 240px;
  scroll-snap-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  transition: transform .35s var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1));
}

@media (min-width: 1024px) {
  .bv-card {
    flex-direction: row;
    align-items: center;
    width: 100%;
    max-width: 100%;
    gap: .85rem;
    padding: .55rem;
    border-radius: .9rem;
    background: var(--branco);
    border: 1px solid var(--borda);
    transition: all .35s var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1));
  }
  .bv-card:hover {
    border-color: var(--ouro);
    transform: translateX(3px);
    box-shadow: 0 8px 20px -12px rgba(42, 30, 20, .22);
  }
  .bv-card.is-active {
    border-color: var(--ouro);
    background: linear-gradient(135deg, rgba(201, 169, 110, .08), var(--branco));
    box-shadow: 0 10px 24px -14px rgba(201, 169, 110, .35);
  }
  .bv-card.is-active .bv-card-info h4 { color: var(--ouro); }
}

/* Estado active também no mobile */
.bv-card.is-active .bv-card-thumb {
  outline: 2px solid var(--ouro);
  outline-offset: 2px;
}

.bv-card-thumb {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  background: #0F0F0F;
}

@media (min-width: 1024px) {
  .bv-card-thumb {
    aspect-ratio: 1 / 1;
    flex: 0 0 68px;
    width: 68px;
    border-radius: .65rem;
  }
}

.bv-card-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bv-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .15) 50%, transparent 100%);
}

.bv-card-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--preto);
  transition: all .3s ease;
  box-shadow: 0 6px 16px -4px rgba(0, 0, 0, .35);
}

.bv-card:hover .bv-card-play {
  background: var(--ouro);
  color: var(--branco);
  transform: translate(-50%, -50%) scale(1.08);
}

.bv-card-play svg { width: 15px; height: 15px; margin-left: 2px; }

@media (min-width: 1024px) {
  .bv-card-play { width: 32px; height: 32px; }
  .bv-card-play svg { width: 13px; height: 13px; }
}

.bv-card-info { flex: 1; padding: 0 .3rem; }

.bv-card-info h4 {
  font-family: var(--font-titulo);
  font-size: 1rem;
  line-height: 1.2;
  color: var(--preto);
  margin: 0 0 .2rem;
  font-weight: 700;
}

.bv-card-info p {
  font-size: .78rem;
  line-height: 1.45;
  color: var(--cinza);
  margin: 0;
}

@media (min-width: 1024px) {
  .bv-card-info h4 { font-size: .92rem; }
  .bv-card-info p { font-size: .72rem; }
}

/* ═══════════════════════════════════════════════════════
   BOAS-VINDAS — MOBILE PREMIUM (vídeo em cima + lista vertical)
═══════════════════════════════════════════════════════ */
@media (max-width: 1023px) {
  .boas-vindas {
    padding: 3.5rem 0 3rem;
  }

  .boas-vindas-layout {
    display: flex !important;
    flex-direction: column;
    gap: 2.4rem;
    grid-template-columns: none;
  }

  /* Vídeo principal: tamanho contido, centralizado, com sombra premium */
  .boas-vindas-video {
    order: 1;
    display: flex;
    justify-content: center;
  }

  .bv-video-frame {
    width: 100%;
    max-width: 320px;
    max-height: 70vh;
    margin: 0 auto;
    border-radius: 1.5rem;
    box-shadow: 0 24px 50px -18px rgba(42, 30, 20, .42);
  }

  .bv-play-btn {
    width: 60px;
    height: 60px;
  }
  .bv-play-btn svg { width: 22px; height: 22px; }

  .bv-sound-btn {
    top: .8rem;
    right: .8rem;
    width: 36px;
    height: 36px;
  }
  .bv-sound-btn svg { width: 16px; height: 16px; }

  .bv-badge {
    top: .8rem;
    left: .8rem;
  }

  .bv-caption {
    left: 1rem;
    right: 1rem;
    bottom: .9rem;
  }
  .bv-caption h3 {
    font-size: 1.05rem;
    margin-bottom: .2rem;
  }
  .bv-caption p { font-size: .68rem; }

  /* Header + cards (coluna direita no desktop, agora embaixo no mobile) */
  .boas-vindas-side {
    order: 2;
    gap: 1.2rem;
    width: 100%;
  }

  .bv-side-header {
    text-align: center;
    padding: 0;
  }

  .bv-side-eyebrow {
    font-size: .55rem;
    letter-spacing: .42em;
    margin-bottom: .55rem;
  }

  .bv-side-title {
    font-size: clamp(1.55rem, 5.5vw, 1.95rem);
    margin-bottom: .5rem;
  }

  .bv-side-sub {
    font-size: .82rem;
    line-height: 1.55;
    margin-left: auto;
    margin-right: auto;
    max-width: 320px;
  }

  /* Carrossel vira lista vertical empilhada */
  .bv-carousel {
    display: flex !important;
    flex-direction: column !important;
    overflow: visible !important;
    overflow-x: visible !important;
    scroll-snap-type: none !important;
    gap: .7rem !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .bv-card {
    flex: 1 1 auto;
    flex-direction: row;
    align-items: center;
    width: 100% !important;
    max-width: 100% !important;
    gap: .85rem;
    padding: .55rem;
    border-radius: .95rem;
    background: var(--branco);
    border: 1px solid var(--borda);
    box-shadow: 0 4px 14px -8px rgba(42, 30, 20, .14);
    transition: all .35s var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1));
    scroll-snap-align: none !important;
  }

  .bv-card:active,
  .bv-card.is-active {
    border-color: var(--ouro);
    background: linear-gradient(135deg, rgba(201, 169, 110, .1), var(--branco));
    box-shadow: 0 8px 20px -10px rgba(201, 169, 110, .35);
  }
  .bv-card.is-active .bv-card-info h4 { color: var(--ouro); }

  .bv-card-thumb {
    flex: 0 0 64px;
    width: 64px;
    aspect-ratio: 1 / 1;
    border-radius: .7rem;
    overflow: hidden;
  }

  .bv-card-play {
    width: 30px;
    height: 30px;
  }
  .bv-card-play svg { width: 12px; height: 12px; }

  .bv-card-info {
    flex: 1;
    padding: 0 .2rem;
    min-width: 0;
  }
  .bv-card-info h4 {
    font-size: .9rem;
    line-height: 1.15;
    margin-bottom: .2rem;
    font-weight: 700;
  }
  .bv-card-info p {
    font-size: .72rem;
    line-height: 1.4;
    color: var(--cinza);
  }
}

@media (max-width: 480px) {
  .boas-vindas { padding: 3rem 0 2.5rem; }
  .bv-video-frame { max-width: 290px; max-height: 65vh; }
  .bv-side-title { font-size: 1.7rem; }
  .bv-card { padding: .5rem; }
  .bv-card-thumb { flex: 0 0 58px; width: 58px; }
  .bv-card-info h4 { font-size: .85rem; }
  .bv-card-info p { font-size: .68rem; }
}

/* ============================================================
   REFINOS PREMIUM MOBILE — Hierarquia, ritmo, detalhes
   (escrito DEPOIS dos blocos existentes pra ter prioridade)
   ============================================================ */

@media (max-width: 480px) {

  /* ─── 1. Granularidade de espaçamentos no mobile ─── */
  :root {
    --container-pad: 1.25rem;
    --space-lg: 2rem;
    --space-xl: 2.75rem;
    --space-2xl: 4rem;
    --space-3xl: 5.5rem;
  }

  /* ─── HERO MOBILE PREMIUM — tudo enquadrado em 100vh ─── */
  .hero {
    min-height: 100svh;
    height: 100svh;
    max-height: 880px;
    padding: 0;
    position: relative;
    overflow: hidden;
  }

  .hero-content {
    padding: calc(var(--navbar-height) + 1rem) 1.4rem 2rem !important;
    height: 100%;
    display: flex !important;
    flex-direction: column;
    justify-content: flex-end !important;
    align-items: center !important;
    text-align: center !important;
    gap: 0 !important;
    min-height: auto !important;
  }

  .hero-text {
    width: 100%;
    text-align: center !important;
  }

  .hero-subtitle {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Imagem cobre o hero inteiro com gradient premium em cima */
  .hero-image-wrapper {
    position: absolute !important;
    inset: 0 !important;
    height: 100% !important;
    margin: 0 !important;
    z-index: 1 !important;
  }

  .hero-image {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover;
    object-position: center 18%;
    border-radius: 0 !important;
  }

  /* Degradê premium intenso: vídeo bem envolvido em sombra, máxima legibilidade */
  .hero-image-overlay {
    background: linear-gradient(
      180deg,
      rgba(10, 6, 3, 0.92) 0%,
      rgba(15, 10, 5, 0.72) 22%,
      rgba(15, 10, 5, 0.72) 45%,
      rgba(12, 8, 4, 0.92) 70%,
      rgba(8, 5, 2, 0.98) 100%
    ) !important;
    z-index: 2 !important;
  }

  /* Tipografia compacta pra caber em 100vh */
  .hero-title {
    max-width: 100% !important;
    margin-bottom: 1rem !important;
  }

  .hero-line-1,
  .hero-line-2 {
    font-size: 2.1rem;
    line-height: 1.06;
    letter-spacing: -0.02em;
    display: block;
  }

  .hero-line-1 {
    color: #F5F0E8 !important;
    text-shadow: 0 2px 14px rgba(0, 0, 0, .5);
  }

  .hero-line-2 {
    color: #E5C795 !important;
    text-shadow: 0 2px 14px rgba(0, 0, 0, .5);
    margin-top: .1rem;
  }

  .hero-subtitle {
    font-size: 0.92rem !important;
    line-height: 1.55 !important;
    max-width: 100% !important;
    margin-top: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 1.6rem !important;
    color: rgba(245, 240, 232, 0.88) !important;
    text-shadow: 0 1px 8px rgba(0, 0, 0, .4);
  }

  /* Botões empilhados com bom respiro */
  .hero-actions {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: .85rem !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .hero-actions .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
  }

  /* "Conheça nossos serviços" — minimalista, alinhado central, sobre fundo escuro */
  .hero-actions .btn-link-minimal {
    align-self: center !important;
    color: #F5E6C8 !important;
    font-size: 0.66rem;
    padding: .4rem 2px;
  }

  .hero-actions .btn-link-minimal::after {
    background: var(--ouro);
    opacity: .8;
  }

  .header-line-block { color: var(--ouro); }
  .header-line { background-color: var(--ouro); }
  .header-line-text { color: #E5C795 !important; }

  /* ─── 3. Hierarquia consistente de seções ─── */
  section {
    scroll-margin-top: var(--navbar-height);
  }

  .section-label {
    font-size: 0.65rem;
    letter-spacing: 0.32em;
    margin-bottom: 0.65rem;
  }

  .section-title {
    font-size: 2rem !important;
    line-height: 1.15;
    letter-spacing: -0.015em;
  }

  /* (Klaas e demais seções: header refinado via klaas-header / faq-header-side) */

  /* Decoradores ornamentais ✦ — só nos pontos certos */
  .boutique-experiencia + .klaas-servicos::before,
  .klaas-servicos + .sobre::before,
  .sobre + .depoimentos::before,
  .depoimentos + .espaco-editorial::before,
  .faq + .contato::before {
    content: '✦';
    display: block;
    text-align: center;
    color: var(--ouro);
    font-size: 0.7rem;
    opacity: 0.45;
    letter-spacing: 0.4em;
    padding-top: 1.25rem;
    margin-bottom: -0.5rem;
  }

  /* ─── 4. Boutique cards (Por que Lumina) — accent premium ─── */
  .boutique-grid {
    gap: 0.85rem;
  }

  .boutique-card {
    padding: 1.85rem 1.25rem;
    background: linear-gradient(180deg, var(--branco) 0%, #FCFAF6 100%);
    border: 1px solid rgba(201, 169, 110, 0.22);
    position: relative;
    overflow: hidden;
  }

  /* Corner accent top-right (estilo Vitor) */
  .boutique-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 22px;
    height: 22px;
    border-top: 1.5px solid var(--ouro);
    border-right: 1.5px solid var(--ouro);
    opacity: 0.6;
    transition: width 320ms ease, height 320ms ease, opacity 320ms ease;
  }

  .boutique-card:active::before {
    width: 32px;
    height: 32px;
    opacity: 1;
  }

  .boutique-card h3 {
    font-size: 1.12rem;
    letter-spacing: -0.01em;
  }

  .boutique-card p {
    font-size: 0.83rem;
    line-height: 1.65;
  }

  /* Linha dourada inferior sempre visível em mobile (toque-friendly) */
  .boutique-card::after {
    width: 24px;
    height: 1.5px;
  }

  /* ─── 5. Serviços (Klaas Cards) — densidade premium ─── */
  .klaas-intro {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
  }

  .klaas-main-title {
    font-size: 2.4rem !important;
    line-height: 1;
    letter-spacing: -0.035em;
    margin-top: 0.5rem;
  }

  .klaas-grid {
    gap: 0.85rem !important;
  }

  .klaas-card {
    min-height: 360px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    transition: transform 320ms var(--ease-out), box-shadow 320ms var(--ease-out);
  }

  .klaas-card:active {
    transform: scale(0.985);
    box-shadow: 0 4px 16px rgba(201,169,110,0.22);
  }

  /* Corner accent dourado (estilo Vitor) */
  .klaas-card::before {
    content: '';
    position: absolute;
    top: 14px;
    right: 14px;
    width: 22px;
    height: 22px;
    border-top: 1.5px solid var(--ouro);
    border-right: 1.5px solid var(--ouro);
    z-index: 4;
    opacity: 0.7;
    transition: width 320ms ease, height 320ms ease;
    pointer-events: none;
  }

  .klaas-card:active::before {
    width: 32px;
    height: 32px;
    opacity: 1;
  }

  .klaas-card-title {
    font-size: 1.35rem !important;
    line-height: 1.15;
    letter-spacing: -0.015em;
  }

  .klaas-card-desc {
    font-size: 0.88rem !important;
    line-height: 1.6;
  }

  .klaas-category {
    font-size: 0.62rem !important;
    letter-spacing: 0.25em;
  }

  /* ─── 6. Depoimentos mobile — cards do carrossel respirando ─── */
  .depoimentos-layout-split {
    gap: 1.5rem !important;
  }

  .depoimentos-carrossel-premium {
    padding: 0 !important;
  }

  .carrossel-track > * {
    padding: 1.75rem 1.4rem;
    background: var(--branco);
    border: 1px solid var(--borda);
    position: relative;
  }

  .carrossel-track > *::before {
    content: '"';
    position: absolute;
    top: 0.15rem;
    left: 1rem;
    font-family: var(--font-titulo);
    font-size: 4rem;
    color: var(--ouro);
    opacity: 0.18;
    line-height: 1;
    pointer-events: none;
  }

  .carrossel-controls-v2 {
    gap: 1rem;
    margin-top: 1rem;
  }

  .carrossel-btn-v2 {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--borda-forte);
    background: var(--branco);
    transition: all 280ms ease;
  }

  .carrossel-btn-v2:active {
    background: var(--ouro);
    border-color: var(--ouro);
    color: var(--branco);
  }

  .google-reviews-card {
    padding: 1rem 1.25rem;
    border: 1px solid var(--borda-forte);
    background: linear-gradient(135deg, var(--branco) 0%, #FCFAF6 100%);
    border-radius: 4px;
  }

  /* ─── 7. Sobre / Equipe — sem fragmentar visual ─── */
  .sobre-editorial-grid {
    gap: 2rem;
  }

  .sobre-visual-composition {
    aspect-ratio: 4 / 5;
    max-height: 480px;
  }

  .sobre-content-narrative h2 {
    font-size: 2rem;
  }

  .sobre-content-narrative p {
    font-size: 0.92rem;
    line-height: 1.75;
  }

  /* ─── 8. FAQ — toque generoso + linha dourada ─── */
  .faq-layout {
    gap: 1.5rem;
  }

  .faq-item {
    border-bottom: 1px solid var(--borda) !important;
    padding: 0.25rem 0;
  }

  .faq-item button,
  .faq-item summary,
  .faq-pergunta {
    padding: 1.1rem 0;
    font-size: 0.92rem;
    line-height: 1.4;
  }

  .faq-cta-box {
    padding: 1.5rem 1.25rem;
    background: linear-gradient(135deg, var(--preto) 0%, #0F0F0F 100%);
    border: 1px solid rgba(201, 169, 110, 0.25);
    position: relative;
  }

  .faq-cta-box::before {
    content: '✦';
    position: absolute;
    top: 0.85rem;
    right: 1rem;
    color: var(--ouro);
    font-size: 0.75rem;
    opacity: 0.5;
  }

  .faq-cta-text {
    font-size: 1rem;
    line-height: 1.45;
    color: #F5E6C8 !important;
    font-weight: 500;
    letter-spacing: .01em;
    margin-bottom: .25rem;
  }

  .faq-cta-link {
    margin-top: 1rem;
    font-size: 0.78rem;
    color: var(--ouro) !important;
    font-weight: 600;
    letter-spacing: .12em;
  }

  /* ─── 9. Galeria Editorial — mais elegante no mobile ─── */
  .editorial-grid {
    gap: 1.25rem !important;
  }

  .editorial-showcase {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  }

  .editorial-arrow {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
  }

  .editorial-intro {
    font-size: 0.92rem;
    line-height: 1.7;
  }

  /* ─── 10. Localização — bloco premium ─── */
  .localizacao,
  #localizacao {
    padding: 3rem 0;
  }

  .localizacao iframe,
  #localizacao iframe {
    border-radius: 4px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
    border: 1px solid var(--borda);
  }

  /* ─── 11. CTAs globais — touch target ≥48px e premium feel ─── */
  .btn,
  button.btn,
  a.btn {
    min-height: 48px;
    padding: 14px 22px;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    font-weight: 600;
  }

  /* ─── 12. Container padding consistente ─── */
  .container {
    padding-left: var(--container-pad);
    padding-right: var(--container-pad);
  }

  /* ─── 13. Saudação final / footer credits ─── */
  .footer-main {
    padding: 2.5rem 1.25rem 2rem !important;
  }

  .footer-brand .rodape-logo img {
    max-width: 140px;
  }

  /* ─── 14. Drawer mobile — links com hierarquia ─── */
  .drawer {
    padding-top: 2rem;
  }

  .drawer-link {
    font-size: 1.4rem;
    padding: 1rem 0;
    letter-spacing: 0.04em;
  }

  .drawer-link:active {
    color: var(--ouro);
  }

  /* ─── 15. Anti-quebra: imagens nunca vazam ─── */
  img, iframe, video {
    max-width: 100%;
    height: auto;
  }

  /* ─── 16. WhatsApp flutuante — visibilidade premium ─── */
  .wa-premium-container {
    bottom: 1.1rem !important;
    right: 1.1rem !important;
  }
}

/* ─── Telas muito pequenas (≤360px) — degradação elegante ─── */
@media (max-width: 360px) {
  .hero-line-1,
  .hero-line-2 {
    font-size: 2.1rem;
  }

  .section-title {
    font-size: 1.75rem !important;
  }

  .klaas-main-title {
    font-size: 2rem !important;
  }
}

/* ============================================================
   ANIMAÇÕES SCROLL — IntersectionObserver
   ============================================================ */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVO — Tablet (768px+)
   ============================================================ */

@media (min-width: 768px) {
  :root {
    --container-pad: 2rem;
  }

  /* Rodapé — Tablet (2 colunas) */
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  /* Navbar */
  .navbar-toggle {
    display: none;
  }

  .navbar-menu {
    display: flex;
    position: static;
    flex-direction: row;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    gap: var(--space-md);
  }

  .drawer,
  .drawer-overlay {
    display: none !important;
  }

  .navbar-links {
    flex-direction: row;
    gap: 1.75rem;
  }

  .nav-link {
    font-size: 0.875rem;
  }

  /* Hero — Desktop 50/50 */
  .hero {
    flex-direction: row;
    align-items: stretch;
    min-height: 100vh;
    min-height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    padding-top: 0; /* Imagem vai até o topo */
    overflow: hidden;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    padding-top: calc(var(--navbar-height) + var(--space-lg)); /* Compensação para o texto não ficar sob a nav */
    padding-bottom: var(--space-lg);
  }

  .hero-text {
    max-width: 42%;
    flex-shrink: 0;
    padding-left: 2vw;
    z-index: 3;
  }

  .hero-title {
    margin-bottom: var(--space-sm);
  }

  .hero-line {
    display: inline;
  }

  .hero-line-2::before {
    content: ' ';
  }

  .hero-subtitle {
    margin-bottom: var(--space-md);
    max-width: 42ch;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: var(--space-md);
  }

  .header-line-block {
    margin-bottom: var(--space-sm);
  }

  .hero-image-wrapper {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 58%;
    margin-top: 0;
    background-color: var(--creme);
    z-index: 1;
  }

  .hero-image {
    width: 100%;
    height: 100%;
    border-radius: 0;
    clip-path: none;
    object-fit: cover;
    object-position: center center;
    animation: heroImageLuminous 2500ms var(--ease-out) 300ms forwards;
  }

  .hero-image-overlay {
    /* Degradê lateral creme→transparente da esquerda pra direita */
    background: linear-gradient(to right,
                  var(--creme) 0%,
                  rgba(245, 240, 232, 0.95) 18%,
                  rgba(245, 240, 232, 0.5) 38%,
                  transparent 60%);
    clip-path: none;
    z-index: 2;
  }

  .hero-badge {
    position: absolute;
    right: 2.5rem;
    bottom: 2.5rem;
    z-index: 10;
    margin: 0;
    align-self: auto;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 169, 110, 0.3);
  }

  /* Dor e Solução */
  .dor-solucao-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Serviços — Klaas cards */
  .servicos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

  .categoria-card-imagem {
    height: 220px;
  }

  .servico-procedimentos {
    grid-template-columns: 1fr 1fr;
  }

  /* Galeria — Estilos movidos para a seção específica para evitar conflito */


  /* Sobre */
  .med-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .sobre-container {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: var(--space-2xl);
  }

  .sobre-imagem img {
    height: 100%;
    min-height: 500px;
    position: sticky;
    top: var(--navbar-height);
  }

  /* Depoimentos */
  .depoimentos-layout {
    grid-template-columns: 1fr;
    align-items: start;
    gap: var(--space-2xl);
  }

  /* Localização */
  .localizacao-layout {
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
    gap: var(--space-2xl);
  }

  .localizacao-mapa iframe {
    height: 100%;
    min-height: 450px;
  }

  /* CTA */
  .cta-layout {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--space-2xl);
  }

  /* Rodapé */
  .footer-main {
    padding: 35px var(--container-pad) 30px;
  }

  .footer-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
  }

  .footer-brand,
  .footer-links,
  .footer-contact {
    align-items: flex-start;
    text-align: left;
  }

  .footer-desc {
    margin-left: 0;
    margin-right: 0;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .creditos-layout {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

  .footer-legal-links {
    justify-content: flex-start;
  }

  /* Estética Premium */
  .estetica-editorial-layout {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .estetica-visual {
    order: 2;
  }

  .estetica-narrative {
    order: 1;
    margin-bottom: var(--space-xl);
  }

  .estetica-img-primary {
    height: 350px;
  }

  .estetica-menu-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .estetica-floating-badge {
    padding: 1.5rem;
    max-width: 200px;
  }
}

@media (min-width: 768px) {
  .estetica-editorial-layout {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }

  .estetica-visual {
    order: 1;
  }

  .estetica-narrative {
    order: 2;
  }

  .estetica-menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   RESPONSIVO — Desktop (1024px+)
   ============================================================ */

@media (min-width: 1024px) {
  :root {
    --container-pad: 2.5rem;
  }

  .hero-line-1,
  .hero-line-2 {
    font-size: clamp(3.4rem, 5vw, 4.9rem);
    letter-spacing: -0.018em;
    line-height: 1.04;
  }

  .hero-image-wrapper {
    width: 50%;
  }

  /* Galeria — Estilos movidos para a seção específica */


  .counters {
    grid-template-columns: repeat(4, 1fr);
  }

  .servicos-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .categoria-card-imagem {
    height: 240px;
  }

  .servicos-lista {
    max-width: 900px;
    margin: 0 auto;
  }
}

/* ============================================================
   REDUZED MOTION
   ============================================================ */

/* ============================================================
   FORÇAR RESPONSIVIDADE — Correção de Transbordamento
   ============================================================ */

@media (max-width: 1023px) {
  /* Garantir que nada estique a página */
  html, body {
    overflow-x: hidden !important;
    position: relative;
    width: 100% !important;
  }

  /* Ajuste de seções */
  .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    max-width: 100vw !important;
    overflow: hidden;
  }

  /* Nossa Essência (Sobre) */
  .sobre-visual-composition {
    padding: 20px 0 !important;
    min-height: auto !important;
    overflow: hidden;
  }

  .secondary-image {
    width: 50% !important;
    right: 0 !important;
    bottom: 0 !important;
  }

  .brand-pillars-premium {
    flex-wrap: wrap !important;
    white-space: normal !important;
    justify-content: flex-start !important;
    gap: 0.5rem !important;
    overflow: visible !important;
  }

  /* Lumina em Movimento (Reel) - CORREÇÃO DE OVERFLOW */
  .reel-header {
    width: 100% !important;
    overflow: hidden;
  }
  
  .reel-grid {
    grid-template-columns: 1fr !important; /* Forçar uma coluna */
    width: 100% !important;
    gap: var(--space-xl) !important;
  }

  .reel-card {
    width: 100% !important;
  }

  .reel-thumb {
    aspect-ratio: 9 / 14 !important;
  }

  /* Dor e Solução */
  .dor-solucao-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  /* Convênios */
  .convenios-bg-text {
    display: none !important; /* Esconder texto gigante no mobile */
  }

  .logo-showcase-grid {
    grid-template-columns: 1fr !important;
  }

  /* Rodapé */
  .footer-container {
    grid-template-columns: 1fr !important;
    text-align: left !important;
  }

  .footer-brand, .footer-links, .footer-contact {
    align-items: flex-start !important;
    text-align: left !important;
  }

  /* WhatsApp Widget */
  .wa-premium-container {
    right: 1rem !important;
    bottom: 1rem !important;
    left: auto !important;
  }

  .wa-bubble {
    width: calc(100vw - 2rem) !important;
    max-width: 300px !important;
    right: 0 !important;
    left: auto !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .marquee-track {
    animation: none;
  }

  .hero-image {
    clip-path: inset(0 0% 0 0) !important;
  }

  .hero-badge,
  .hero-line-1,
  .hero-line-2,
  .hero-subtitle {
    opacity: 1 !important;
    transform: none !important;
  }

  .servico-item,
  .galeria-item {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* CORREÇÃO DEFINITIVA DE TRANSBORDAMENTO - LUMINA EM MOVIMENTO V2 */
@media (max-width: 1023px) {
  .video-reel-v2 {
    width: 100% !important;
    overflow: hidden !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .video-reel-v2 .container {
    width: 100% !important;
    max-width: 100vw !important;
    padding: 0 20px !important;
    margin: 0 !important;
    overflow: hidden !important;
  }

  .video-reel-v2 .reel-grid-v2 {
    display: block !important; /* Troca de Grid para Block para garantir empilhamento */
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }
  
  .video-reel-v2 .reel-card-v2 {
    display: block !important;
    width: 100% !important;
    margin-bottom: 40px !important; /* Espaçamento entre vídeos */
  }
  
  .video-reel-v2 .reel-thumb-v2 {
    width: 100% !important;
    aspect-ratio: 9 / 16 !important;
    max-height: 70vh; /* Limite de altura para não ocupar a tela toda */
  }
}

/* ═══════════════════════════════════════════════════════
   PRELOADER MINIMALISTA PREMIUM
═══════════════════════════════════════════════════════ */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    opacity: 1;
    transition: opacity .8s cubic-bezier(0.65, 0, 0.35, 1), visibility 0s linear .8s;
}

.preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 40%, rgba(201, 169, 110, .12) 0%, transparent 60%),
        linear-gradient(180deg, #15110B 0%, #1A1410 50%, #100C08 100%);
}

.preloader-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1.5rem;
    animation: preloader-content-in .9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes preloader-content-in {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.preloader-logo-ring {
    position: relative;
    width: 110px;
    height: 110px;
    margin-bottom: 1.6rem;
}

.preloader-ring-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.preloader-ring-track {
    fill: none;
    stroke: rgba(201, 169, 110, .14);
    stroke-width: 1.2;
}

.preloader-ring-progress {
    fill: none;
    stroke: #C9A96E;
    stroke-width: 1.2;
    stroke-linecap: round;
    stroke-dasharray: 352;
    stroke-dashoffset: 352;
    animation: preloader-ring-fill 1.6s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes preloader-ring-fill {
    to { stroke-dashoffset: 0; }
}

.preloader-logo {
    position: absolute;
    inset: 14px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-logo img {
    width: 108%;
    height: 108%;
    object-fit: contain;
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 8px rgba(201, 169, 110, .3));
}

.preloader-progress {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .55rem;
    opacity: 0;
    animation: preloader-progress-in .7s .6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes preloader-progress-in {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.preloader-bar {
    width: 100px;
    height: 1.5px;
    border-radius: 999px;
    background: rgba(201, 169, 110, .14);
    overflow: hidden;
    position: relative;
}

.preloader-bar span {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, transparent 0%, #C9A96E 50%, transparent 100%);
    transform: translateX(-100%);
    animation: preloader-bar-slide 1.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes preloader-bar-slide {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.preloader-loading-text {
    font-size: .45rem;
    font-weight: 700;
    color: rgba(201, 169, 110, .55);
    letter-spacing: .38em;
    text-transform: uppercase;
    margin: 0;
    padding-left: .38em;
}

.preloader-dot {
    display: inline-block;
    opacity: .3;
    animation: preloader-dot-blink 1.4s infinite;
}

.preloader-dot:nth-child(1) { animation-delay: 0s; }
.preloader-dot:nth-child(2) { animation-delay: .2s; }
.preloader-dot:nth-child(3) { animation-delay: .4s; }

@keyframes preloader-dot-blink {
    0%, 60%, 100% { opacity: .3; }
    30%           { opacity: 1; color: #C9A96E; }
}

body.preloading { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
    .preloader-content,
    .preloader-progress,
    .preloader-bar span,
    .preloader-dot,
    .preloader-ring-progress {
        animation: none !important;
    }
    .preloader-content,
    .preloader-progress { opacity: 1; transform: none; }
    .preloader-ring-progress { stroke-dashoffset: 0; }
    .preloader-dot { opacity: 1; }
}

/* ═══════════════════════════════════════════════════════
   SERVIÇOS PREMIUM (substitui .klaas-servicos antiga)
═══════════════════════════════════════════════════════ */
.srv-premium {
    padding: var(--space-4xl) 0;
    background: var(--branco);
}

.srv-premium-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto var(--space-3xl);
}

.srv-premium-eyebrow {
    display: inline-block;
    font-family: var(--font-corpo);
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .32em;
    color: var(--ouro);
    margin-bottom: 1rem;
}

.srv-premium-title {
    font-family: var(--font-titulo);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--preto);
    margin: 0 0 1rem;
}

.srv-premium-title em {
    font-style: italic;
    color: var(--ouro);
    font-weight: 400;
}

.srv-premium-sub {
    font-size: .95rem;
    line-height: 1.6;
    color: var(--cinza);
    margin: 0 auto;
    max-width: 460px;
}

.srv-premium-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.srv-premium-card {
    position: relative;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 2.5rem 1.4rem 2rem;
    transition: all .45s var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1));
    overflow: hidden;
    border-top: 1px solid var(--borda);
}

.srv-premium-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--ouro);
    transition: width .55s var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1));
}

.srv-premium-card:hover { transform: translateY(-2px); }
.srv-premium-card:hover::before { width: 100%; }

.srv-num {
    display: block;
    font-family: var(--font-titulo);
    font-size: 1.4rem;
    line-height: 1;
    font-weight: 300;
    font-style: italic;
    color: var(--ouro);
    margin-bottom: 1.6rem;
    letter-spacing: 0;
}

.srv-tag {
    display: inline-block;
    font-size: .56rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .38em;
    color: var(--ouro);
    margin-bottom: 1rem;
    padding-bottom: 0;
    border-bottom: 0;
}

.srv-card-title {
    font-family: var(--font-titulo);
    font-size: clamp(1.55rem, 2.4vw, 1.9rem);
    line-height: 1.1;
    color: var(--preto);
    margin: 0 0 .85rem;
    font-weight: 400;
    letter-spacing: -.018em;
}

.srv-card-title em {
    font-style: italic;
    color: var(--ouro);
    font-weight: 400;
}

.srv-divider {
    display: inline-block;
    color: var(--ouro);
    font-weight: 300;
    margin: 0 .35em;
    transform: translateY(-.05em);
    opacity: .85;
}

.srv-card-desc {
    font-family: var(--font-corpo);
    font-size: .92rem;
    line-height: 1.6;
    font-weight: 300;
    color: var(--cinza);
    margin: 0 0 1.6rem;
    min-height: 2.8em;
    max-width: 360px;
}

.srv-card-link {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-family: var(--font-corpo);
    font-size: .62rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .32em;
    color: var(--preto);
    text-decoration: none;
    padding-bottom: .35rem;
    border-bottom: 1px solid transparent;
    transition: all .35s ease;
}

.srv-card-link svg {
    width: 14px;
    height: 14px;
    color: var(--ouro);
    transition: transform .35s ease;
}

.srv-card-link:hover {
    color: var(--ouro);
    border-bottom-color: var(--ouro);
}
.srv-card-link:hover svg { transform: translateX(5px); }

@media (min-width: 600px) {
    .srv-premium-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0 2.5rem;
    }
}

@media (min-width: 1024px) {
    .srv-premium-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0 3rem;
    }
    .srv-premium-card { padding: 3rem 0 2.2rem; }
}

/* ═══════════════════════════════════════════════════════
   DR. LUCAS RESPONDE — Scroll horizontal premium
═══════════════════════════════════════════════════════ */
.dr-responde {
    padding: var(--space-4xl) 0;
    background: var(--creme);
    position: relative;
    overflow: hidden;
}

.dr-responde::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -120px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(201, 169, 110, .12), transparent 70%);
    pointer-events: none;
}

.dr-responde-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto var(--space-3xl);
    position: relative;
    z-index: 1;
}

.dr-responde-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 var(--container-pad) 1rem;
    margin: 0 calc(var(--container-pad) * -1);
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.dr-responde-scroll::-webkit-scrollbar { display: none; }

.dr-responde-card {
    flex: 0 0 auto;
    width: 70vw;
    max-width: 240px;
    scroll-snap-align: center;
    cursor: pointer;
    background: transparent;
    transition: transform .35s var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1));
}

.dr-responde-card:hover { transform: translateY(-4px); }

.dr-thumb {
    position: relative;
    aspect-ratio: 9 / 14;
    width: 100%;
    border-radius: 1.4rem;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 14px 32px -14px rgba(26, 26, 26, .2);
    background: var(--preto);
}

.dr-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1));
}

.dr-responde-card:hover .dr-thumb img { transform: scale(1.06); }

.dr-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, .75) 0%, rgba(26, 26, 26, .25) 35%, transparent 65%);
}

.dr-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--preto);
    box-shadow: 0 8px 24px -6px rgba(0, 0, 0, .35);
    transition: all .3s ease;
}

.dr-responde-card:hover .dr-play-btn {
    transform: translate(-50%, -50%) scale(1.08);
    background: var(--ouro);
    color: var(--branco);
}

.dr-play-btn svg { width: 22px; height: 22px; margin-left: 3px; }

.dr-tag {
    position: absolute;
    top: .85rem;
    left: .85rem;
    z-index: 2;
    padding: .3rem .65rem;
    border-radius: 999px;
    background: rgba(26, 26, 26, .55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #F5E6C8;
    font-size: .5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .22em;
    border: 1px solid rgba(201, 169, 110, .4);
}

.dr-info {
    padding: 0 .35rem;
}

.dr-info h3 {
    font-family: var(--font-titulo);
    font-size: 1.08rem;
    line-height: 1.2;
    color: var(--preto);
    margin: 0 0 .3rem;
    font-weight: 700;
}

.dr-info p {
    font-size: .78rem;
    line-height: 1.5;
    color: var(--cinza);
    margin: 0;
}

.dr-responde-cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
    position: relative;
    z-index: 1;
}

.dr-responde-cta,
.social-cta {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .9rem 1.5rem;
    border: 1px solid var(--borda-forte);
    border-radius: 999px;
    text-decoration: none;
    color: var(--preto);
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .22em;
    transition: all .35s ease;
    background: var(--branco);
}

.dr-responde-cta svg,
.social-cta svg {
    width: 16px;
    height: 16px;
    color: var(--ouro);
    transition: transform .3s ease;
}

.dr-responde-cta:hover,
.social-cta:hover {
    background: var(--ouro);
    border-color: var(--ouro);
    color: var(--branco);
    box-shadow: 0 12px 28px -10px rgba(201, 169, 110, .5);
}

.dr-responde-cta:hover svg,
.social-cta:hover svg { color: var(--branco); transform: translateX(3px); }

@media (min-width: 768px) {
    .dr-responde-card { width: 280px; max-width: 280px; }
}

@media (min-width: 1024px) {
    .dr-responde-scroll {
        justify-content: center;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
    }
    .dr-responde-card { width: 240px; max-width: 240px; }
}



/* ═══════════════════════════════════════════════════════
   CONEXÃO SOCIAL — Instagram bridge
═══════════════════════════════════════════════════════ */
.social-bridge {
    padding: var(--space-4xl) 0;
    background: var(--branco-suave);
    position: relative;
}

.social-header { text-align: center; max-width: 560px; margin: 0 auto var(--space-3xl); }

.social-scroll {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.4rem;
}

/* Embed oficial do Instagram — moldura premium */
.social-embed {
    position: relative;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    background: var(--branco);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 14px 36px -18px rgba(42, 30, 20, .22);
    border: 1px solid var(--borda);
    transition: transform .35s var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1)), box-shadow .35s ease;
}

.social-embed:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 48px -18px rgba(201, 169, 110, .35);
    border-color: var(--borda-forte);
}

.social-embed iframe {
    display: block;
    width: 100%;
    min-height: 620px;
    border: 0;
    background: var(--branco);
}

@media (min-width: 768px) {
    .social-embed { max-width: 100%; }
    .social-embed iframe { min-height: 640px; }
}

@media (max-width: 480px) {
    .social-embed iframe { min-height: 580px; }
}

.social-post {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform .35s var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1));
}

.social-post:hover { transform: translateY(-4px); }

.social-thumb {
    position: relative;
    aspect-ratio: 1 / 1;
    width: 100%;
    border-radius: 1.4rem;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 14px 32px -16px rgba(26, 26, 26, .18);
    background: var(--preto);
}

.social-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(228, 64, 95, .22) 0%, rgba(220, 84, 213, .18) 50%, rgba(255, 220, 128, .22) 100%);
    opacity: 0;
    transition: opacity .4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
}

.social-post:hover .social-overlay { opacity: 1; }

.social-ig-icon {
    width: 38px;
    height: 38px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .35));
}

.social-info { padding: 0 .4rem; }

.social-handle {
    font-size: .6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .22em;
    color: var(--ouro);
    margin: 0 0 .35rem;
}

.social-caption {
    font-size: .82rem;
    line-height: 1.5;
    color: var(--grafite);
    margin: 0;
}

.social-cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 2.4rem;
}

@media (min-width: 600px) {
    .social-scroll {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 1024px) {
    .social-scroll { gap: 1.6rem; }
    .social-caption { font-size: .88rem; }
}

/* ═══════════════════════════════════════════════════════
   MOBILE — Refinos gerais de responsividade
═══════════════════════════════════════════════════════ */
@media (max-width: 600px) {
    .container { padding-inline: 1.1rem; }

    .srv-premium { padding: 3.5rem 0; }
    .srv-premium-header { margin-bottom: 2rem; padding: 0 .5rem; }
    .srv-premium-sub { font-size: .85rem; }
    .srv-premium-card { padding: 1.8rem 1.4rem 1.4rem; }
    .srv-num { font-size: 1.85rem; }
    .srv-card-title { font-size: 1.32rem; }
    .srv-card-desc { font-size: .85rem; min-height: auto; }

    .dr-responde { padding: 3.5rem 0; }



    .social-bridge { padding: 3.5rem 0; }
    .social-caption { font-size: .78rem; }

    /* Mapa responsivo */
    .localizacao iframe { width: 100% !important; height: 320px !important; }
}

/* ═══════════════════════════════════════════════════════
   PRIORIDADE MÁXIMA: Background creme nas seções premium
   (escrito no final pra garantir cascade vencendo overrides)
═══════════════════════════════════════════════════════ */
body section.depoimentos.depoimentos-premium,
body section.social-bridge.social-premium,
body section.faq.faq-premium,
body section.localizacao.localizacao-premium {
  background: var(--creme) !important;
  background-color: var(--creme) !important;
}

/* ═══════════════════════════════════════════════════════
   DEPOIMENTOS MOBILE PREMIUM
═══════════════════════════════════════════════════════ */
@media (max-width: 1023px) {
  .depoimentos.depoimentos-premium .depoimentos-layout-split {
    display: flex !important;
    flex-direction: column;
    gap: 2rem;
  }

  .depoimentos.depoimentos-premium .depoimentos-header-side {
    text-align: left;
  }

  .depoimentos.depoimentos-premium .depoimentos-header-side .numbering-block {
    justify-content: flex-start;
  }

  .depoimentos.depoimentos-premium .title-premium-depoimentos {
    font-size: clamp(1.7rem, 6vw, 2.2rem) !important;
    text-align: left !important;
    margin: 0 !important;
  }

  .depoimentos.depoimentos-premium .depoimentos-content-side {
    width: 100%;
  }

  .depoimentos.depoimentos-premium .depoimentos-carrossel-premium {
    max-width: 100%;
    margin: 0;
  }

  /* Card maior, ocupa toda largura da seção com respiro */
  .depoimentos.depoimentos-premium .carrossel-track {
    height: auto !important;
    min-height: 320px;
    display: block !important;
    width: 100%;
  }

  .depoimentos.depoimentos-premium .depoimento-card-v2 {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    min-height: 320px;
    padding: 1.8rem 1.6rem !important;
    border-radius: 1.2rem !important;
    background: var(--branco) !important;
    border: 1px solid var(--borda) !important;
    box-shadow: 0 18px 40px -22px rgba(42, 30, 20, .22) !important;
    align-items: flex-start !important;
    text-align: left !important;
  }

  .depoimentos.depoimentos-premium .depoimento-stars-v2 {
    font-size: 1rem !important;
    letter-spacing: 5px !important;
    margin-bottom: 1rem !important;
  }

  .depoimentos.depoimentos-premium .depoimento-texto-v2 {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    font-style: italic;
    max-width: 100% !important;
    width: 100% !important;
    overflow-y: visible !important;
    max-height: none !important;
    padding-right: 0 !important;
    margin-bottom: 1.4rem !important;
    color: var(--preto);
  }

  .depoimentos.depoimentos-premium .depoimento-autor-v2 {
    font-size: .68rem !important;
    letter-spacing: .28em !important;
    padding-top: .9rem !important;
    align-self: flex-start;
  }

  .depoimentos.depoimentos-premium .depoimento-autor-v2::before {
    left: 0 !important;
    transform: none !important;
    width: 26px !important;
  }

  /* Controles do carrossel mais premium e visíveis */
  .depoimentos.depoimentos-premium .carrossel-controls-v2 {
    margin-top: 1.4rem !important;
    gap: 1.2rem;
  }

  .depoimentos.depoimentos-premium .carrossel-btn-v2 {
    width: 42px;
    height: 42px;
    background: var(--branco);
    border: 1px solid rgba(201, 169, 110, .3);
    box-shadow: 0 4px 14px -6px rgba(42, 30, 20, .18);
  }

  /* Card "Quer ver mais?" centralizado e elegante */
  .depoimentos.depoimentos-premium .google-reviews-card-container {
    width: 100%;
  }

  .depoimentos.depoimentos-premium .google-reviews-card {
    max-width: 100%;
    margin: 0;
  }
}

@media (max-width: 480px) {
  .depoimentos.depoimentos-premium .depoimento-card-v2 {
    padding: 1.5rem 1.3rem !important;
    min-height: 300px;
  }
  .depoimentos.depoimentos-premium .depoimento-texto-v2 {
    font-size: .95rem !important;
    line-height: 1.55 !important;
  }
}

/* ═══════════════════════════════════════════════════════
   LOCALIZAÇÃO EDITORIAL PREMIUM
═══════════════════════════════════════════════════════ */
.loc-editorial .loc-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2.4rem;
}

.loc-editorial .srv-premium-sub {
  margin-top: .9rem;
}

/* Wrap do mapa + botão "Como Chegar" */
.loc-mapa-wrap {
  max-width: 980px;
  margin: 0 auto 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.loc-mapa-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 460px;
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: 0 28px 60px -22px rgba(42, 30, 20, .35);
  border: 1px solid var(--borda);
  background: var(--branco);
}

.loc-mapa-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(.15) contrast(1.02);
}

/* Botão "Como Chegar" */
.loc-btn-rota {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .95rem 1.6rem;
  background: linear-gradient(135deg, var(--ouro) 0%, #B8995A 100%);
  color: var(--branco);
  font-family: var(--font-corpo);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 12px 28px -10px rgba(201, 169, 110, .55);
  transition: all .35s ease;
}

.loc-btn-rota svg {
  width: 16px;
  height: 16px;
  color: var(--branco);
  transition: transform .3s ease;
}

.loc-btn-rota svg:last-child { width: 14px; height: 14px; }

.loc-btn-rota:hover {
  background: linear-gradient(135deg, #B8995A 0%, var(--ouro) 100%);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -10px rgba(201, 169, 110, .65);
}

.loc-btn-rota:hover svg:last-child { transform: translateX(3px); }

/* Grid de 3 cartões */
.loc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 980px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .loc-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
  }
}

.loc-card {
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: 1.2rem;
  padding: 1.6rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  transition: all .35s var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1));
  box-shadow: 0 8px 24px -16px rgba(42, 30, 20, .18);
}

.loc-card:hover {
  transform: translateY(-3px);
  border-color: var(--borda-forte);
  box-shadow: 0 18px 38px -18px rgba(201, 169, 110, .35);
}

.loc-card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 169, 110, .14), rgba(201, 169, 110, .04));
  color: var(--ouro);
  margin-bottom: .25rem;
}

.loc-card-icon svg { width: 18px; height: 18px; }

.loc-card-title {
  font-family: var(--font-corpo);
  font-size: .58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .32em;
  color: var(--ouro);
  margin: 0 0 .35rem;
}

.loc-card-content {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.loc-card-content p {
  font-family: var(--font-corpo);
  font-size: .85rem;
  line-height: 1.5;
  color: var(--cinza);
  margin: 0;
}

.loc-card-strong {
  font-family: var(--font-titulo) !important;
  font-size: 1.05rem !important;
  font-weight: 400 !important;
  color: var(--preto) !important;
  letter-spacing: -.005em;
  margin-bottom: .3rem !important;
  line-height: 1.2 !important;
}

.loc-card-cep {
  font-size: .72rem !important;
  letter-spacing: .08em;
  opacity: .75;
  margin-top: .3rem !important;
}

/* Horário: dias + horas em linha */
.loc-card-content p:has(.loc-day) {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: .45rem 0;
  border-bottom: 1px solid var(--borda);
  font-size: .82rem;
}

.loc-card-content p:has(.loc-day):last-of-type {
  border-bottom: 0;
}

.loc-day {
  color: var(--preto);
  font-weight: 500;
  letter-spacing: .02em;
}

.loc-time {
  color: var(--ouro);
  font-weight: 600;
  font-family: var(--font-corpo);
  letter-spacing: .02em;
}

.loc-card-muted .loc-day,
.loc-card-muted .loc-time {
  opacity: .55;
}

/* Contato: links em coluna */
.loc-card-link {
  display: inline-flex;
  align-items: center;
  padding: .35rem 0;
  color: var(--preto);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: -.005em;
  border-bottom: 1px solid var(--borda);
  transition: color .3s ease, padding-left .3s ease;
}

.loc-card-link:last-child { border-bottom: 0; }

.loc-card-link:hover {
  color: var(--ouro);
  padding-left: .25rem;
}

.loc-link-wa {
  color: var(--preto);
}

@media (max-width: 768px) {
  .loc-editorial .loc-header { margin-bottom: 2rem; padding: 0 .5rem; }
  .loc-mapa-frame { aspect-ratio: 4 / 3; border-radius: 1.1rem; }
  .loc-btn-rota { padding: .85rem 1.3rem; font-size: .62rem; letter-spacing: .22em; }
  .loc-card { padding: 1.4rem 1.25rem 1.2rem; }
}

/* ═══════════════════════════════════════════════════════
   FORMULÁRIO COMPACTO PREMIUM (CTA — card claro)
═══════════════════════════════════════════════════════ */
.cta-formulario.cta-form-compact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  border: 0;
}

.cta-form-compact .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 600px) {
  .cta-form-compact .form-row {
    grid-template-columns: 1fr 1fr;
    gap: .9rem;
  }
}

.cta-form-compact .form-grupo {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin: 0;
}

.cta-form-compact .form-label {
  font-family: var(--font-corpo);
  font-size: .58rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .28em;
  color: rgba(255, 255, 255, .85);
  margin: 0;
}

.cta-form-compact .form-label-opt {
  font-weight: 400;
  opacity: .55;
  text-transform: none;
  letter-spacing: .02em;
  font-size: .9em;
}

.cta-form-compact .form-input,
.cta-form-compact .form-select,
.cta-form-compact .form-textarea {
  width: 100%;
  padding: .85rem 1rem;
  font-family: var(--font-corpo);
  font-size: .92rem;
  font-weight: 400;
  color: #2C2C2C;
  background: rgba(232, 226, 215, .92);
  border: 1px solid rgba(201, 169, 110, .25);
  border-radius: .7rem;
  outline: none;
  transition: all .3s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.cta-form-compact .form-input::placeholder,
.cta-form-compact .form-textarea::placeholder {
  color: rgba(60, 60, 60, .5);
  font-size: .9rem;
}

.cta-form-compact .form-input:hover,
.cta-form-compact .form-select:hover,
.cta-form-compact .form-textarea:hover {
  border-color: rgba(201, 169, 110, .55);
  background: rgba(240, 234, 222, .96);
}

.cta-form-compact .form-input:focus,
.cta-form-compact .form-select:focus,
.cta-form-compact .form-textarea:focus {
  border-color: var(--ouro);
  background: rgba(248, 244, 236, .98);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, .18);
}

.cta-form-compact .form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%23C9A96E' stroke-width='1.5'%3e%3cpath d='M1 1l5 5 5-5'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-color: rgba(232, 226, 215, .92);
  padding-right: 2.5rem;
  cursor: pointer;
  color: #2C2C2C;
}

.cta-form-compact .form-select option {
  background: var(--branco);
  color: var(--preto);
}

.cta-form-compact .form-textarea {
  resize: vertical;
  min-height: 70px;
  font-family: var(--font-corpo);
  line-height: 1.5;
}

.cta-form-compact .form-grupo-full {
  width: 100%;
}

.cta-form-compact .form-erro {
  display: none;
  font-size: .65rem;
  color: #ff6b6b;
  letter-spacing: .04em;
  margin-top: .15rem;
}

.cta-form-compact .form-grupo.error .form-erro {
  display: block;
}

.cta-form-compact .form-grupo.error .form-input,
.cta-form-compact .form-grupo.error .form-select {
  border-color: rgba(255, 107, 107, .55);
}

/* Botão de envio compacto e premium */
.cta-form-compact .btn-enviar {
  width: 100%;
  padding: 1rem 1.5rem;
  margin-top: .25rem;
  background: linear-gradient(135deg, var(--ouro) 0%, #B8995A 100%);
  color: var(--branco);
  border: 0;
  border-radius: .7rem;
  font-family: var(--font-corpo);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .35s ease;
  box-shadow: 0 12px 28px -10px rgba(201, 169, 110, .55);
}

.cta-form-compact .btn-enviar:hover {
  background: linear-gradient(135deg, #B8995A 0%, var(--ouro) 100%);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -10px rgba(201, 169, 110, .65);
}

.cta-form-compact .btn-enviar .btn-loading { display: none; }
.cta-form-compact .btn-enviar.is-loading .btn-texto { display: none; }
.cta-form-compact .btn-enviar.is-loading .btn-loading { display: inline; }

@media (max-width: 600px) {
  .cta-form-compact { gap: .9rem; }
  .cta-form-compact .form-row { gap: .9rem; }
  .cta-form-compact .form-input,
  .cta-form-compact .form-select,
  .cta-form-compact .form-textarea { padding: .75rem .9rem; font-size: .9rem; }
  .cta-form-compact .btn-enviar { padding: .95rem 1.2rem; font-size: .68rem; }
}

/* ═══════════════════════════════════════════════════════
   WHATSAPP PREMIUM — Balão + botão flutuante
═══════════════════════════════════════════════════════ */
.wa-premium-container { position: fixed; bottom: 25px; right: 20px; z-index: 2000; }

.wa-bubble {
    width: 240px;
    position: absolute;
    bottom: 68px;
    right: 0;
    background: rgba(255, 252, 246, .98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 169, 110, .25);
    border-radius: 1rem;
    box-shadow:
        0 12px 32px -12px rgba(42, 30, 20, .15);
    padding: .9rem 1.1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Cauda conectando o balão ao botão */
.wa-bubble::before {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 16px;
    width: 20px;
    height: 20px;
    background: inherit;
    border-right: 1px solid rgba(201, 169, 110, .35);
    border-bottom: 1px solid rgba(201, 169, 110, .35);
    transform: rotate(45deg);
    border-bottom-right-radius: 4px;
    z-index: -1;
}

.wa-bubble.show { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }

.wa-typing { display: flex; gap: 4px; padding: 4px 0; }
.wa-typing span {
    width: 5px; height: 5px;
    background: #25d366;
    border-radius: 50%;
    animation: wa-typing-ani 1.4s infinite;
    opacity: 0.4;
}
.wa-typing span:nth-child(2) { animation-delay: 0.2s; }
.wa-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes wa-typing-ani {
    0%, 100% { transform: translateY(0); opacity: 0.4; }
    50% { transform: translateY(-4px); opacity: 1; }
}

@keyframes wa-pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.wa-message-text p { margin: 0; font-size: .88rem; color: #333; line-height: 1.45; font-family: var(--font-corpo); }
.wa-message-text p strong { color: var(--ouro); font-weight: 600; }

.wa-float-btn {
    width: 54px; height: 54px;
    background: #25D366;
    color: #fff !important;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    text-decoration: none;
    transition: all 0.6s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    position: relative;
}
.wa-float-btn.visible { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.wa-float-btn:hover { transform: scale(1.1) translateY(-3px); }
.wa-float-btn svg { display: block; }

.wa-badge {
    position: absolute; top: -2px; right: -2px;
    background: #ff3b30; color: #fff;
    font-size: 10px;
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    border: 2px solid #fff;
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s ease;
}
.wa-badge.show { opacity: 1; transform: scale(1); }

.wa-close {
    position: absolute; top: 10px; right: 10px;
    background: none; border: none;
    color: #999;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s;
    display: flex; align-items: center; justify-content: center;
}
.wa-close:hover { color: #666; }

/* PageSpeed fix: classes utilitárias para o balão WhatsApp
   substituem element.style.opacity inline no JS → evita forced reflow.
   Usa !important para vencer o style="display:none" inline pré-existente no HTML. */
.wa-typing.is-hidden { display: none !important; }
.wa-message-text.is-visible { display: block !important; opacity: 0; transition: opacity 500ms ease; }
.wa-message-text.is-visible.is-in { opacity: 1; }
