/* ══════════════════════════════════════════════════════════════
   STYLE.CSS — Dra. Tayna Muniz | Clínica de Estética Avançada
   ══════════════════════════════════════════════════════════════ */

/* ─── TOKENS ──────────────────────────────────────────────── */
:root {
  /* Paleta — Nova identidade Dra. Tayna */
  --color-gold:        #9f68ae;
  --color-gold-light:  #9B7DA3;
  --color-gold-dark:   #4E3558;
  --color-champagne:   #F2F2F2;
  --color-beige:       #E8E4EC;
  --color-offwhite:    #F9F8FA;
  --color-black:       #140B0E;
  --color-dark:        #1A0F13;
  --color-dark-mid:    #261520;
  --color-text:        #140B0E;
  --color-text-light:  #7A6080;
  --color-border:      rgba(107, 77, 115, 0.25);

  /* Tipografia */
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Montserrat', system-ui, sans-serif;

  /* Espaçamento base */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   2rem;
  --space-lg:   4rem;
  --space-xl:   7rem;
  --space-2xl:  10rem;

  /* Transições */
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Navbar */
  --navbar-h: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  background-color: var(--color-offwhite);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── TIPOGRAFIA ────────────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--color-black);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.section-title--center { text-align: center; }
.section-title--light  { color: var(--color-offwhite); }

.section-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-text-light);
  max-width: 52ch;
  margin: 0 auto 3rem;
  text-align: center;
  line-height: 1.8;
}

.section-header { margin-bottom: 3.5rem; }

/* ─── LAYOUT UTILITÁRIOS ────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 5rem);
}

/* ─── BOTÕES ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.35s var(--ease-smooth);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-smooth);
}
.btn:hover::before { transform: scaleX(1); }

.btn--gold {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: #fff;
}
.btn--gold:hover {
  background: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(201,169,110,0.35);
}

.btn--outline-gold {
  background: transparent;
  border-color: var(--color-gold);
  color: var(--color-gold);
}
.btn--outline-gold:hover {
  background: var(--color-gold);
  color: #fff;
}

.btn--outline-light {
  background: transparent;
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

.btn--lg { padding: 1.1rem 2.5rem; font-size: 0.8rem; }
.btn--sm { padding: 0.6rem 1.4rem; font-size: 0.68rem; }
.btn--full { width: 100%; }

/* ─── CURSOR PERSONALIZADO ──────────────────────────────────── */
.cursor, .cursor-follower {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
.cursor {
  width: 8px; height: 8px;
  background: var(--color-gold);
}
.cursor-follower {
  width: 28px; height: 28px;
  border: 1px solid var(--color-gold);
  background: transparent;
  transition: transform 0.15s var(--ease-smooth), opacity 0.3s;
}
@media (max-width: 768px) {
  .cursor, .cursor-follower { display: none; }
}

/* ─── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--navbar-h);
  transition: background 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth), backdrop-filter 0.4s;
  animation: navFadeIn 1s 0.3s both;
}

.navbar.is-scrolled {
  background: rgba(250,248,245,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--color-border), 0 8px 32px rgba(13,13,13,0.06);
}

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

.navbar__inner {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0 clamp(1.25rem, 4vw, 4rem);
}

.navbar__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
}

.navbar__logo-img {
  height: clamp(35px, 8vw, 42px);
  width: auto;
  display: block;
}

/* Lógica de troca de logo no scroll */
.navbar__logo-img.logo-dark { display: none; }

.navbar.is-scrolled .navbar__logo-img.logo-light { display: none; }
.navbar.is-scrolled .navbar__logo-img.logo-dark { display: block; }

.navbar__links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.navbar__link {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
  position: relative;
}
.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--color-gold);
  transition: width 0.3s var(--ease-smooth);
}
.navbar__link:hover { color: var(--color-gold-light); }
.navbar__link:hover::after { width: 100%; }

.navbar.is-scrolled .navbar__link { color: var(--color-text); }
.navbar.is-scrolled .navbar__link:hover { color: var(--color-gold); }

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}



/* ─── HAMBURGER ──────────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 5px;
}

.hamburger__line {
  display: block;
  width: 100%; height: 1.5px;
  background: rgba(255,255,255,0.9);
  transition: transform 0.3s var(--ease-smooth), opacity 0.3s, background 0.4s;
}
.navbar.is-scrolled .hamburger__line { background: var(--color-black); }

.hamburger.is-active .hamburger__line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-active .hamburger__line:nth-child(2) { opacity: 0; }
.hamburger.is-active .hamburger__line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── MOBILE DRAWER ─────────────────────────────────────────── */
.drawer-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(13,13,13,0.55);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
  backdrop-filter: blur(4px);
}
.drawer-overlay.is-visible { opacity: 1; pointer-events: all; }

.drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(80vw, 340px);
  height: 100%;
  background: var(--color-offwhite);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-smooth);
  box-shadow: -20px 0 60px rgba(13,13,13,0.15);
}
.drawer.is-open { transform: translateX(0); }

.drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.drawer__logo-img {
  height: 35px;
  width: auto;
  display: block;
}

.drawer__close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-text);
  font-size: 1.1rem;
  transition: color 0.3s, transform 0.3s;
}
.drawer__close:hover { color: var(--color-gold); transform: rotate(90deg); }

.drawer__links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.drawer__link {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: color 0.3s, padding-left 0.3s;
}
.drawer__link:hover { color: var(--color-gold); padding-left: 0.5rem; }

.drawer__cta {
  margin-top: 2rem;
  width: 100%;
  justify-content: center;
}

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center; /* Centraliza o container de conteúdo para alinhamento com a navbar */
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
}

.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 12s ease;
  will-change: transform;
}
.hero__img.is-loaded { transform: scale(1); }

.hero__overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(13,13,13,0.65) 0%,
    rgba(13,13,13,0.25) 60%,
    rgba(13,13,13,0.4) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1400px; /* Match com a largura máxima da navbar */
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 4rem); /* Match com o padding da navbar */
  padding-top: var(--navbar-h);
}

.hero__eyebrow {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
  max-width: 680px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
  max-width: 680px;
}

.hero__subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
  max-width: 580px;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
  animation: scrollHintBounce 2.5s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
}

.hero__scroll-text {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

@keyframes scrollHintBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: 0.5; }
}

/* ─── MARQUEE ────────────────────────────────────────────────── */
.marquee-wrapper {
  background: var(--color-black);
  overflow: hidden;
  padding: 1.1rem 0;
  border-top: 1px solid var(--color-dark-mid);
  border-bottom: 1px solid var(--color-dark-mid);
}

.marquee { overflow: hidden; }

.marquee__track {
  display: flex;
  gap: 0;
  animation: marqueeScroll 28s linear infinite;
  width: max-content;
}

.marquee__item {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #fff;
  padding: 0 2.5rem;
  white-space: nowrap;
  opacity: 1;
}

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

/* ─── PILARES ────────────────────────────────────────────────── */
.pilares {
  background: var(--color-offwhite);
  padding: var(--space-xl) 0;
}

.pilares__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.pilares__image-frame {
  position: relative;
  overflow: hidden;
}

.pilares__image-frame::before {
  content: '';
  position: absolute;
  top: -24px; left: -24px;
  width: 100px; height: 100px;
  border-top: 1px solid var(--color-gold);
  border-left: 1px solid var(--color-gold);
  z-index: 2;
}

.pilares__image-frame::after {
  content: '';
  position: absolute;
  bottom: -24px; right: -24px;
  width: 100px; height: 100px;
  border-bottom: 1px solid var(--color-gold);
  border-right: 1px solid var(--color-gold);
  z-index: 2;
}

.pilares__img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  object-position: center;
}

.pilares__image-deco {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(201,169,110,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.pilares__text-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pilares__subtitle {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.pilares__block {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid var(--color-border);
}

.pilares__block:last-of-type { border-bottom: none; }

.pilares__block-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1.25rem;
  margin-top: 0.15rem;
}

.pilares__block-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: 0.5rem;
}

.pilares__block-text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--color-text-light);
}

/* ─── PROTOCOLOS ────────────────────────────────────────────── */
.protocolos {
  padding: var(--space-xl) 0;
  background: var(--color-dark);
}

.protocolos .section-eyebrow { color: var(--color-gold-light); }
.protocolos .section-title   { color: var(--color-offwhite); }
.protocolos .section-subtitle { color: rgba(250,248,245,0.55); }

.protocolos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Swiper override no desktop */
.protocolos__grid.swiper { overflow: visible; }

.protocolo-card {
  background: var(--color-dark-mid);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 520px;
}

.protocolo-card__img-wrap {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.protocolo-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s var(--ease-smooth);
  will-change: transform;
}

