/* 
 * Dra. Victoria Quintanilha - Landing Page Premium
 * Estética: Warm Luxury Editorial (Estilo revista de luxo)
 * Tecnologias: Vanilla CSS3, Grid, Flexbox, Custom Properties
 */

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

/* --- VARIÁVEIS DE DESIGN --- */
:root {
  /* Cores - Luxo Quente e Carvão */
  --bg-obsidian: #0d0c0b;     /* Fundo principal ultra-escuro e quente */
  --bg-charcoal: #161413;     /* Fundo de seções secundárias ou cards escuros */
  --bg-cream: #fbf9f6;        /* Fundo creme para seções claras de alto contraste */
  --bg-sand: #f5f0e6;         /* Fundo de cards ou detalhes claros */
  
  --color-gold-deep: #b39268; /* Dourado profundo */
  --color-gold-light: #dfcaa8; /* Dourado champanhe claro */
  --color-gold-matte: #c5a880; /* Dourado escovado neutro */
  
  --text-light-primary: #f5f0e6;  /* Texto claro principal */
  --text-light-secondary: #b8b1a6;/* Texto claro secundário */
  --text-dark-primary: #1c1a18;   /* Texto escuro principal */
  --text-dark-secondary: #5c554e; /* Texto escuro secundário */
  
  --border-dark: rgba(197, 168, 128, 0.12); /* Borda dourada ultra sutil para modo escuro */
  --border-light: rgba(28, 26, 24, 0.08);    /* Borda sutil para modo claro */
  
  /* Fontes */
  --font-editorial: 'Cormorant Garamond', serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  
  /* Transições e Efeitos */
  --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.25s ease;
  --glass-dark: rgba(22, 20, 19, 0.75);
  --glass-light: rgba(251, 249, 246, 0.75);
  
  /* Espaçamentos */
  --section-padding: 10rem 2rem;
  --section-padding-mobile: 6rem 1.5rem;
}

@media (max-width: 768px) {
  :root {
    --section-padding: var(--section-padding-mobile);
  }
}

/* --- RESET & CONFIGURAÇÕES BÁSICAS --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%; /* 1rem = 10px */
  scroll-behavior: smooth;
  background-color: var(--bg-obsidian);
  color: var(--text-light-primary);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-size: 1.6rem;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

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

/* --- ANIMAÇÕES GERAIS --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lineGrow {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(0.215, 0.610, 0.355, 1.000), 
              transform 1.2s cubic-bezier(0.215, 0.610, 0.355, 1.000);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* --- COMPONENTES TIPOGRÁFICOS --- */
.text-serif {
  font-family: var(--font-editorial);
  font-weight: 400;
}

.title-large {
  font-size: clamp(3.8rem, 6vw, 7.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-light-primary);
}

.title-medium {
  font-size: clamp(2.8rem, 4vw, 4.8rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.title-small {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 1.25;
}

.label-gold {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-gold-matte);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1.5rem;
  position: relative;
}

.label-gold::after {
  content: '';
  display: block;
  width: 3rem;
  height: 1px;
  background-color: var(--color-gold-matte);
  margin-top: 0.5rem;
  transition: var(--transition-smooth);
}

section:hover .label-gold::after {
  width: 100%;
}

.paragraph-editorial {
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-light-secondary);
}

/* --- BOTÕES PREMIUM --- */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.8rem 3.8rem;
  font-family: var(--font-sans);
  font-size: 1.3rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--bg-obsidian);
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold-deep) 100%);
  border: 1px solid transparent;
  border-radius: 0px; /* Estética editorial rígida e sofisticada */
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(179, 146, 104, 0.2);
  z-index: 1;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-obsidian);
  color: var(--color-gold-light);
  transform: translateY(101%);
  transition: var(--transition-smooth);
  z-index: -1;
}

.btn-gold:hover {
  color: var(--color-gold-light);
  border-color: var(--color-gold-matte);
  box-shadow: 0 8px 30px rgba(179, 146, 104, 0.1);
  transform: translateY(-2px);
}

.btn-gold:hover::before {
  transform: translateY(0);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.8rem 3.8rem;
  font-family: var(--font-sans);
  font-size: 1.3rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-gold-light);
  background: transparent;
  border: 1px solid var(--border-dark);
  border-radius: 0px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  z-index: 1;
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold-deep) 100%);
  transform: translateY(101%);
  transition: var(--transition-smooth);
  z-index: -1;
}

