/* ============================================================
   CLINIC-V3 — STYLES.CSS — Aurora Estética
   Dark luxury theme · Purple + Gold · Outfit + Cormorant
   ============================================================ */

:root {
  --primary: #7c3aed;
  --primary-dark: #6d28d9;
  --primary-light: #ede9fe;
  --primary-rgb: 124, 58, 237;
  --gold: #d4a853;
  --gold-dark: #b8922f;
  --gold-light: #fef3c7;
  --gold-rgb: 212, 168, 83;

  --dark-900: #0a0a0f;
  --dark-800: #12121a;
  --dark-700: #1a1a26;
  --dark-600: #24243a;
  --dark-500: #2e2e48;
  --dark-400: #4a4a6a;
  --dark-300: #7a7a9a;
  --dark-200: #a0a0c0;
  --dark-100: #d0d0e0;

  --white: #ffffff;
  --canvas: var(--dark-900);
  --canvas-alt: var(--dark-800);
  --ink: var(--dark-100);
  --ink-soft: var(--dark-200);
  --muted: var(--dark-300);
  --border: var(--dark-600);

  --font-main: 'Outfit', system-ui, sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;

  --fs-xs: clamp(0.7rem, 0.65rem + 0.25vw, 0.78rem);
  --fs-sm: clamp(0.82rem, 0.76rem + 0.3vw, 0.9rem);
  --fs-base: clamp(0.92rem, 0.86rem + 0.3vw, 1rem);
  --fs-md: clamp(1rem, 0.9rem + 0.5vw, 1.15rem);
  --fs-lg: clamp(1.15rem, 1rem + 0.75vw, 1.4rem);
  --fs-xl: clamp(1.4rem, 1.1rem + 1.5vw, 2rem);
  --fs-2xl: clamp(1.8rem, 1.3rem + 2.5vw, 2.8rem);
  --fs-3xl: clamp(2.2rem, 1.5rem + 3.5vw, 3.6rem);
  --fs-4xl: clamp(2.8rem, 1.8rem + 5vw, 4.8rem);

  --section-py: clamp(60px, 8vw, 120px);
  --container-max: 1200px;
  --container-px: clamp(16px, 4vw, 32px);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.6);
  --shadow-gold: 0 4px 20px rgba(var(--gold-rgb), 0.25);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.35s;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-preloader: 500;
}

/* RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; overflow-x: hidden; }
body {
  font-family: var(--font-main); font-size: var(--fs-base);
  color: var(--ink); background: var(--canvas); line-height: 1.7;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--duration) var(--ease); }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit; }
input, textarea, select {
  font: inherit; color: var(--ink); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 13px 16px;
  background: var(--dark-700); width: 100%;
  transition: border-color var(--duration), box-shadow var(--duration);
}
input:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(var(--gold-rgb), 0.15);
}
input::placeholder, textarea::placeholder { color: var(--dark-400); }
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237a7a9a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
::selection { background: rgba(var(--gold-rgb), 0.2); }

/* UTILITIES */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-px); }
.kicker {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: var(--fs-xs); font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); background: rgba(var(--gold-rgb), 0.1);
  padding: 6px 16px; border-radius: var(--radius-full); margin-bottom: 16px;
  border: 1px solid rgba(var(--gold-rgb), 0.15);
}
.kicker--gold { color: var(--gold); background: rgba(var(--gold-rgb), 0.15); }
.section-title {
  font-family: var(--font-display); font-size: var(--fs-3xl); font-weight: 600;
  line-height: 1.15; letter-spacing: -0.02em; color: var(--white); margin-bottom: 16px;
}
.section-title--light { color: var(--white); }
.section-lead { font-size: var(--fs-md); color: var(--muted); max-width: 600px; line-height: 1.8; }
.section-lead--light { color: rgba(255,255,255,0.7); }
.section-header { margin-bottom: 48px; }
.section-header--center { text-align: center; }
.section-header--center .section-lead { margin: 0 auto; }
.text-gold {
  background: linear-gradient(135deg, var(--gold), #e8c96d);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: var(--fs-sm); border-radius: var(--radius-full);
  padding: 12px 28px; transition: all var(--duration) var(--ease);
  border: 2px solid transparent; white-space: nowrap; cursor: pointer;
}
.btn .material-icons { font-size: 18px; }
.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark-900); border-color: transparent;
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(var(--gold-rgb), 0.35); }
.btn--outline-light { border-color: rgba(255,255,255,0.3); color: var(--white); }
.btn--outline-light:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }
.btn--sm { padding: 8px 20px; font-size: var(--fs-xs); }
.btn--lg { padding: 16px 36px; font-size: var(--fs-base); }
.btn--block { width: 100%; }

