/* ================================================
   DRA. ALEXIA HISSA — Landing Page
   style.css
   ================================================ */

/* ── Variáveis ── */
:root {
  --champagne:     #F5EDD8;   /* fundo principal */
  --dourado:       #C9A96E;   /* cor principal — bordas, ícones, linhas */
  --dourado-forte: #D4913A;   /* CTAs, destaques, botão primário */
  --dourado-claro: #EDD9A3;   /* detalhes suaves, hover */
  --escuro:        #1A1209;   /* texto principal */
  --medio:         #5A3E28;   /* texto secundário */
  --creme:         #FAF6EE;   /* fundo de seções alternadas */
  --branco:        #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  --radius-card:  12px;
  --shadow-card:  0 4px 32px rgba(201,169,110,0.14);
  --shadow-hover: 0 12px 48px rgba(201,169,110,0.26);

  --transition:   all 0.3s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--escuro);
  background: var(--creme);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Botões globais ── */
.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--dourado-forte);
  color: var(--branco);
  position: relative;
  overflow: hidden;
}
.btn-primary:hover {
  background: #BD7A2A;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212,145,58,0.35);
}

/* Animação de Brilho dos Botões */
@keyframes shineEffect {
  0% { transform: translateX(-150%) skewX(-15deg); }
  20%, 100% { transform: translateX(250%) skewX(-15deg); }
}
.btn-primary::after, .btn-cta-whats::after {
  content: '';
  position: absolute;
  top: 0;
  left: -20%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
  animation: shineEffect 4s infinite cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
}
.btn-ghost {
  background: transparent;
  color: var(--dourado);
  border: 1px solid var(--dourado);
}
.btn-ghost:hover {
  background: rgba(212,145,58,0.1);
  transform: translateY(-2px);
}

/* ── Tags de seção ── */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--dourado);
  margin-bottom: 12px;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 400;
  color: var(--escuro);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 16px;
  color: var(--medio);
  line-height: 1.7;
}

/* ── Marca d'água de fundo ── */
.section-watermark {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 160px);
  font-weight: 700;
  color: var(--dourado-forte);
  opacity: 0.035;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  line-height: 1;
}

.hero-img-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  object-fit: contain;
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* ── Reveal (scroll animation) ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay { transition-delay: 0.2s; }
.reveal-delay-2 { transition-delay: 0.35s; }


/* ================================================
   NAVBAR
   ================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(245,237,216,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,169,110,0.2);
  transition: box-shadow 0.3s ease;
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(26,18,9,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
}
.nav-brand {
  display: flex;
  align-items: center;
}
.nav-logo {
  height: 60px;
  max-width: 75vw;
  width: auto;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
}

@media (min-width: 1024px) {
  .nav-logo {
    height: 64px;
  }
}
.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--medio);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--dourado);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--escuro); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  display: none;
  background: var(--dourado-forte);
  color: var(--branco);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-cta:hover {
  background: #BD7A2A;
  transform: translateY(-1px);
}
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--escuro);
  border-radius: 2px;
  transition: var(--transition);
}

/* Drawer mobile */
.nav-drawer {
  position: fixed;
  top: 0; right: -320px;
  width: 300px;
  max-width: 85vw;
  height: 100dvh;
  background: var(--creme);
  z-index: 950;
  padding: 80px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transition: right 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: -8px 0 32px rgba(26,18,9,0.1);
}
.nav-drawer.open { right: 0; }
.drawer-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--medio);
  transition: color 0.2s;
}
.drawer-close:hover { color: var(--escuro); }
.drawer-links { display: flex; flex-direction: column; gap: 24px; }
.drawer-links a {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--escuro);
  transition: color 0.2s;
}
.drawer-links a:hover { color: var(--dourado-forte); }
.drawer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--dourado-forte);
  color: var(--branco);
  font-size: 14px;
  font-weight: 500;
  padding: 13px 32px;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
}
.drawer-cta:hover { background: #BD7A2A; }
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,18,9,0.4);
  z-index: 940;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.nav-overlay.open { opacity: 1; pointer-events: all; }

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-hamburger { display: none; }
}