.btn-outline:hover {
  color: var(--bg-obsidian);
  border-color: transparent;
  transform: translateY(-2px);
}

.btn-outline:hover::before {
  transform: translateY(0);
}

/* --- HEADER / NAVIGATION --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2.5rem 5%;
  z-index: 1000;
  transition: var(--transition-smooth);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}

header.scrolled {
  padding: 1.5rem 5%;
  background-color: var(--glass-dark);
  border-bottom: 1px solid rgba(197, 168, 128, 0.08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-editorial);
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-light-primary);
}

.logo span {
  font-family: var(--font-sans);
  font-size: 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold-matte);
  display: block;
  font-weight: 500;
  margin-top: -0.2rem;
}

.nav-links {
  display: flex;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 992px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(13, 12, 11, 0.96); /* Fundo ultra escuro */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: 3.5rem;
    transform: translateY(-100%);
    transition: var(--transition-smooth);
    z-index: 999;
  }

  .nav-links.active {
    transform: translateY(0);
  }
}

.nav-link {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  color: var(--text-light-secondary);
  position: relative;
  padding: 0.5rem 0;
}

@media (max-width: 992px) {
  .nav-link {
    font-size: 1.8rem; /* Links maiores no mobile para toque fácil */
    color: var(--text-light-primary);
  }
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: var(--color-gold-matte);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

.nav-link:hover {
  color: var(--text-light-primary);
}

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

.btn-header {
  padding: 1.2rem 2.4rem;
  font-size: 1.1rem;
}

@media (max-width: 992px) {
  .btn-header {
    padding: 1.6rem 3.2rem;
    font-size: 1.4rem;
  }
}

/* Menu Mobile Button */
.menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

@media (max-width: 992px) {
  .menu-btn {
    display: flex;
  }
}

.menu-btn span {
  width: 25px;
  height: 2px;
  background-color: var(--text-light-primary);
  transition: var(--transition-smooth);
  transform-origin: center;
}

/* Animação do botão de fechar (X) */
.menu-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.menu-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --- HERO SECTION --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 12rem;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 70% 30%, #1c1714 0%, var(--bg-obsidian) 70%);
}

.hero::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, var(--bg-obsidian) 0%, rgba(13, 12, 11, 0) 40%);
  pointer-events: none;
  z-index: 2;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 0 5%;
  z-index: 5;
}

@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 4rem;
    padding-top: 4rem;
  }
}

.hero-content {
  animation: fadeInUp 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1.8rem;
  border: 1px solid var(--border-dark);
  background: rgba(197, 168, 128, 0.04);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold-matte);
  margin-bottom: 3rem;
}

.hero-badge span {
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--color-gold-matte);
  border-radius: 50%;
}

.hero h1 {
  margin-bottom: 2.5rem;
}

.hero-subtitle {
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  font-weight: 300;
  color: var(--text-light-secondary);
  margin-bottom: 4rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 2rem;
}

@media (max-width: 768px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }
}

.hero-stats {
  display: flex;
  gap: 5rem;
  margin-top: 6rem;
  border-top: 1px solid var(--border-dark);
  padding-top: 4rem;
}

@media (max-width: 992px) {
  .hero-stats {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: 3rem;
    align-items: center;
  }
}