.protocolo-card:hover .protocolo-card__img { transform: scale(1.06); }

.protocolo-card__overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.2) 55%, transparent 100%);
  transition: background 0.4s;
}
.protocolo-card:hover .protocolo-card__overlay {
  background: linear-gradient(to top, rgba(13,13,13,0.97) 0%, rgba(13,13,13,0.4) 60%, rgba(13,13,13,0.1) 100%);
}

.protocolo-card__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.75rem;
  z-index: 1;
}

.protocolo-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.5rem;
}

.protocolo-card__desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

/* ─── SOBRE ──────────────────────────────────────────────────── */
.sobre {
  padding: var(--space-xl) 0;
  background: var(--color-champagne);
}

.sobre__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.sobre__bio {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.sobre__credentials {
  display: flex;
  gap: 2.5rem;
  margin: 2rem 0 2.5rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.sobre__cred-item {
  display: flex;
  flex-direction: column;
}

.sobre__cred-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--color-gold);
  line-height: 1;
}

.sobre__cred-label {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  margin-top: 0.25rem;
}

.sobre__image-frame {
  position: relative;
}

.sobre__img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  object-position: top;
  border-radius: 0;
}

.sobre__image-badge {
  position: absolute;
  bottom: 2rem;
  left: 1rem;
  background: var(--color-gold);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 12px 32px rgba(201,169,110,0.3);
}

.sobre__image-badge i { font-size: 1rem; }

/* ─── RESULTADOS ─────────────────────────────────────────────── */
.resultados {
  padding: var(--space-xl) 0;
  background: var(--color-offwhite);
}

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

.resultados__side {
  display: contents; /* No desktop, os filhos participam diretamente do grid pai */
}

.resultado-card {
  position: relative;
  overflow: hidden;
  background: var(--color-dark);
  height: 480px; /* Altura unificada para todos os cards no desktop */
}

.resultado-card__img-wrap {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
}

.resultado-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.resultado-card:hover .resultado-card__img { transform: scale(1.05); }

.resultado-card__overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.9) 0%, transparent 55%);
}

.resultado-card__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.75rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.resultado-card__tag {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.resultado-card__desc {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
}

/* Galeria slider */
.galeria {
  --swiper-navigation-color: var(--color-gold);
  --swiper-pagination-color: var(--color-gold);
}

.galeria__img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.galeria-prev, .galeria-next {
  color: var(--color-gold) !important;
}

.swiper-pagination-bullet { background: var(--color-text-light); }
.swiper-pagination-bullet-active { background: var(--color-gold); }

/* ─── AVALIAÇÕES ─────────────────────────────────────────────── */
.avaliacoes {
  padding: var(--space-xl) 0;
  background: var(--color-dark);
}

.avaliacoes .section-eyebrow  { color: var(--color-gold-light); }
.avaliacoes .section-title    { color: var(--color-offwhite); }
.avaliacoes .section-subtitle { color: rgba(250,248,245,0.5); }

.avaliacoes__swiper {
  --swiper-pagination-color: var(--color-gold);
  padding-bottom: 3rem !important;
}

.avaliacoes__cta {
  text-align: center;
  margin-top: 3rem;
}

.depoimento-card {
  background: var(--color-dark-mid);
  border: 1px solid rgba(201,169,110,0.12);
  padding: 2.5rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.depoimento-card:hover {
  border-color: rgba(201,169,110,0.3);
  box-shadow: 0 20px 60px rgba(13,13,13,0.3);
}

.depoimento-card__stars {
  font-size: 1rem;
  color: var(--color-gold);
  letter-spacing: 0.1em;
}

.depoimento-card__quote {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: normal;
  color: rgba(250,248,245,0.9);
  line-height: 1.75;
  flex: 1;
  position: relative;
}

.depoimento-card__quote::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--color-gold);
  opacity: 0.25;
  position: absolute;
  top: -1.5rem;
  left: -0.5rem;
  line-height: 1;
}

.depoimento-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(201,169,110,0.12);
}

.depoimento-card__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--color-gold);
  flex-shrink: 0;
}

.depoimento-card__name {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--color-offwhite);
}

.depoimento-card__treatment {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-top: 0.15rem;
}

