/* ============================================================
   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;
}

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

.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-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: transform 0.4s var(--ease-out), background-color 0.4s ease;
}

.navbar {
  background-color: transparent;
  height: var(--navbar-height);
  display: flex;
  align-items: center;
  transition: all 0.4s var(--ease-out);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Estado Inicial (Hero) */
.navbar-wrapper:not(.navbar-wrapper--scrolled) .navbar {
  background-color: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(5px);
}

.navbar-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .navbar-container {
    padding: 0 1.25rem;
  }
}

/* Estado Scrolled */
.navbar-wrapper--scrolled {
  background-color: var(--branco);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
}

.navbar-wrapper--scrolled .navbar {
  height: var(--navbar-height-scrolled);
  background-color: var(--branco);
  border-bottom-color: var(--borda);
}

/* Logo Adjustment */
.logo-image {
  height: 40px;
  width: auto;
  display: block;
  transition: height 0.3s ease;
}

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

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

.navbar-links {
  display: flex;
  gap: 2.5rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-corpo);
  font-size: 0.725rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--grafite);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  transition: color 0.3s ease;
}

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

.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 */
.navbar-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 15px; /* Aumentado para garantir touch target de 48px */
  margin-right: -15px;
}

.hamburger-line {
  width: 22px;
  height: 1.5px;
  background-color: var(--preto);
  transition: all 0.3s ease;
}

.navbar-wrapper:not(.navbar-wrapper--scrolled) .hamburger-line {
  background-color: var(--preto); /* Garantir visibilidade no fundo claro do mobile se necessário */
}

@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 {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--preto);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  padding: var(--space-lg) var(--space-md);
  transform: translateX(100%);
  transition: transform 360ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
}

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

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.drawer-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 6px;
  line-height: 1;
  transition: color 200ms ease;
}

.drawer-close:hover { color: var(--ouro); }


/* Links */
.drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.drawer-link {
  display: block;
  font-family: var(--font-titulo);
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 200ms ease, padding-left 200ms ease;
}

.drawer-link:hover {
  color: var(--ouro);
  padding-left: 8px;
}

/* CTA no drawer */
.drawer-cta {
  display: block;
  margin-top: var(--space-lg);
  background: var(--ouro);
  color: var(--preto);
  font-family: var(--font-corpo);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 4px;
  transition: background 200ms ease, transform 200ms ease;
}

.drawer-cta:hover {
  background: var(--ouro-escuro);
  transform: translateY(-1px);
}

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

.nav-link {
  font-family: var(--font-corpo);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--grafite);
  position: relative;
  padding: 0.25rem 0;
  transition: color 200ms ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--ouro);
  transition: width 300ms var(--ease-out);
}

.nav-link:hover {
  color: var(--preto);
}

.nav-link:hover::after {
  width: 100%;
}

.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) + var(--space-xl)) var(--container-pad) var(--space-xl);
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@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.05;
  margin-bottom: var(--space-md);
}

.hero-line {
  display: block;
}

.hero-line-1 {
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  color: var(--preto);
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 700ms var(--ease-out) 200ms forwards;
}

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

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

.hero-subtitle {
  font-family: var(--font-corpo);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: var(--grafite);
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: heroFadeUp 600ms var(--ease-out) 500ms forwards;
}

.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: var(--space-sm);
  margin-bottom: var(--space-xl);
  opacity: 0;
  animation: heroFadeUp 600ms var(--ease-out) 650ms forwards;
}

/* 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;
  border-radius: 4px;
  opacity: 0;
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.05);
  animation: heroImageLuminous 1800ms var(--ease-out) 300ms forwards;
}

@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 ultra-suave, quase imperceptível */
  background: linear-gradient(to bottom, 
                rgba(245, 240, 232, 0.4) 0%, 
                rgba(245, 240, 232, 0) 12%, 
                rgba(245, 240, 232, 0) 85%, 
                rgba(245, 240, 232, 0.4) 96%, 
                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-suave);
  border: 1px solid var(--borda);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}
 
.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;
  height: auto;
  overflow: hidden;
}
 
.estetica-card-image img {
  width: 100%;
  height: auto;
  display: block;
}
 
.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;
}

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