/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(237,217,163,0.4) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 15% 80%, rgba(245,237,216,0.6) 0%, transparent 60%),
    var(--creme);
}
.hero-bg-blob { pointer-events: none; }
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-top: 60px;
  padding-bottom: 80px;
}
.hero-pretag {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.pretag-line {
  display: block;
  width: 60px; height: 1px;
  background: var(--dourado);
  transform-origin: left;
  animation: lineGrow 0.8s ease 0.5s both;
}
@keyframes lineGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.pretag-text {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--dourado);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 68px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--escuro);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--dourado-forte);
}
.hero-desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--medio);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 36px;
}
.hero-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}
.hero-btns .btn-primary,
.hero-btns .btn-ghost {
  width: 100%;
  justify-content: center;
}

/* Foto hero */
.hero-photo {
  display: flex;
  justify-content: center;
  animation: heroPhotoIn 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
}
@keyframes heroPhotoIn {
  from { opacity: 0; transform: scale(0.97) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.hero-photo-inner {
  position: relative;
  width: min(380px, 80vw);
  aspect-ratio: 4/5;
}
.hero-photo-inner::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 58% 42% 53% 47% / 48% 52% 48% 52%;
  border: 1px solid var(--dourado-claro);
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}
.hero-photo-inner img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 60% 40% 55% 45% / 50% 50% 50% 50%;
  position: relative;
  z-index: 1;
  background: var(--creme);
}

@media (min-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
    align-items: center;
    text-align: center;
  }
  .hero-pretag { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-btns {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .hero-btns .btn-primary,
  .hero-btns .btn-ghost {
    width: auto;
  }
}


/* ================================================
   FAIXA DE CREDENCIAIS
   ================================================ */
.credentials-bar {
  background: var(--dourado-forte);
  overflow: hidden;
  padding: 14px 0;
}
.credentials-track {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.credentials-track span {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.92);
}
.credentials-track .sep {
  opacity: 0.4;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .credentials-track { animation: none; }
  .credentials-bar { overflow-x: auto; }
  .credentials-bar::-webkit-scrollbar { display: none; }
}


/* ================================================
   SOBRE
   ================================================ */
.sobre {
  position: relative;
  background: var(--creme);
  padding: 100px 0;
  overflow: hidden;
}
.sobre-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
.sobre-foto-wrap {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}
.sobre-foto-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-card);
  background: var(--creme);
}
.sobre-foto-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--dourado);
  border-radius: var(--radius-card);
  transform: translate(14px, 14px);
  opacity: 0.5;
  z-index: -1;
}
.cro-badge {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  background: var(--dourado-claro);
  color: var(--medio);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.sobre-titulo {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 400;
  color: var(--escuro);
  margin-bottom: 8px;
}
.sobre-texto {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--medio);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 20px;
}

.sobre-texto:last-of-type {
  margin-bottom: 32px;
}

.sobre-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 4px 0 20px;
}

.sobre-divider::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--dourado);
  opacity: 0.5;
  flex-shrink: 0;
}

.sobre-divider span {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-style: italic;
  color: var(--dourado);
  opacity: 0.8;
}

.sobre-lista-titulo {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 4px;
  opacity: 0.8;
}

.sobre-lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(201,169,110,0.15);
  margin-top: 8px;
}

.sobre-lista li {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: var(--medio);
  font-weight: 400;
  padding: 12px 0;
  border-bottom: 1px solid rgba(201,169,110,0.15);
  display: flex;
  align-items: center;
  gap: 10px;
}

.sobre-lista li::before {
  content: '✦';
  color: var(--dourado);
  font-size: 10px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .sobre-inner {
    grid-template-columns: 45% 55%;
    gap: 64px;
    align-items: center;
  }
  .sobre-foto-wrap { max-width: 100%; margin: 0; }
}


/* ================================================
   SEPARADORES COM FOTO
   ================================================ */
.separador {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}
@media (min-width: 1024px) {
  .separador { height: 560px; background-attachment: fixed; }
}
/* Separador 1 — foto da doutora */
.sep-01 {
  background-image: url('fotos/trocar.jpeg');
  background-size: cover;
  background-position: center top;
  background-attachment: scroll;
  min-height: 560px;
  height: auto;
}
.sep-01::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26,18,9,0.75) 0%,
    rgba(26,18,9,0.35) 100%
  );
}
.sep-01 .sep-content {
  position: relative;
  z-index: 1;
}