.stat-item h3 {
  font-family: var(--font-editorial);
  font-size: clamp(3.2rem, 4vw, 4.2rem);
  color: var(--color-gold-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light-secondary);
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 540px;
  justify-self: center;
  animation: fadeInUp 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

@media (max-width: 992px) {
  .hero-image-wrapper {
    max-width: 420px;
  }
}

.hero-img-frame {
  position: relative;
  border: 1px solid var(--border-dark);
  padding: 1.5rem;
  background-color: var(--bg-charcoal);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.hero-img-frame::before {
  content: '';
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 100px;
  height: 100px;
  border-top: 1px solid var(--color-gold-matte);
  border-right: 1px solid var(--color-gold-matte);
  pointer-events: none;
}

.hero-image-wrapper img {
  width: 100%;
  height: 580px;
  object-position: center 15%; /* Ajusta o enquadramento na Dra */
  filter: grayscale(15%) contrast(105%);
  transition: var(--transition-smooth);
}

@media (max-width: 768px) {
  .hero-image-wrapper img {
    height: 450px;
  }
}

.hero-image-wrapper:hover img {
  filter: grayscale(0%) contrast(100%);
  transform: scale(1.02);
}

/* --- SEÇÃO DIFERENCIAIS --- */
.diferenciais {
  padding: var(--section-padding);
  background-color: var(--bg-obsidian);
  position: relative;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-header {
  max-width: 700px;
  margin-bottom: 8rem;
}

.section-header.center {
  margin: 0 auto 8rem auto;
  text-align: center;
}

.section-header h2 {
  margin-top: 1.5rem;
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem;
}

@media (max-width: 992px) {
  .diferenciais-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.dif-card {
  background-color: var(--bg-charcoal);
  border: 1px solid var(--border-dark);
  padding: 5rem 4rem;
  transition: var(--transition-smooth);
  position: relative;
}

.dif-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold-light), var(--color-gold-deep));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.dif-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(197, 168, 128, 0.25);
}

.dif-card:hover::before {
  transform: scaleX(1);
}

.dif-icon {
  font-size: 3.6rem;
  color: var(--color-gold-matte);
  margin-bottom: 3.5rem;
  display: inline-block;
}

.dif-icon svg {
  width: 48px;
  height: 48px;
  stroke-width: 1.2;
}

.dif-card h3 {
  margin-bottom: 2rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.dif-card p {
  color: var(--text-light-secondary);
  font-size: 1.5rem;
  line-height: 1.7;
}

/* --- SEÇÃO TRATAMENTOS (PORTEFÓLIO DE PRODUTOS) --- */
.tratamentos {
  padding: var(--section-padding);
  background-color: var(--bg-charcoal);
  position: relative;
}

.tratamentos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 4rem;
}

@media (max-width: 992px) {
  .tratamentos-grid {
    grid-template-columns: 1fr;
    gap: 6rem;
  }
}

.tratamento-card {
  display: flex;
  flex-direction: column;
  background-color: var(--bg-obsidian);
  border: 1px solid var(--border-dark);
  transition: var(--transition-smooth);
  overflow: hidden;
}

.tratamento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
  border-color: rgba(197, 168, 128, 0.25);
}

.trat-img-wrapper {
  position: relative;
  height: 380px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .trat-img-wrapper {
    height: 280px;
  }
}

.trat-img-wrapper img {
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.tratamento-card:hover .trat-img-wrapper img {
  transform: scale(1.05);
}

.trat-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(13, 12, 11, 0) 50%, var(--bg-obsidian) 100%);
}

.trat-info {
  padding: 4.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

@media (max-width: 480px) {
  .trat-info {
    padding: 3rem;
  }
}

.trat-badge {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold-matte);
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.trat-info h3 {
  margin-bottom: 2rem;
  font-weight: 500;
}

.trat-info p {
  color: var(--text-light-secondary);
  font-size: 1.5rem;
  line-height: 1.7;
  margin-bottom: 3.5rem;
}

.trat-features {
  list-style: none;
  margin-bottom: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 480px) {
  .trat-features {
    grid-template-columns: 1fr;
  }
}

.trat-features li {
  font-size: 1.4rem;
  color: var(--text-light-secondary);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trat-features li svg {
  width: 16px;
  height: 16px;
  color: var(--color-gold-matte);
  flex-shrink: 0;
}

.trat-cta-wrapper {
  margin-top: auto;
}

.btn-inline-gold {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--color-gold-light);
  border-bottom: 1px solid var(--color-gold-matte);
  padding-bottom: 0.5rem;
  transition: var(--transition-fast);
}

.btn-inline-gold svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.btn-inline-gold:hover {
  color: var(--text-light-primary);
  border-color: var(--text-light-primary);
}

.btn-inline-gold:hover svg {
  transform: translateX(5px);
}

/* --- SEÇÃO SOBRE (DRA VICTORIA) --- */
.sobre {
  padding: var(--section-padding);
  background-color: var(--bg-cream);
  color: var(--text-dark-primary);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 8rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

@media (max-width: 992px) {
  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 6rem;
  }
}

.sobre-img-container {
  position: relative;
  width: 100%;
  max-width: 520px;
  justify-self: center;
}

.sobre-img-frame {
  position: relative;
  border: 1px solid var(--border-light);
  padding: 1.5rem;
  background-color: var(--bg-sand);
  box-shadow: 0 30px 60px rgba(28, 26, 24, 0.12);
}

.sobre-img-frame::before {
  content: '';
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  width: 100px;
  height: 100px;
  border-bottom: 1px solid var(--color-gold-deep);
  border-left: 1px solid var(--color-gold-deep);
  pointer-events: none;
}

.sobre-img-frame img {
  width: 100%;
  height: 560px;
  object-position: center 20%;
  filter: contrast(102%);
}

@media (max-width: 768px) {
  .sobre-img-frame img {
    height: 420px;
  }
}

.sobre-content .label-gold {
  color: var(--color-gold-deep);
}

.sobre-content .label-gold::after {
  background-color: var(--color-gold-deep);
}

.sobre-content h2 {
  color: var(--text-dark-primary);
  margin-bottom: 3.5rem;
}

.sobre-highlight {
  font-family: var(--font-editorial);
  font-size: clamp(2rem, 2.8vw, 2.6rem);
  line-height: 1.5;
  color: var(--color-gold-deep);
  margin-bottom: 3rem;
  border-left: 2px solid var(--color-gold-deep);
  padding-left: 2.5rem;
}

.sobre-text {
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--text-dark-secondary);
  font-weight: 400;
  margin-bottom: 4rem;
}