.depoimento-card__google {
  margin-left: auto;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.depoimento-card__google:hover { opacity: 1; }

.depoimento-card__google-icon {
  font-size: 1.4rem;
  color: var(--color-gold);
}

/* Avaliações pagination */
.avaliacoes-pagination { bottom: 0 !important; }

/* ─── EXPERIÊNCIA ────────────────────────────────────────────── */
.experiencia {
  padding: var(--space-xl) 0;
  background: var(--color-offwhite);
}

.experiencia__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.experiencia__item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.experiencia__img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
  display: block;
}

.experiencia__item:hover .experiencia__img { transform: scale(1.05); }

.experiencia__img-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  transition: background 0.4s;
}
.experiencia__item:hover .experiencia__img-overlay {
  background: linear-gradient(to top, rgba(13,13,13,0.85) 0%, rgba(13,13,13,0.1) 70%);
}

.experiencia__img-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold-light);
}

.experiencia__cta { text-align: center; }

/* ─── CONTATO ────────────────────────────────────────────────── */
.contato {
  padding: var(--space-xl) 0;
  background: var(--color-champagne);
}

.contato__image-col {
  width: 100%;
}
.contato__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: stretch;
}

.contato__intro {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--color-text-light);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}



.contato__info-legal {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.contato__cnpj {
  font-size: 0.7rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* Coluna info */
/* Slider do Consultório */
.contato__clinic-slider {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--color-dark-mid);
}

.contato__clinic-slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.contato__clinic-slide {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.contato__clinic-slide.active {
  opacity: 1;
}

.contato__slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 10;
}

.contato__slider-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--color-gold);
}

.contato__info-details {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contato__info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contato__info-icon {
  font-size: 1.25rem;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.contato__info-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.3rem;
}

.contato__info-text {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--color-text);
}

.contato__info-link {
  font-size: 0.88rem;
  color: var(--color-text);
  transition: color 0.3s;
}
.contato__info-link:hover { color: var(--color-gold); }

.contato__social {
  display: flex;
  gap: 1rem;
  padding-top: 0.5rem;
}

.contato__social-link {
  width: 42px; height: 42px;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  font-size: 1.1rem;
  transition: all 0.3s var(--ease-smooth);
}

.contato__social-link:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(201,169,110,0.08);
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--color-black);
  color: rgba(250,248,245,0.65);
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem clamp(1.25rem, 5vw, 5rem) 3rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 4rem;
}

.footer__logo-img {
  height: 50px;
  width: auto;
  display: block;
  margin-bottom: 1.25rem;
}

.footer__tagline {
  font-size: 0.8rem;
  color: rgba(250,248,245,0.45);
  margin-bottom: 1.75rem;
  font-style: italic;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(201,169,110,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250,248,245,0.5);
  font-size: 1rem;
  transition: all 0.3s;
}