/* PRELOADER */
.preloader {
  position: fixed; inset: 0; z-index: var(--z-preloader);
  background: var(--dark-900); display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
.preloader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__inner { text-align: center; }
.preloader__diamond {
  width: 40px; height: 40px; margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--gold), #e8c96d);
  transform: rotate(45deg);
  animation: diamondPulse 1.2s ease-in-out infinite;
}
@keyframes diamondPulse {
  0%, 100% { transform: rotate(45deg) scale(1); opacity: 1; }
  50% { transform: rotate(45deg) scale(1.15); opacity: 0.7; }
}
.preloader__text {
  font-family: var(--font-display); font-size: var(--fs-lg);
  color: var(--gold); letter-spacing: 0.15em; font-weight: 500;
}

/* SCROLL PROGRESS */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 100%;
  z-index: calc(var(--z-sticky) + 1);
  background: linear-gradient(90deg, var(--primary), var(--gold));
  transform-origin: left; transform: scaleX(0);
}

/* NAVBAR */
.navbar {
  position: sticky; top: 0; z-index: var(--z-sticky);
  background: rgba(10, 10, 15, 0.85); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: box-shadow var(--duration);
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.5); }
.navbar__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }
.navbar__brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: var(--fs-lg);
  color: var(--white); letter-spacing: 0.02em;
}
.navbar__brand strong { font-weight: 700; }
.navbar__brand-diamond { color: var(--gold); font-size: 18px; }
.navbar__list { display: flex; align-items: center; gap: 4px; }
.navbar__link {
  padding: 8px 14px; font-size: var(--fs-sm); font-weight: 500;
  color: var(--dark-200); border-radius: var(--radius-md);
  transition: color var(--duration), background var(--duration);
}
.navbar__link:hover, .navbar__link.active { color: var(--gold); background: rgba(var(--gold-rgb), 0.08); }
.navbar__actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.navbar__burger { display: none; flex-direction: column; gap: 5px; width: 26px; }
.navbar__burger span { display: block; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--duration); }
.navbar__burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__burger.active span:nth-child(2) { opacity: 0; }
.navbar__burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO — CINEMATIC */
.hero {
  position: relative; min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg-img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.35) saturate(0.8); }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,15,0.3), rgba(10,10,15,0.7) 60%, var(--dark-900));
}
.hero__content { position: relative; z-index: 1; max-width: 800px; padding: 120px 0 80px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(var(--gold-rgb), 0.12); border: 1px solid rgba(var(--gold-rgb), 0.2);
  color: var(--gold); font-size: var(--fs-xs); font-weight: 700;
  padding: 8px 20px; border-radius: var(--radius-full); margin-bottom: 28px;
}
.hero__badge .material-icons { font-size: 16px; }
.hero__title {
  font-family: var(--font-display); font-size: var(--fs-4xl); font-weight: 600;
  line-height: 1.08; color: var(--white); margin-bottom: 20px; letter-spacing: -0.02em;
}
.hero__title-gold {
  background: linear-gradient(135deg, var(--gold), #e8c96d, var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero__lead { font-size: var(--fs-md); color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto 32px; line-height: 1.8; }
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.hero__stats {
  display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08);
}
.hero__stat { text-align: center; }
.hero__stat strong { display: block; font-size: var(--fs-xl); font-weight: 900; color: var(--gold); letter-spacing: -0.03em; }
.hero__stat span { font-size: var(--fs-xs); color: rgba(255,255,255,0.5); }
.hero__stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }
.hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.4); animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* PHILOSOPHY */
.philosophy { padding: 56px 0; background: var(--dark-800); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.philosophy__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.philosophy__card {
  text-align: center; padding: 32px 20px; border-radius: var(--radius-xl);
  border: 1px solid transparent; transition: all var(--duration);
}
.philosophy__card:hover { border-color: var(--border); background: var(--dark-700); transform: translateY(-4px); }
.philosophy__card .material-icons { font-size: 32px; color: var(--gold); margin-bottom: 14px; }
.philosophy__card h3 { font-size: var(--fs-base); font-weight: 800; color: var(--white); margin-bottom: 8px; }
.philosophy__card p { font-size: var(--fs-sm); color: var(--muted); line-height: 1.6; }

/* TREATMENTS */
.treatments { padding: var(--section-py) 0; }
.treatments__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.treat-card {
  display: grid; grid-template-columns: 0.45fr 0.55fr; background: var(--dark-800);
  border: 1px solid var(--border); border-radius: var(--radius-2xl);
  overflow: hidden; transition: all var(--duration);
}
.treat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(var(--gold-rgb), 0.15); }
.treat-card__img { position: relative; overflow: hidden; }
.treat-card__img img { width: 100%; height: 100%; object-fit: cover; min-height: 340px; transition: transform 0.6s var(--ease); }
.treat-card:hover .treat-card__img img { transform: scale(1.05); }
.treat-card__tag {
  position: absolute; top: 16px; left: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark-900); font-size: 10px; font-weight: 800;
  padding: 5px 12px; border-radius: var(--radius-full); letter-spacing: 0.05em; text-transform: uppercase;
}
.treat-card__body { padding: 32px; display: flex; flex-direction: column; justify-content: center; }
.treat-card__body h3 { font-family: var(--font-display); font-size: var(--fs-xl); font-weight: 600; color: var(--white); margin-bottom: 10px; }
.treat-card__body p { font-size: var(--fs-sm); color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.treat-card__body ul { display: grid; gap: 6px; margin-bottom: 20px; }
.treat-card__body li { display: flex; align-items: center; gap: 8px; font-size: var(--fs-xs); color: var(--ink-soft); font-weight: 500; }
.treat-card__body li .material-icons { font-size: 16px; color: var(--gold); }
.treat-card__footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--border); margin-top: auto; }
.treat-card__footer span { font-size: var(--fs-sm); color: var(--muted); }
.treat-card__footer strong { font-size: var(--fs-lg); font-weight: 900; color: var(--gold); }
.treat-card__link { font-size: var(--fs-xs); font-weight: 700; color: var(--gold); transition: letter-spacing var(--duration); }
.treat-card__link:hover { letter-spacing: 0.03em; }