.sobre-text p {
  margin-bottom: 2rem;
}

.sobre-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

@media (max-width: 480px) {
  .sobre-stats {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.sobre-stat h4 {
  font-family: var(--font-editorial);
  font-size: 3.8rem;
  color: var(--text-dark-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.sobre-stat p {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-dark-secondary);
  font-weight: 500;
}

/* --- SEÇÃO ANTES & DEPOIS (INTERACTIVE SMILE SLIDER) --- */
.transformacoes {
  padding: var(--section-padding);
  background-color: var(--bg-obsidian);
}

.transformacoes-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

.slider-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 8rem;
  align-items: center;
}

@media (max-width: 992px) {
  .slider-layout {
    grid-template-columns: 1fr;
    gap: 6rem;
  }
}

.slider-content-left h2 {
  margin-bottom: 3rem;
}

.slider-content-left p {
  margin-bottom: 4rem;
}

.slider-benefits {
  list-style: none;
  margin-bottom: 4.5rem;
}

.slider-benefits li {
  font-size: 1.5rem;
  color: var(--text-light-secondary);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.slider-benefits li svg {
  width: 20px;
  height: 20px;
  color: var(--color-gold-matte);
}

/* O Componente do Slider Real */
.slider-interactive-wrapper {
  position: relative;
  width: 100%;
  max-width: 680px;
  aspect-ratio: 16/10;
  border: 1px solid var(--border-dark);
  background-color: var(--bg-charcoal);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  user-select: none;
  -webkit-user-select: none;
  justify-self: center;
}

@media (max-width: 768px) {
  .slider-interactive-wrapper {
    aspect-ratio: 4/3;
  }
}

.slider-before, .slider-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slider-before img, .slider-after img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* O After fica por cima, e vamos encolhendo sua largura horizontal */
.slider-after {
  width: 50%; /* Padrão de início */
  z-index: 10;
  border-right: 2px solid var(--color-gold-matte);
}

/* Elementos de Texto explicativos */
.slider-label {
  position: absolute;
  bottom: 2rem;
  padding: 0.6rem 1.6rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background-color: rgba(13, 12, 11, 0.85);
  border: 1px solid var(--border-dark);
  color: var(--text-light-primary);
  z-index: 20;
  font-weight: 600;
  pointer-events: none;
}

.slider-label.before {
  right: 2rem;
}

.slider-label.after {
  left: 2rem;
}

/* O Botão de Arrastar (Handle) */
.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%; /* Sincronizado com a borda do after */
  width: 4px;
  background-color: var(--color-gold-matte);
  transform: translateX(-50%);
  cursor: ew-resize;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-handle-button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--bg-obsidian);
  border: 2px solid var(--color-gold-matte);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-matte);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease;
  pointer-events: none; /* Mouse down é no handle principal */
}

.slider-handle:hover .slider-handle-button {
  transform: scale(1.1);
  background-color: var(--color-gold-deep);
  color: var(--bg-obsidian);
}

.slider-handle-button svg {
  width: 18px;
  height: 18px;
}