/* Separador 2 — fundo escuro com detalhes dourados */
.sep-02 {
  background: #1A1209;
  min-height: 480px;
  height: auto;
}
.sep-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  will-change: transform;
}
.sep-02::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 18, 9, 0.45);
  z-index: 1;
}
.sep-02 .sep-content {
  position: relative;
  z-index: 2;
}

/* overlay classes — não usadas nos novos separadores mas mantidas por segurança */
.sep-overlay { display: none; }
.sep-overlay-lilas { display: none; }
.sep-content {
  position: relative;
  z-index: 1;
  padding: 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 700px;
}
.sep-content-center {
  width: 100%;
  max-width: 700px;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  padding: 60px 24px;
}
.sep-linha {
  display: block;
  width: 80px; height: 1px;
  background: var(--dourado);
  opacity: 0.8;
  transform-origin: left;
}
.sep-content-center .sep-linha { transform-origin: center; }
.sep-frase {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(26px, 4.5vw, 52px);
  color: var(--branco);
  line-height: 1.25;
  font-weight: 400;
}
.sep-frase-center { text-align: center; }
.btn-sep-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--branco);
  color: var(--dourado-forte);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 40px;
  border-radius: 50px;
  transition: var(--transition);
  margin-top: 8px;
  white-space: nowrap;
}
.btn-sep-cta:hover {
  background: var(--champagne);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}


/* ================================================
   PROCEDIMENTOS — scroll horizontal por scroll vertical
   ================================================ */
.procedimentos-scroll-section {
  position: relative;
  background: var(--champagne);
  padding: 80px 0;
}

.procedimentos-sticky {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.proc-header {
  padding: 0 60px;
  margin-bottom: 40px;
}

.section-titulo {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 400;
  color: var(--escuro);
  line-height: 1.15;
}

.procedimentos-track {
  display: flex;
  gap: 24px;
  padding: 0 60px 40px 60px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.procedimentos-track.active {
  cursor: grabbing;
}
.procedimentos-track::-webkit-scrollbar {
  display: none;
}

.proc-card {
  position: relative;
  flex: 0 0 85vw;
  max-width: 300px;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: #1A1209;
  border: 1px solid rgba(201,169,110,0.15);
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: center;
}

.proc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,169,110,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.proc-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,18,9,0.98) 0%,
    rgba(26,18,9,0.92) 35%,
    rgba(26,18,9,0.5) 60%,
    rgba(26,18,9,0.15) 100%
  );
  z-index: 1;
}

.proc-card:hover {
  transform: scale(1.02);
  border-color: rgba(201,169,110,0.45);
}

.proc-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 32px;
  gap: 0;
  position: relative;
  z-index: 2;
}

.proc-numero {
  display: none;
}

.proc-icone {
  display: none;
}

.proc-nome {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 20px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.proc-linha {
  width: 32px;
  height: 1px;
  background: var(--dourado);
  opacity: 0.6;
  margin-bottom: 20px;
}

.proc-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 32px;
}

.proc-cta {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dourado);
  opacity: 1;
  transition: opacity 0.2s;
}

.proc-card:hover .proc-cta {
  opacity: 1;
}

.proc-progress-bar {
  position: absolute;
  bottom: 32px;
  left: 60px;
  right: 60px;
  height: 1px;
  background: rgba(201,169,110,0.2);
}

.proc-progress-fill {
  height: 100%;
  background: var(--dourado);
  width: 0%;
  transition: width 0.1s linear;
}

.proc-counter {
  position: absolute;
  top: 40px;
  right: 60px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--dourado);
  letter-spacing: 2px;
}

/* Mobile — scroll horizontal nativo */
@media (max-width: 768px) {
  .procedimentos-scroll-section {
    height: auto;
    padding: 60px 0 80px;
  }
  .proc-header { padding: 0 24px; margin-bottom: 32px; }
  .procedimentos-track {
    padding: 0 24px 40px 24px;
    gap: 16px;
  }
  .proc-card { flex: 0 0 85vw; height: 380px; max-width: 320px; }
  .proc-progress-bar { left: 24px; right: 24px; bottom: 24px; }
  .proc-counter { right: 24px; top: 24px; }
}


/* ================================================
   RESULTADOS
   ================================================ */
.resultados {
  position: relative;
  background: var(--creme);
  padding: 100px 0;
  overflow: hidden;
}