/* RESULTS / BEFORE & AFTER */
.results { padding: var(--section-py) 0; background: var(--dark-800); }
.result-card { background: var(--dark-700); border: 1px solid var(--border); border-radius: var(--radius-2xl); overflow: hidden; }
.result-card__images { display: grid; grid-template-columns: 1fr 1fr; }
.result-card__before, .result-card__after { position: relative; overflow: hidden; }
.result-card__before img, .result-card__after img { width: 100%; height: 320px; object-fit: cover; }
.result-card__label {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(0,0,0,0.7); color: var(--white);
  font-size: 10px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: var(--radius-full);
}
.result-card__info { padding: 24px; }
.result-card__info h4 { font-family: var(--font-display); font-size: var(--fs-lg); color: var(--white); margin-bottom: 6px; }
.result-card__info p { font-size: var(--fs-sm); color: var(--muted); margin-bottom: 8px; }
.result-card__meta { font-size: var(--fs-xs); color: var(--dark-400); font-weight: 600; }
.results__nav { display: flex; justify-content: center; gap: 12px; margin-top: 28px; }
.results__nav-btn {
  display: flex; align-items: center; justify-content: center; width: 46px; height: 46px;
  border-radius: 50%; border: 1px solid var(--border); color: var(--ink);
  transition: all var(--duration);
}
.results__nav-btn:hover { background: var(--gold); color: var(--dark-900); border-color: var(--gold); }