.footer__social-link:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__nav-title {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.footer__nav-link {
  font-size: 0.82rem;
  color: rgba(250,248,245,0.55);
  transition: color 0.3s;
}
.footer__nav-link:hover { color: var(--color-gold-light); }

.footer__cta-text {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(250,248,245,0.5);
  margin-bottom: 1.5rem;
}

.footer__bottom {
  border-top: 1px solid rgba(201,169,110,0.1);
  padding: 1.75rem clamp(1.25rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: center;
}

.footer__copyright, .footer__disclaimer {
  font-size: 0.68rem;
  color: rgba(250,248,245,0.3);
  letter-spacing: 0.05em;
}

/* ─── PARALLAX ───────────────────────────────────────────────── */
.parallax-img {
  will-change: transform;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVIDADE
   ══════════════════════════════════════════════════════════════ */

/* ─── TABLET: 1024px ─────────────────────────────────────────── */
@media (max-width: 1024px) {

  .navbar__links { display: none; }
  .hamburger { display: flex; }
  .navbar__cta { display: none; }

  .pilares__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .pilares__img { height: 480px; }

  .protocolos__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .protocolos__grid.swiper .swiper-wrapper {
    display: flex;
  }

  .protocolo-card { height: 440px; }

  .sobre__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .sobre__image-col { order: -1; }
  .sobre__img { height: 420px; }

  .sobre__image-badge { left: 1rem; bottom: 1rem; }

  .resultados__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .resultados__side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .resultado-card { height: 360px; }
  .resultados__side .resultado-card { height: 220px; }

  .experiencia__grid {
    grid-template-columns: 1fr 1fr;
  }

  .contato__inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .contato__clinic-slider {
    height: 350px;
    min-height: unset;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer__cta-col {
    grid-column: 1 / -1;
  }
}

/* ─── MOBILE: 768px ─────────────────────────────────────────── */
@media (max-width: 768px) {

  :root { --navbar-h: 68px; }

  /* ── Centralizar eyebrow e section-header globalmente ── */
  .section-header,
  .section-eyebrow { text-align: center; }

  .navbar__logo-text { font-size: 0.95rem; }
  .navbar__logo-sub  { display: none; }

  /* ── Travar scroll horizontal ── */
  body, main { overflow-x: hidden; }

  .hero {
    min-height: 100svh;
    justify-content: center;
  }

  .hero__overlay { display: none; }

  .hero__content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1.5rem;
    padding-top: calc(var(--navbar-h) + 40vh);
    max-width: 100%;
  }

  .hero__title {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .hero__actions {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  .hero__actions .btn { width: 100%; }

  /* ── Pilares: centralizar texto ── */
  .pilares__image-frame::before,
  .pilares__image-frame::after { display: none; }

  .pilares__img { height: 320px; }

  .pilares__text-col {
    text-align: center;
    align-items: center;
  }

  .pilares__subtitle { font-size: 0.95rem; }

  .pilares__block {
    text-align: left;
    align-items: flex-start;
  }

  /* ── Sobre: centralizar texto ── */
  .sobre__text-col {
    text-align: center;
    align-items: center;
  }

  .sobre__credentials {
    gap: 1.5rem;
    justify-content: center;
  }

  .sobre__cred-item { align-items: center; }
  .sobre__cred-num { font-size: 1.6rem; }

  .sobre__image-badge {
    left: 1rem;
    bottom: 1rem;
    padding: 0.6rem 1rem;
  }

  /* ── Resultados: centralizar header ── */
  .resultados .section-header { text-align: center; }

  .resultados__grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
  }

  .resultados__side {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .resultado-card,
  .resultados__side .resultado-card { height: 420px; }

  .galeria .swiper-slide {
    position: relative;
    padding-top: 125%; /* Força 4:5 */
    height: 0 !important;
    overflow: hidden;
  }
  .galeria__img {
    position: absolute !important;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  /* ── Experiência ── */
  .experiencia__grid {
    grid-template-columns: 1fr;
  }
  .experiencia__img { height: 260px; }

  /* ── Contato: centralizar ── */
  .contato__info-col {
    text-align: center;
  }
  
  .contato__info-item {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .contato__clinic-slider {
    position: relative;
    width: 100%;
    padding-top: 125%; /* Força 4:5 na marra */
    height: 0;
    min-height: unset;
    overflow: hidden;
  }
  .contato__clinic-slides {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
  }
  .contato__clinic-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0; /* Garante invisibilidade dos não-ativos */
  }
  .contato__clinic-slide.active {
    opacity: 1; /* Apenas o ativo aparece */
  }

  .contato__info-legal { text-align: center; }

  .contato__social { justify-content: center; }

  /* ── Footer: centralizar ── */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 3.5rem;
    text-align: center;
  }

  .footer__brand { display: flex; flex-direction: column; align-items: center; }
  .footer__social { justify-content: center; }
  .footer__nav { align-items: center; }
  .footer__cta-col { display: flex; flex-direction: column; align-items: center; }

  .footer__bottom {
    flex-direction: column;
    gap: 0.25rem;
  }
}

/* ─── MOBILE PEQUENO: 480px ─────────────────────────────────── */
@media (max-width: 480px) {

  .hero__title { font-size: clamp(1.9rem, 9vw, 2.8rem); }
  .section-title { font-size: clamp(1.7rem, 7vw, 2.5rem); }

  .hero__scroll-hint { display: none; }

  .marquee__item { padding: 0 1.75rem; }

  .sobre__credentials {
    flex-wrap: wrap;
    gap: 1.25rem 2rem;
  }

  .pilares__block { flex-direction: column; gap: 0.75rem; }
  .pilares__block-icon { width: 36px; height: 36px; }

  .protocolo-card { height: 380px; }
}

/* ─── SWIPER ESPECÍFICO PROTOCOLOS MOBILE ───────────────────── */
@media (max-width: 1024px) {
  #protocolosSwiper {
    overflow: hidden;
    padding-bottom: 3rem !important;
  }

  #protocolosPagination {
    bottom: 0 !important;
  }
}

/* ─── SWIPER AVALIAÇÕES ──────────────────────────────────────── */
@media (max-width: 768px) {
  .avaliacoes__swiper .swiper-slide {
    height: auto;
  }
}