/* Conteúdo sobre a Imagem (Minimalist Overlay) */
.gallery-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 100%);
  color: var(--branco);
  display: flex;
  flex-direction: column; /* Empilhado para centralização */
  align-items: center;
  justify-content: flex-end; /* Mantém na base mas centralizado horizontalmente */
  opacity: 0;
  transition: all 0.8s ease;
  z-index: 10;
  pointer-events: none; /* Evita interferir no swipe */
  
  /* Ajuste para não sobrepor a moldura branca no desktop */
  margin: 15px; 
  width: calc(100% - 30px);
}

.cinematic-slide.active .gallery-content {
  opacity: 1;
}

.gallery-num {
  font-family: var(--font-titulo);
  font-size: 4rem;
  color: var(--ouro);
  line-height: 1;
  opacity: 0.9;
  margin-right: 2rem;
  font-style: italic;
}

.gallery-text {
  flex: 1;
  max-width: 600px;
  text-align: center; /* Centralizado para maior elegância */
}

.gallery-text::before {
  content: '✦';
  display: block;
  color: var(--ouro);
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
  opacity: 0.8;
}

.gallery-text h3 {
  font-family: var(--font-titulo);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  font-style: italic; /* Itálico editorial */
  margin-bottom: 0.5rem;
  color: var(--branco);
  letter-spacing: -0.01em;
}

.gallery-text p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.25em; /* Muito espaçado */
  line-height: 1.6;
}

/* Navegação Editorial */
.editorial-nav-desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: 1.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: var(--space-lg);
    justify-content: center;
  }
  
  .editorial-sidebar {
    text-align: left;
    padding-right: 0;
  }
  
  .editorial-intro {
    margin: 0 0 var(--space-lg);
  }
}

/* ============================================================
   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) {
  .sobre-editorial-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .sobre-visual-composition {
    padding: 20px 0;
    min-height: auto;
    margin-bottom: var(--space-xl);
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .sobre-visual-composition::before {
    font-size: 4rem;
    left: 0;
    bottom: 0;
    opacity: 0.05;
    max-width: 100%;
  }

  .main-image { 
    width: 90%; 
    max-width: 320px;
    margin: 0 auto;
  }
  
  .secondary-image { 
    position: relative;
    width: 70%; 
    right: 0; 
    bottom: 20px; 
    margin: -40px auto 0;
    border-width: 4px; 
    z-index: 5;
  }

  .sobre-content-narrative {
    padding-left: 0;
    width: 100%;
  }

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



/* ============================================================
   CONVÊNIOS
   ============================================================ */