/* TEAM */
.team { padding: var(--section-py) 0; }
.team__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.doctor-card {
  background: var(--dark-800); border: 1px solid var(--border);
  border-radius: var(--radius-2xl); overflow: hidden; transition: all var(--duration);
}
.doctor-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(var(--gold-rgb), 0.15); }
.doctor-card__img { height: 300px; overflow: hidden; }
.doctor-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.doctor-card:hover .doctor-card__img img { transform: scale(1.05); }
.doctor-card__body { padding: 24px; }
.doctor-card__body h4 { font-family: var(--font-display); font-size: var(--fs-lg); color: var(--white); margin-bottom: 4px; }
.doctor-card__role { display: block; font-size: var(--fs-xs); color: var(--gold); font-weight: 600; margin-bottom: 10px; }
.doctor-card__body p { font-size: var(--fs-sm); color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.doctor-card__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.doctor-card__tags span {
  font-size: 10px; font-weight: 700; color: var(--dark-200);
  padding: 4px 10px; border: 1px solid var(--border); border-radius: var(--radius-full);
}

/* EXPERIENCE */
.experience { position: relative; padding: var(--section-py) 0; overflow: hidden; }
.experience__bg { position: absolute; inset: 0; z-index: 0; }
.experience__bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.25) saturate(0.6); }
.experience__overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(10,10,15,0.9), rgba(10,10,15,0.6)); }
.experience__content { position: relative; z-index: 1; }
.experience__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.exp-card {
  padding: 32px; border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.03); backdrop-filter: blur(10px);
  transition: all var(--duration);
}
.exp-card:hover { border-color: rgba(var(--gold-rgb), 0.2); background: rgba(255,255,255,0.06); transform: translateY(-4px); }
.exp-card__number { font-size: var(--fs-3xl); font-weight: 900; color: rgba(var(--gold-rgb), 0.2); line-height: 1; margin-bottom: 14px; display: block; }
.exp-card h4 { font-family: var(--font-display); font-size: var(--fs-lg); color: var(--white); margin-bottom: 8px; }
.exp-card p { font-size: var(--fs-sm); color: rgba(255,255,255,0.6); line-height: 1.7; }

/* TESTIMONIALS */
.testimonials { padding: var(--section-py) 0; background: var(--dark-800); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card {
  padding: 28px; border-radius: var(--radius-xl); border: 1px solid var(--border);
  background: var(--dark-700); transition: all var(--duration);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testi-card--accent {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-color: transparent;
}
.testi-card--accent blockquote { color: rgba(255,255,255,0.9); }
.testi-card--accent .testi-card__author span { color: rgba(255,255,255,0.6); }
.testi-card__stars { color: var(--gold); font-size: var(--fs-sm); letter-spacing: 2px; margin-bottom: 14px; }
.testi-card blockquote { font-size: var(--fs-sm); color: var(--ink-soft); line-height: 1.7; font-style: italic; margin-bottom: 18px; }
.testi-card__author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border); }
.testi-card--accent .testi-card__author { border-top-color: rgba(255,255,255,0.12); }
.testi-card__author img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.testi-card__author strong { display: block; font-size: var(--fs-sm); font-weight: 800; color: var(--white); }
.testi-card__author span { font-size: var(--fs-xs); color: var(--muted); }