/* --- SEÇÃO QUIZ INTERATIVO (O GRANDE DIFERENCIAL) --- */
.quiz-section {
  padding: var(--section-padding);
  background-color: var(--bg-charcoal);
  position: relative;
  background: radial-gradient(circle at 10% 80%, #1e1915 0%, var(--bg-charcoal) 60%);
}

.quiz-container {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 2rem;
  z-index: 5;
}

.quiz-card {
  background-color: var(--bg-obsidian);
  border: 1px solid var(--border-dark);
  padding: 6rem 5rem;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .quiz-card {
    padding: 4rem 2.5rem;
  }
}

.quiz-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 20%;
  background: linear-gradient(90deg, var(--color-gold-light), var(--color-gold-deep));
  transition: width 0.4s ease;
}

.quiz-step {
  display: none;
  animation: fadeInUp 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.quiz-step.active {
  display: block;
}

.quiz-step h3 {
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.quiz-step-desc {
  font-size: 1.5rem;
  color: var(--text-light-secondary);
  margin-bottom: 4rem;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-bottom: 4rem;
}

.quiz-option {
  display: flex;
  align-items: center;
  padding: 2.2rem 3rem;
  border: 1px solid var(--border-dark);
  background-color: rgba(22, 20, 19, 0.4);
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
}

.quiz-option:hover {
  border-color: var(--color-gold-matte);
  background-color: rgba(197, 168, 128, 0.04);
}

.quiz-option.selected {
  border-color: var(--color-gold-light);
  background-color: rgba(197, 168, 128, 0.08);
}

.quiz-checkbox {
  width: 20px;
  height: 20px;
  border: 1px solid var(--color-gold-matte);
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.quiz-option.selected .quiz-checkbox {
  background-color: var(--color-gold-light);
  border-color: var(--color-gold-light);
}

.quiz-option.selected .quiz-checkbox::after {
  content: '';
  width: 8px;
  height: 8px;
  background-color: var(--bg-obsidian);
  border-radius: 50%;
}

.quiz-option-text {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-light-primary);
}

.quiz-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-dark);
  padding-top: 3.5rem;
}

.btn-quiz-prev {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--text-light-secondary);
  transition: var(--transition-fast);
}

.btn-quiz-prev:hover {
  color: var(--text-light-primary);
}

.btn-quiz-next {
  min-width: 150px;
}

/* Etapa de Carregamento/Resultado */
.quiz-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
}

.quiz-spinner {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(197, 168, 128, 0.1);
  border-top-color: var(--color-gold-matte);
  border-radius: 50%;
  animation: rotate 1s linear infinite;
  margin-bottom: 3rem;
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

.quiz-loader p {
  font-size: 1.6rem;
  font-family: var(--font-editorial);
  font-style: italic;
  color: var(--color-gold-light);
}

.quiz-result-card {
  text-align: center;
  padding: 2rem 0;
}

.quiz-result-badge {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold-matte);
  border: 1px solid var(--color-gold-matte);
  padding: 0.8rem 2rem;
  display: inline-block;
  margin-bottom: 3rem;
}

.quiz-result-card h3 {
  margin-bottom: 2.5rem;
}