/* ============================================================
   CONVÊNIOS ULTRA-PREMIUM
   ============================================================ */
 
 .convenios-premium {
   padding: var(--space-3xl) 0;
   background-color: var(--branco-suave);
   position: relative;
   overflow: hidden;
 }
 
 .convenios-wrapper {
   position: relative;
   z-index: 1;
 }
 
 /* Background Decorative Text */
 .convenios-bg-text {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   font-family: var(--font-titulo);
   font-size: 20vw;
   font-weight: 700;
   color: var(--preto);
   opacity: 0.02;
   white-space: nowrap;
   pointer-events: none;
   z-index: 0;
   max-width: 100vw;
   overflow: hidden;
 }
 
 .convenios-grid-layout {
   display: grid;
   grid-template-columns: 1fr;
   gap: var(--space-2xl);
   align-items: center;
 }
 
 .convenios-info-col {
   max-width: 540px;
 }
 
 .convenios-lead {
   font-size: 1.15rem;
   color: var(--grafite);
   margin: var(--space-md) 0 var(--space-xl);
   line-height: 1.8;
   font-weight: 300;
 }
 
 /* Reembolso Card VIP */
 .convenios-reembolso-card {
   background: var(--branco);
   padding: var(--space-lg);
   display: flex;
   gap: var(--space-md);
   border: 1px solid var(--borda);
   box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
   position: relative;
   transition: all 0.5s var(--ease-out);
 }
 
 .convenios-reembolso-card:hover {
   transform: translateY(-5px);
   border-color: var(--ouro);
 }
 
 .reembolso-icon {
   color: var(--ouro);
   flex-shrink: 0;
 }
 
 .reembolso-icon svg {
   width: 32px;
   height: 32px;
 }
 
 .reembolso-text h4 {
   font-family: var(--font-corpo);
   font-size: 0.9rem;
   text-transform: uppercase;
   letter-spacing: 0.1em;
   margin-bottom: 0.5rem;
   color: var(--preto);
 }
 
 .reembolso-text p {
   font-size: 0.95rem;
   color: var(--grafite);
   margin-bottom: var(--space-sm);
   line-height: 1.6;
 }
 
 .link-minimal {
   font-size: 0.8rem;
   font-weight: 700;
   color: var(--ouro);
   text-transform: uppercase;
   letter-spacing: 0.1em;
   transition: gap 0.3s ease;
 }
 
 /* Logo Showcase Grid */
 .logo-showcase-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 1.5rem;
 }
 
 /* Centraliza o 5º item (ímpar) na última linha */
 .logo-item-premium:last-child:nth-child(odd) {
   grid-column: 1 / span 2;
 }
 
 .logo-item-premium {
   background: rgba(255, 255, 255, 0.4);
   backdrop-filter: blur(10px);
   -webkit-backdrop-filter: blur(10px);
   border: 1px solid var(--borda);
   padding: var(--space-lg) var(--space-md);
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   text-align: center;
   transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
   min-height: 140px;
 }
 
 .logo-item-premium:hover {
   background: var(--branco);
   border-color: var(--ouro);
   transform: scale(1.03);
   box-shadow: 0 30px 60px rgba(201, 169, 110, 0.1);
 }
 
 .logo-name {
   font-family: var(--font-titulo);
   font-size: 1.25rem;
   color: var(--preto);
   margin-bottom: 0.25rem;
   font-weight: 400;
 }
 
 .logo-detail {
   font-family: var(--font-corpo);
   font-size: 0.65rem;
   text-transform: uppercase;
   letter-spacing: 0.2em;
   color: var(--ouro);
   font-weight: 600;
   opacity: 0.8;
 }
 
 /* Responsive Ultra-Premium */
 @media (min-width: 1024px) {
   .convenios-grid-layout {
     grid-template-columns: 1fr 1.1fr;
     gap: var(--space-3xl);
   }
   
   .logo-showcase-grid {
     grid-template-columns: repeat(2, 1fr);
   }
 }
  @media (max-width: 1023px) {
    .convenios-premium {
      padding: var(--space-xl) 0;
      overflow: hidden;
    }

    .convenios-bg-text {
      font-size: 15vw;
      top: 5%;
      opacity: 0.04;
      max-width: 100vw;
    }
    
    .logo-showcase-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
    
    .convenios-reembolso-card {
      padding: var(--space-md);
      margin-top: 1rem;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .logo-item-premium {
      min-height: 100px;
      padding: var(--space-md);
    }
  }

/* ============================================================
   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;
  color: rgba(255, 255, 255, 0.4);
}

.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;
  color: rgba(255, 255, 255, 0.65);
  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;
  color: rgba(255, 255, 255, 0.7);
  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);
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 300ms ease;
}

.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;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 0.375rem 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;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 0.375rem 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;
  color: rgba(255, 255, 255, 0.4);
  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;
  color: rgba(255, 255, 255, 0.5);
}

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

.footer-legal-link {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 200ms ease;
}

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

.footer-legal-sep {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  opacity: 0.3;
  margin: 0 10px;
}

.creditos-direita {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  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; }
}

/* ============================================================
   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: 48%;
    flex-shrink: 0;
  }

  .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: 50%;
    margin-top: 0;
    background-color: var(--creme);
  }

  .hero-image {
    height: 100%;
    border-radius: 0;
    clip-path: none; /* Removido corte agressivo para maior leveza */
    object-position: center top;
    animation: heroImageLuminous 2500ms var(--ease-out) 300ms forwards;
  }

  .hero-image-overlay {
    /* Transição mínima para leveza máxima */
    background: linear-gradient(to right, 
                  var(--creme) 0%, 
                  rgba(245, 240, 232, 0.2) 20%, 
                  transparent 50%),
                linear-gradient(to bottom, 
                  transparent 75%, 
                  rgba(245, 240, 232, 0.3) 92%, 
                  var(--creme) 100%);
    clip-path: none;
  }

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

  .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 */
  }
}