/* CTA */
.cta {
  position: relative; padding: var(--section-py) 0; text-align: center; overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark), var(--dark-900) 50%, rgba(var(--gold-rgb), 0.15));
}
.cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

/* FAQ */
.faq { padding: var(--section-py) 0; }
.faq__layout { display: grid; grid-template-columns: 0.4fr 0.6fr; gap: 56px; align-items: start; }
.faq__list { display: grid; gap: 12px; }
.faq__item {
  background: var(--dark-800); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; transition: all var(--duration);
}
.faq__item[open] { border-color: rgba(var(--gold-rgb), 0.2); box-shadow: var(--shadow-md); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 20px 24px; cursor: pointer; font-size: var(--fs-base); font-weight: 700;
  color: var(--white); list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q .material-icons { color: var(--gold); font-size: 22px; transition: transform var(--duration); flex-shrink: 0; }
.faq__item[open] .faq__q .material-icons { transform: rotate(180deg); }
.faq__a { padding: 0 24px 20px; }
.faq__a p { font-size: var(--fs-sm); color: var(--muted); line-height: 1.8; }

/* CONTACT */
.contact { padding: var(--section-py) 0; background: var(--dark-800); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact__form-card {
  padding: 36px; border-radius: var(--radius-2xl);
  background: var(--dark-700); border: 1px solid var(--border);
}
.contact__form-card h3 { font-family: var(--font-display); font-size: var(--fs-xl); color: var(--white); margin-bottom: 8px; }
.contact__form-card > p { font-size: var(--fs-sm); color: var(--muted); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: var(--fs-xs); font-weight: 700; margin-bottom: 5px; color: var(--ink-soft); }
.form-group--checkbox { display: flex; align-items: flex-start; gap: 8px; }
.form-group--checkbox input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--gold); }
.form-group--checkbox label { font-size: var(--fs-xs); color: var(--muted); margin-bottom: 0; }
.form-group--checkbox a { color: var(--gold); font-weight: 600; }

.contact__info { display: grid; gap: 16px; }
.contact__detail-card {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 20px; background: var(--dark-700); border: 1px solid var(--border);
  border-radius: var(--radius-lg); transition: all var(--duration);
}
.contact__detail-card:hover { border-color: rgba(var(--gold-rgb), 0.15); }
.contact__detail-card .material-icons { font-size: 22px; color: var(--gold); margin-top: 2px; }
.contact__detail-card strong { display: block; font-size: var(--fs-sm); font-weight: 800; color: var(--white); margin-bottom: 2px; }
.contact__detail-card p { font-size: var(--fs-xs); color: var(--muted); }
.contact__detail-card a { color: var(--gold); font-weight: 600; }
.contact__map { border-radius: var(--radius-xl); overflow: hidden; margin-top: 8px; }

/* FOOTER */
.footer { background: var(--dark-900); color: var(--dark-300); padding: 56px 0 0; border-top: 1px solid var(--border); }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.footer__logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: var(--fs-lg); color: var(--white); margin-bottom: 12px; }
.footer__logo-diamond { color: var(--gold); font-size: 16px; }
.footer__logo strong { font-weight: 700; }
.footer__brand p { font-size: var(--fs-sm); line-height: 1.7; color: var(--dark-400); margin-bottom: 16px; }
.footer__social { display: flex; gap: 8px; }
.footer__social a {
  display: flex; align-items: center; justify-content: center; width: 34px; height: 34px;
  border-radius: 50%; background: rgba(255,255,255,0.04); color: var(--dark-400);
  transition: all var(--duration);
}
.footer__social a:hover { background: var(--gold); color: var(--dark-900); }
.footer__social a .material-icons { font-size: 16px; }
.footer__links h5 { font-size: var(--fs-sm); font-weight: 800; color: var(--white); margin-bottom: 14px; }
.footer__links a { display: block; font-size: var(--fs-sm); color: var(--dark-400); padding: 4px 0; transition: color var(--duration), padding-left var(--duration); }
.footer__links a:hover { color: var(--gold); padding-left: 6px; }
.footer__newsletter h5 { font-size: var(--fs-sm); font-weight: 800; color: var(--white); margin-bottom: 8px; }
.footer__newsletter p { font-size: var(--fs-xs); color: var(--dark-400); margin-bottom: 12px; line-height: 1.5; }
.footer__nl-form { display: flex; gap: 8px; }
.footer__nl-form input { flex: 1; background: var(--dark-700); border-color: var(--border); color: var(--white); padding: 10px 14px; font-size: var(--fs-sm); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; font-size: var(--fs-xs); color: var(--dark-400); flex-wrap: wrap; gap: 10px; }
.footer__bottom-links { display: flex; gap: 18px; }
.footer__bottom-links a { color: var(--dark-400); transition: color var(--duration); }
.footer__bottom-links a:hover { color: var(--gold); }