.quiz-result-desc {
  font-size: 1.6rem;
  color: var(--text-light-secondary);
  line-height: 1.8;
  margin-bottom: 4.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- SEÇÃO DEPOIMENTOS (TESTIMONIAL CAROUSEL) --- */
.depoimentos {
  padding: var(--section-padding);
  background-color: var(--bg-obsidian);
}

.testimonials-wrapper {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.testimonial-slide {
  text-align: center;
  animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  display: none;
}

.testimonial-slide.active {
  display: block;
}

.quote-icon {
  font-size: 5rem;
  color: rgba(197, 168, 128, 0.15);
  margin-bottom: 3rem;
  font-family: var(--font-editorial);
  line-height: 1;
}

.quote-text {
  font-family: var(--font-editorial);
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  line-height: 1.45;
  color: var(--text-light-primary);
  margin-bottom: 4rem;
  font-weight: 300;
}

.patient-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.patient-name {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold-light);
}

.patient-tag {
  font-size: 1.2rem;
  color: var(--text-light-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.patient-rating {
  color: var(--color-gold-matte);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.patient-rating span {
  margin: 0 0.2rem;
}

/* Testimonial Controls */
.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 6rem;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light-secondary);
  transition: var(--transition-smooth);
}

.carousel-btn:hover {
  border-color: var(--color-gold-matte);
  color: var(--color-gold-light);
  transform: translateY(-2px);
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
}

.carousel-dots {
  display: flex;
  gap: 1.2rem;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  background-color: rgba(197, 168, 128, 0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.carousel-dot.active {
  background-color: var(--color-gold-matte);
  transform: scale(1.5);
}

/* --- SEÇÃO FAQ --- */
.faq {
  padding: var(--section-padding);
  background-color: var(--bg-charcoal);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.faq-item {
  border-bottom: 1px solid var(--border-dark);
  padding-bottom: 2rem;
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  padding: 1.5rem 0;
  font-size: clamp(1.8rem, 2.2vw, 2.2rem);
  font-weight: 500;
  color: var(--text-light-primary);
  transition: var(--transition-fast);
}

.faq-trigger:hover {
  color: var(--color-gold-light);
}

.faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-matte);
  flex-shrink: 0;
}

.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background-color: currentColor;
  transition: var(--transition-smooth);
}

/* Barra Horizontal */
.faq-icon::before {
  width: 14px;
  height: 2px;
}

/* Barra Vertical */
.faq-icon::after {
  width: 2px;
  height: 14px;
}

.faq-item.active .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-content p {
  padding: 1.5rem 0 0.5rem 0;
  font-size: 1.5rem;
  line-height: 1.8;
  color: var(--text-light-secondary);
}

/* --- SEÇÃO FINAL: CONTATO, MAPA E FOOTER --- */
.contato {
  padding: var(--section-padding);
  background-color: var(--bg-obsidian);
  border-bottom: 1px solid var(--border-dark);
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: flex-start;
}

@media (max-width: 992px) {
  .contato-grid {
    grid-template-columns: 1fr;
    gap: 6rem;
  }
}

.info-contato {
  display: flex;
  flex-direction: column;
}

.info-contato h2 {
  margin-bottom: 2.5rem;
}

.info-text {
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--text-light-secondary);
  margin-bottom: 5rem;
}

.contato-links {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  margin-bottom: 5rem;
}

.contato-link-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.contato-icon {
  width: 50px;
  height: 50px;
  border-radius: 0px;
  background-color: var(--bg-charcoal);
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-matte);
  flex-shrink: 0;
}

.contato-icon svg {
  width: 22px;
  height: 22px;
}

.contato-detail h4 {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light-secondary);
  margin-bottom: 0.5rem;
}

.contato-detail p, .contato-detail a {
  font-size: 1.6rem;
  color: var(--text-light-primary);
  font-weight: 500;
}

.contato-detail a:hover {
  color: var(--color-gold-light);
}

/* O Mapa */
.mapa-wrapper {
  position: relative;
  width: 100%;
  height: 520px;
  border: 1px solid var(--border-dark);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .mapa-wrapper {
    height: 380px;
  }
}

.mapa-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(85%) invert(92%) contrast(100%) saturate(20%); /* Estilização dark para o mapa */
  transition: var(--transition-smooth);
}

.mapa-wrapper:hover iframe {
  filter: grayscale(30%) invert(0%) contrast(100%) saturate(90%);
}

/* FOOTER */
footer {
  padding: 6rem 2rem;
  background-color: #080707;
  color: var(--text-light-secondary);
  text-align: center;
  font-size: 1.3rem;
  position: relative;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

.footer-logo {
  font-family: var(--font-editorial);
  font-size: 3rem;
  color: var(--text-light-primary);
  letter-spacing: 0.05em;
}

.footer-logo span {
  font-family: var(--font-sans);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-gold-matte);
  display: block;
  margin-top: 0.2rem;
}

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

.social-link {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light-secondary);
  transition: var(--transition-smooth);
}

.social-link:hover {
  border-color: var(--color-gold-matte);
  color: var(--color-gold-light);
  transform: translateY(-3px);
}

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

.footer-divider {
  width: 100%;
  height: 1px;
  background-color: var(--border-dark);
  max-width: 600px;
}