.resultados-header {
  padding: 0 20px;
  margin-bottom: 32px;
  text-align: center;
}

.resultado-video-wrap {
  position: relative;
  width: calc(100% - 40px);
  margin: 0 20px 16px;
  border-radius: 16px;
  overflow: hidden;
  height: 60svh;
  min-height: 320px;
  background: #1A1209;
}

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

.resultado-video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px;
  background: linear-gradient(to top, rgba(26,18,9,0.8) 0%, transparent 100%);
}

.resultado-video-tag {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-style: italic;
  color: var(--dourado);
  letter-spacing: 1px;
}

.resultados-masonry {
  columns: 2;
  column-gap: 12px;
  padding: 0 16px;
}

.resultado-item {
  break-inside: avoid;
  margin-bottom: 12px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #1A1209;
}

.resultado-foto-wrap {
  position: relative;
  overflow: hidden;
}

.resultado-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.resultado-item.tall .resultado-img {
  aspect-ratio: 2 / 3;
}

.resultado-proc-tag {
  position: absolute;
  bottom: 8px;
  left: 6px;
  right: 6px;
  font-family: 'Jost', sans-serif;
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  color: var(--dourado);
  background: rgba(26,18,9,0.75);
  padding: 3px 6px;
  border-radius: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  z-index: 3;
  border: 1px solid rgba(201,169,110,0.3);
}

.casos-modal-inner-tag {
  bottom: 16px;
  left: 16px;
  right: auto;
  font-size: 10px;
  padding: 6px 12px;
}

/* REVEAL PANEL */
.reveal-panel {
  position: absolute;
  inset: 0;
  background: var(--champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(0%);
  transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 2;
  border-radius: 0;
}

.reveal-panel span {
  font-size: 18px;
  color: var(--dourado);
  opacity: 0.3;
}

.resultado-item.is-revealed .reveal-panel {
  transform: translateY(-100%);
}


/* ================================================
   COMPARATOR
   ================================================ */
.comparator {
  position: relative;
  overflow: hidden;
  user-select: none;
  border-radius: 8px;
  background: var(--creme);
}
.comp-before {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.comp-after-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  width: 50%;
}
.comp-after {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  display: block;
}
.comp-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--dourado);
  cursor: ew-resize;
  transform: translateX(-50%);
  transition: background 0.2s;
}
.comp-handle:hover { background: var(--dourado-claro); }
.comp-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 36px; height: 36px;
  background: var(--branco);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  font-size: 11px;
  color: var(--dourado);
  font-weight: 700;
  border: 1px solid var(--dourado-claro);
  pointer-events: none;
}
.comp-label {
  position: absolute;
  top: 10px;
  background: rgba(26,18,9,0.5);
  color: var(--branco);
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-body);
  pointer-events: none;
}
.comp-label.left { left: 10px; }
.comp-label.right { right: 10px; background: rgba(212,145,58,0.85); }


/* ================================================
   SELO DE TRANSIÇÃO
   ================================================ */
.section-transition-seal {
  width: 100%;
  position: relative;
  z-index: 20;
  display: flex;
  justify-content: center;
}

.seal-bg {
  position: absolute;
  top: -60px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.98) 0%, rgba(245, 240, 230, 0.92) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 16px 52px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.seal-img {
  width: 85px;
  height: auto;
  object-fit: contain;
}

/* ================================================
   DEPOIMENTOS (REACT LAYOUT)
   ================================================ */
.feedback-section {
  background: var(--branco);
  padding: 100px 0;
  overflow: hidden;
}

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

.feedback-header {
  text-align: center;
  margin-bottom: 64px;
}

.feedback-tag {
  display: inline-block;
  padding: 4px 16px;
  margin-bottom: 16px;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dourado-forte);
  background: rgba(201,169,110,0.1);
  border-radius: 50px;
}

.feedback-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--escuro);
  line-height: 1.15;
  margin-bottom: 16px;
}

.feedback-linha {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--champagne), var(--dourado-forte));
  margin: 0 auto;
  border-radius: 2px;
}