/* BACK TO TOP */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px; width: 46px; height: 46px;
  border-radius: 50%; background: var(--gold); color: var(--dark-900);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-gold); z-index: var(--z-overlay);
  opacity: 0; visibility: hidden; transform: translateY(16px);
  transition: all var(--duration);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(var(--gold-rgb), 0.4); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero__content { padding: 100px 0 60px; }
  .philosophy__grid { grid-template-columns: repeat(2, 1fr); }
  .treatments__grid { grid-template-columns: 1fr; }
  .treat-card { grid-template-columns: 0.4fr 0.6fr; }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .experience__grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .faq__layout { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .navbar__menu {
    position: fixed; inset: 0; width: 100vw; height: 100dvh; background: var(--dark-900); z-index: var(--z-overlay);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.4s var(--ease), visibility 0s linear 0.4s;
  }
  .navbar__menu.open { opacity: 1; visibility: visible; pointer-events: auto; transition: opacity 0.4s var(--ease); }
  .navbar__list { flex-direction: column; gap: 8px; }
  .navbar__link { font-size: var(--fs-lg); padding: 12px 24px; }
  .navbar__burger { display: flex; position: relative; z-index: calc(var(--z-overlay) + 1); }
}

@media (max-width: 768px) {
  .treat-card { grid-template-columns: 1fr; }
  .treat-card__img img { min-height: 240px; max-height: 280px; }
  .result-card__before img, .result-card__after img { height: 240px; }
  .hero__stats { gap: 16px; }
  .hero__stat-divider { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: 1fr; }
  .section-title { font-size: var(--fs-2xl); }
  .section-lead { font-size: var(--fs-sm); }
  .treat-card__body { padding: 24px; }
  .treat-card__body h3 { font-size: var(--fs-lg); }
  .faq__q { padding: 16px 18px; font-size: var(--fs-sm); }
  .faq__a { padding: 0 18px 16px; }
  .testi-card { padding: 22px; }
  .contact__form-card { padding: 28px; }
  .contact__detail-card { padding: 16px; }
  .result-card__info { padding: 18px; }
  .doctor-card__img { height: 240px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: var(--fs-2xl); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .philosophy__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .cta__actions { flex-direction: column; }
  .cta__actions .btn { width: 100%; }
  .hero__content { padding: 80px 0 60px; }
  .hero__stats { flex-direction: column; gap: 12px; }
  .hero__stat { display: flex; align-items: center; gap: 8px; }
  .hero__stat strong { font-size: var(--fs-lg); }
  .philosophy__card { padding: 24px 16px; }
  .exp-card { padding: 24px; }
  .contact__map iframe { height: 200px; }
  .result-card__images { grid-template-columns: 1fr; }
  .result-card__before img, .result-card__after img { height: 200px; }
}

@media print {
  .preloader, .scroll-progress, .navbar, .back-to-top, .hero__bg { display: none !important; }
  body { color: #000; background: #fff; }
  .section-title, .hero__title { color: #000; }
  .text-gold { -webkit-text-fill-color: initial; color: #7c3aed; }
}