.copyright {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

/* CTA FIXO NO CELULAR (BOTÃO FLUTUANTE PREMIUM) */
.whatsapp-float {
  position: fixed;
  bottom: 3.5rem;
  right: 3.5rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.6rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  z-index: 999;
  transition: var(--transition-smooth);
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* Mobile responsive fixes */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 2.5rem;
    right: 2.5rem;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

/* --- MOBILE FLIX (INSTAGRAM STORIES HIGHLIGHTS STYLE) --- */
.mobile-flix-section {
  padding: 4rem 2rem 2rem 2rem;
  background-color: var(--bg-obsidian);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-dark);
}

@media (max-width: 768px) {
  .mobile-flix-section {
    padding: 3rem 1.5rem 1.5rem 1.5rem;
  }
}

.flix-wrapper-outer {
  max-width: 1400px;
  margin: 0 auto;
}

.flix-header {
  margin-bottom: 2.5rem;
}

.flix-header .label-gold {
  margin-bottom: 0.5rem;
}

.flix-slider-container {
  display: flex;
  gap: 2.5rem;
  overflow-x: auto;
  padding: 1rem 0.5rem;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; /* Rolagem inercial nativa no iOS */
  scrollbar-width: none; /* Oculta scrollbar no Firefox */
}

.flix-slider-container::-webkit-scrollbar {
  display: none; /* Oculta scrollbar no Chrome, Safari, Edge */
}

.flix-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--transition-smooth);
  user-select: none;
}

.flix-item:hover {
  transform: scale(1.05);
}

.flix-circle-frame {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  padding: 2.5px; /* Espaço para o gradiente de borda */
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.flix-item.viewed .flix-circle-frame {
  background: var(--border-dark); /* Desbota a borda após visualizado, igual ao Instagram */
}

.flix-circle-img-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--bg-obsidian); /* Cria uma linha divisória escura e elegante */
  overflow: hidden;
  background-color: var(--bg-charcoal);
}

.flix-circle-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flix-item-title {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-light-secondary);
  transition: var(--transition-fast);
  text-align: center;
}

.flix-item:hover .flix-item-title {
  color: var(--text-light-primary);
}


/* --- STORIES FULLSCREEN VIEWER --- */
.story-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh; /* dynamic viewport height para evitar "pulos" de layout no mobile com barra do navegador */
  z-index: 10000;
  display: none; /* Controlado via JS */
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.story-modal.active {
  display: flex;
}

.story-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  cursor: pointer;
  z-index: 1;
}

.story-modal-container {
  position: relative;
  width: 100%;
  max-width: 440px; /* Largura padrão de celular */
  height: 100%;
  max-height: 820px; /* Altura proporcional de celular em desktop */
  background-color: var(--bg-charcoal);
  border: 1px solid var(--border-dark);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 5;
}

@media (max-width: 576px) {
  .story-modal-container {
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    border: none;
  }
}

/* Barras de Progresso no Topo */
.story-progress-container {
  position: absolute;
  top: 1.5rem;
  left: 0;
  width: 100%;
  padding: 0 1.5rem;
  display: flex;
  gap: 6px;
  z-index: 50;
}

.story-progress-bg {
  flex: 1;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.story-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: var(--text-light-primary);
  transition: width 0.1s linear;
}

/* Cabeçalho do Story */
.story-modal-header {
  position: absolute;
  top: 2.8rem;
  left: 0;
  width: 100%;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 50;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
}

.story-header-author {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.story-header-author img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-gold-matte);
}

.story-author-info {
  display: flex;
  flex-direction: column;
}

.story-author-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-light-primary);
}

.story-time-badge {
  font-size: 1.1rem;
  color: var(--text-light-secondary);
}

.story-close-btn {
  color: var(--text-light-primary);
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.story-close-btn svg {
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.3));
}

/* Conteúdo de Mídia do Story */
.story-content-wrapper {
  flex-grow: 1;
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-content-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-overlay-text {
  position: absolute;
  bottom: 5rem;
  left: 0;
  width: 100%;
  padding: 3rem 2.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 70%, rgba(0,0,0,0) 100%);
  color: var(--text-light-primary);
  font-family: var(--font-sans);
  font-size: 1.5rem;
  line-height: 1.6;
  text-align: center;
  font-weight: 400;
  z-index: 20;
}

/* Áreas de Toque Laterais */
.story-tap-area {
  position: absolute;
  top: 8rem;
  bottom: 8rem;
  width: 25%;
  z-index: 30;
  cursor: pointer;
}

.story-tap-area.left {
  left: 0;
}

.story-tap-area.right {
  right: 0;
  width: 75%; /* Maior facilidade para avançar */
}

/* Desativa scroll do body quando modal está aberto */
body.story-open {
  overflow: hidden !important;
  touch-action: none;
}