.feedback-split {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
@media (min-width: 768px) {
  .feedback-split {
    gap: 80px;
  }
}

.feedback-img-col {
  width: 38%;
  max-width: 450px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) { .feedback-img-col { width: 50%; } }

.feedback-glow-1 {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120%; height: 120%;
  background: rgba(201,169,110,0.15);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

.feedback-glow-2 {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80%; height: 80%;
  background: rgba(201,169,110,0.1);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
  animation: pulseGlow 4s infinite alternate;
}
@keyframes pulseGlow { 0% { opacity: 0.5; transform: translate(-50%,-50%) scale(1); } 100% { opacity: 1; transform: translate(-50%,-50%) scale(1.1); } }

.feedback-img-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
}

.feedback-img-border {
  position: absolute;
  inset: -6px;
  background: linear-gradient(to top right, var(--champagne), var(--dourado-claro));
  border-radius: 40px;
  filter: blur(4px);
  opacity: 0.6;
  transition: opacity 0.5s ease;
}
.feedback-img-wrap:hover .feedback-img-border { opacity: 1; }

.feedback-img {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 40px;
  border: 6px solid var(--branco);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  transition: transform 0.8s ease;
}
.feedback-img-wrap:hover .feedback-img { transform: scale(1.02); }

.feedback-badge {
  position: absolute;
  bottom: -10px;
  left: -10px;
  background: var(--branco);
  padding: 8px;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--champagne);
  transition: transform 0.3s ease;
  z-index: 10;
}
@media (min-width: 768px) {
  .feedback-badge { left: -20px; bottom: -20px; padding: 16px; border-radius: 20px; gap: 12px; }
}
.feedback-badge:hover { transform: scale(1.05); }

.fb-badge-icon {
  background: var(--dourado-forte);
  padding: 6px;
  border-radius: 8px;
  color: var(--branco);
  width: 24px; height: 24px;
}
@media (min-width: 768px) {
  .fb-badge-icon { padding: 10px; border-radius: 12px; width: 40px; height: 40px; }
}

.fb-badge-text p { margin: 0; line-height: 1.2; }
.fb-top { font-family: 'Jost', sans-serif; font-size: 7px; font-weight: 800; color: var(--escuro); text-transform: uppercase; }
.fb-bot { font-family: 'Jost', sans-serif; font-size: 6px; color: var(--dourado); font-style: italic; font-weight: 500; }
@media (min-width: 768px) {
  .fb-top { font-size: 11px; }
  .fb-bot { font-size: 10px; }
}

.feedback-carousel-col {
  width: 62%;
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) { .feedback-carousel-col { width: 50%; min-height: 480px; } }

.fb-slides-wrapper {
  position: relative;
  width: 100%;
  height: 360px; 
}
@media (min-width: 768px) { .fb-slides-wrapper { height: 480px; } }

.fb-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(30px);
  pointer-events: none;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  align-items: center;
  z-index: 1;
}
.fb-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 2;
}

.fb-card {
  background: var(--branco);
  border-radius: 20px;
  padding: 24px 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  border: 1px solid var(--champagne);
  width: 100%;
  position: relative;
}
@media (min-width: 768px) {
  .fb-card { border-radius: 40px; padding: 40px 32px; }
}

.fb-quote {
  position: absolute;
  top: 12px; left: 12px;
  width: 28px; height: 28px;
  color: rgba(201,169,110,0.15);
}
@media (min-width: 768px) {
  .fb-quote { top: 24px; left: 24px; width: 48px; height: 48px; }
}

.fb-stars {
  color: var(--dourado);
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) { .fb-stars { font-size: 20px; letter-spacing: 2px; margin-bottom: 24px; } }

.fb-text {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--escuro);
  line-height: 1.5;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) { .fb-text { font-size: 16px; line-height: 1.6; margin-bottom: 32px; } }

.fb-author-row {
  border-top: 1px solid var(--champagne);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) { .fb-author-row { padding-top: 24px; gap: 16px; } }

.fb-author-info {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (min-width: 768px) { .fb-author-info { gap: 12px; } }

.fb-heart {
  width: 24px; height: 24px;
  background: rgba(201,169,110,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dourado-forte);
}
.fb-heart svg { width: 12px; height: 12px; }
@media (min-width: 768px) {
  .fb-heart { width: 32px; height: 32px; }
  .fb-heart svg { width: 16px; height: 16px; }
}

.fb-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--escuro);
}
@media (min-width: 768px) { .fb-name { font-size: 18px; } }

.fb-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fb-tag {
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dourado-forte);
  background: rgba(201,169,110,0.1);
  padding: 6px 12px;
  border-radius: 50px;
  border: 1px solid rgba(201,169,110,0.2);
}

.fb-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  position: relative;
  z-index: 10;
}
@media (max-width: 1024px) { .fb-nav { justify-content: center; } }

.fb-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.3);
  background: transparent;
  font-size: 20px;
  line-height: 1;
  color: var(--dourado);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.fb-btn:hover {
  background: var(--dourado-forte);
  color: white;
  border-color: var(--dourado-forte);
}

.fb-dots {
  display: flex;
  gap: 8px;
}
.fb-dot {
  width: 8px; height: 6px;
  background: var(--champagne);
  border-radius: 10px;
  transition: all 0.3s;
  cursor: pointer;
}
.fb-dot.active {
  width: 32px;
  background: var(--dourado-forte);
}


/* ================================================
   CTA FINAL
   ================================================ */
.cta-final {
  position: relative;
  background: linear-gradient(135deg, var(--creme) 0%, var(--champagne) 100%);
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}
.cta-watermark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(500px, 80vw);
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  filter: grayscale(1);
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.cta-linha-ouro {
  display: block;
  width: 120px; height: 1px;
  background: var(--dourado);
  opacity: 0.7;
}
.cta-titulo {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 400;
  color: var(--escuro);
  line-height: 1.2;
  max-width: 600px;
}
.cta-desc {
  font-size: 16px;
  color: var(--medio);
  line-height: 1.7;
  max-width: 480px;
}
.btn-cta-whats {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--dourado-forte);
  color: var(--branco);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  height: 56px;
  padding: 0 48px;
  border-radius: 50px;
  transition: var(--transition);
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.btn-cta-whats:hover {
  background: #BD7A2A;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,145,58,0.35);
}
.cta-instagram {
  font-size: 14px;
  color: var(--medio);
}
.cta-instagram a {
  color: var(--dourado-forte);
  font-weight: 500;
  transition: opacity 0.2s;
}
.cta-instagram a:hover { opacity: 0.75; }


/* ================================================
   RODAPÉ
   ================================================ */
.footer {
  background: var(--escuro);
  padding: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding: 64px 24px 48px;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}
.footer-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 14px;
}
.footer-nome {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--branco);
  margin-bottom: 6px;
}

.footer-nome-logo {
  height: 70px;
  width: auto;
  display: block;
  margin-bottom: 6px;
}
.footer-tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.footer-col-title {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--dourado);
  margin-bottom: 20px;
}
.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--branco); }
.footer-contato { display: flex; flex-direction: column; gap: 14px; }
.footer-contato li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.footer-contato svg { color: var(--dourado); flex-shrink: 0; margin-top: 1px; }
.footer-bottom {
  border-top: 1px solid rgba(201,169,110,0.15);
  padding: 20px 24px;
  text-align: center;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}


/* ================================================
   MODAL
   ================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,18,9,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: var(--branco);
  border-radius: 16px;
  max-width: 560px;
  width: 100%;
  max-height: 90dvh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.95) translateY(16px);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  scrollbar-width: thin;
}
.modal-overlay.open .modal-box {
  transform: scale(1) translateY(0);
}
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(201,169,110,0.3);
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 14px;
  color: var(--medio);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition);
}
.modal-close:hover {
  background: var(--creme);
  color: var(--escuro);
}
.modal-comparator {
  height: 300px;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}
.modal-comparator .comparator {
  height: 100%;
  border-radius: 0;
}
.modal-info {
  padding: 28px 28px 32px;
}
.modal-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--dourado);
  margin-bottom: 8px;
}
.modal-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--escuro);
  margin-bottom: 16px;
  line-height: 1.2;
}
.modal-desc {
  font-size: 15px;
  color: var(--medio);
  line-height: 1.75;
  margin-bottom: 24px;
}
.modal-cta {
  display: block;
  background: var(--dourado-forte);
  color: var(--branco);
  text-align: center;
  padding: 14px 24px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
}
.modal-cta:hover {
  background: #BD7A2A;
  transform: translateY(-1px);
}


/* ================================================
   BOTÃO FLUTUANTE WHATSAPP
   ================================================ */
.whats-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 800;
  transition: var(--transition);
}
.whats-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}
.whats-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--escuro);
  color: var(--branco);
  font-size: 12px;
  font-family: var(--font-body);
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.whats-tooltip::after {
  content: '';
  position: absolute;
  top: 50%; left: 100%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--escuro);
}
.whats-float:hover .whats-tooltip {
  opacity: 1;
}
@media (max-width: 767px) { .whats-tooltip { display: none; } }


/* ================================================
   MODAL CASOS
   ================================================ */
.casos-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.casos-modal.open {
  opacity: 1;
  pointer-events: all;
}

.casos-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,18,9,0.8);
  backdrop-filter: blur(6px);
}

.casos-modal-box {
  position: relative;
  z-index: 1;
  background: var(--champagne);
  width: 100%;
  border-radius: 24px 24px 0 0;
  padding: 28px 0 40px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  max-height: 90svh;
  overflow-y: auto;
}

.casos-modal.open .casos-modal-box {
  transform: translateY(0);
}

.casos-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--medio);
  cursor: pointer;
  padding: 4px 8px;
  z-index: 2;
}

.casos-modal-header {
  padding: 0 24px 20px;
  border-bottom: 1px solid rgba(201,169,110,0.15);
  margin-bottom: 20px;
}

.casos-modal-tag {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 6px;
}

.casos-modal-titulo {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--escuro);
}

.casos-carrossel {
  position: relative;
  overflow: hidden;
  margin: 0 0 16px;
}

.casos-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

.casos-slide {
  flex: 0 0 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
}

.casos-slide img {
  width: 100%;
  height: auto;
  max-height: 65vh;
  object-fit: contain;
  border-radius: 16px;
  display: block;
  margin: 0 auto;
}

.casos-slide-especial {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.casos-slide-especial img {
  width: 100%;
  aspect-ratio: auto;
  height: auto;
  max-height: none;
  object-fit: cover;
  border-radius: 16px;
}

.casos-slide-texto {
  background: var(--champagne);
  border-radius: 16px;
  padding: 20px 24px;
  margin: 16px 0 0;
  border: 1px solid rgba(201,169,110,0.2);
}

.casos-slide-texto p {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: var(--medio);
  line-height: 1.85;
  font-weight: 300;
  white-space: pre-line;
}

.casos-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(26,18,9,0.5);
  color: white;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  line-height: 1;
}

.casos-nav.prev { left: 28px; }
.casos-nav.next { right: 28px; }

.casos-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 24px;
}

.casos-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(201,169,110,0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.casos-dot.active {
  background: var(--dourado);
  width: 20px;
  border-radius: 4px;
}

.casos-modal-footer {
  padding: 0 24px;
}

.casos-btn-agendar {
  display: block;
  text-align: center;
  background: var(--dourado-forte);
  color: white;
  padding: 16px 24px;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.ver-todos-wrap {
  padding: 32px 20px 80px;
  text-align: center;
}

.ver-todos-btn {
  background: none;
  border: 1px solid var(--dourado);
  color: var(--dourado);
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ver-todos-btn:hover {
  background: var(--dourado);
  color: var(--escuro);
}

.todos-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--champagne);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  overflow: hidden;
}

.todos-modal.open {
  transform: translateY(0);
}

.todos-modal-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.todos-modal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 52px 20px 16px;
  border-bottom: 1px solid rgba(201,169,110,0.2);
  flex-shrink: 0;
  background: var(--champagne);
}

.todos-modal-titulo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--escuro);
}

.todos-modal-close {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--medio);
  cursor: pointer;
  padding: 4px 8px;
}

.todos-grid {
  flex: 1;
  overflow-y: auto;
  padding: 20px 16px 40px;
  -webkit-overflow-scrolling: touch;
}

.todos-categoria {
  margin-bottom: 32px;
}

.todos-categoria-titulo {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.todos-categoria-titulo::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(201,169,110,0.2);
}

.todos-fotos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.todos-foto-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #1A1209;
}

.todos-foto-item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.todos-foto-label {
  position: absolute;
  bottom: 6px;
  left: 6px;
  font-family: 'Jost', sans-serif;
  font-size: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  background: rgba(26,18,9,0.65);
  padding: 2px 6px;
  border-radius: 3px;
}

/* ================================================
   UTILITÁRIOS
   ================================================ */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
