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

/* ===== CSS VARIABLES ===== */
:root {
  --color-bg-dark:       #0d0d0d;
  --color-bg-dark-2:     #1a1a1a;
  --color-bg-light:      #ffffff;
  --color-bg-off-white:  #f7f5f0;
  --color-gold:          #c9a84c;
  --color-gold-light:    #e2c97e;
  --color-gold-dark:     #a07832;
  --color-text-on-dark:  #f5f0e8;
  --color-text-muted:    #999890;
  --color-text-on-light: #1a1a1a;
  --color-border-gold:   rgba(201, 168, 76, 0.3);
  --color-border-light:  rgba(255, 255, 255, 0.1);
  --color-border-dark:   rgba(0, 0, 0, 0.1);
  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Josefin Sans', sans-serif;
  --space-xs:   8px;
  --space-sm:   16px;
  --space-md:   32px;
  --space-lg:   64px;
  --space-xl:   96px;
  --space-2xl:  128px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-text-on-dark);
  background: var(--color-bg-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--space-md); }
.section { padding: var(--space-xl) var(--space-md); }
.section--dark { background: var(--color-bg-dark); color: var(--color-text-on-dark); }
.section--light { background: var(--color-bg-off-white); color: var(--color-text-on-light); }
.section--off-white { background: #ffffff; color: var(--color-text-on-light); }

/* Typography */
.text-display-xl  { font-family: var(--font-display); font-size: clamp(42px, 6vw, 72px); font-weight: 300; line-height: 1.1; }
.text-display-lg  { font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px); font-weight: 300; line-height: 1.2; }
.text-display-md  { font-family: var(--font-display); font-size: clamp(24px, 3vw, 38px); font-weight: 400; line-height: 1.3; }
.text-display-italic { font-style: italic; color: var(--color-gold); }
.text-body-lg  { font-family: var(--font-body); font-size: 17px; font-weight: 300; line-height: 1.8; }
.text-body-md  { font-family: var(--font-body); font-size: 15px; font-weight: 300; line-height: 1.75; }
.text-body-sm  { font-family: var(--font-body); font-size: 13px; font-weight: 400; line-height: 1.6; }
.text-label    { font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; }
.text-nav      { font-family: var(--font-body); font-size: 13px; font-weight: 400; letter-spacing: 1px; }

/* Gold divider */
.gold-divider { width: 48px; height: 1px; background: var(--color-gold); margin: 16px 0; }

/* Buttons */
.btn-primary {
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--color-bg-dark); background: var(--color-gold);
  padding: 14px 28px; border: none; border-radius: 2px;
  cursor: pointer; transition: background 0.3s ease, transform 0.2s ease;
  display: inline-block; text-align: center;
}
.btn-primary:hover { background: var(--color-gold-light); transform: translateY(-1px); }
.btn-outline {
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--color-gold); background: transparent;
  padding: 12px 26px; border: 1px solid var(--color-gold); border-radius: 2px;
  cursor: pointer; transition: all 0.3s ease;
  display: inline-block; text-align: center;
}
.btn-outline:hover { background: var(--color-gold); color: var(--color-bg-dark); }
.btn-outline--dark { color: var(--color-bg-dark); border-color: var(--color-bg-dark); }
.btn-outline--dark:hover { background: var(--color-bg-dark); color: var(--color-bg-off-white); }
.link-arrow {
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--color-gold); text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 0;
  transition: gap 0.2s ease;
}
.link-arrow:hover { gap: 10px; }

/* Animations */
.fade-in-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }
img.hover-zoom { transition: transform 0.4s ease, filter 0.4s ease; }
img.hover-zoom:hover { transform: scale(1.03); filter: brightness(1.05); }

/* ===== HEADER ===== */
.top-bar {
  position: absolute; top: 0; left: 0; width: 100%; z-index: 1001;
  height: 36px; background: var(--color-bg-dark-2); color: var(--color-text-muted);
  display: flex; align-items: center; justify-content: center; gap: 24px;
  font-family: var(--font-body); font-size: 11px; letter-spacing: 1px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.top-bar__item { display: flex; align-items: center; gap: 6px; }
.top-bar__item i { width: 14px; height: 14px; color: var(--color-gold); }
.top-bar__item a { color: var(--color-gold); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: opacity 0.2s ease; }
.top-bar__item a:hover { opacity: 0.8; }

.header {
  position: absolute; top: 36px; left: 0; width: 100%; z-index: 1000;
  height: 72px; display: flex; align-items: center;
  background: rgba(13,13,13,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.header.scrolled { position: fixed; top: 0; background: var(--color-bg-dark); box-shadow: 0 1px 12px rgba(0,0,0,0.5); }
.header .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.header__logo { display: flex; align-items: center; font-family: var(--font-display); font-size: 20px; font-weight: 400; letter-spacing: 3px; color: var(--color-text-on-dark); text-transform: uppercase; white-space: nowrap; text-decoration: none; }
.header__logo img { height: 48px; width: auto; display: block; }
.header__logo span { color: var(--color-gold); }
.header__nav { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-family: var(--font-body); font-size: 13px; font-weight: 400;
  letter-spacing: 1px; color: var(--color-text-on-dark);
  text-decoration: none; transition: color 0.2s ease;
}
.nav-link:hover, .nav-link.active { color: var(--color-gold); }
.header__cta { margin-left: 16px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--color-text-on-dark); transition: all 0.3s ease; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: var(--color-bg-dark); overflow: hidden;
}
.hero .container { display: flex; align-items: center; justify-content: space-between; gap: var(--space-lg); position: relative; z-index: 2; padding-top: 72px; }
.hero__content { flex: 1; max-width: 560px; }
.hero__label { font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--color-gold); margin-bottom: var(--space-sm); }
.hero__title { font-family: var(--font-display); font-size: clamp(42px, 5.5vw, 68px); font-weight: 300; line-height: 1.1; color: var(--color-text-on-dark); margin-bottom: var(--space-md); }
.hero__title em { font-style: italic; color: var(--color-gold); }
.hero__subtitle { font-family: var(--font-body); font-size: 16px; font-weight: 300; line-height: 1.8; color: var(--color-text-muted); margin-bottom: var(--space-md); max-width: 440px; }
.hero__ctas { display: flex; align-items: center; gap: var(--space-sm); flex-wrap: wrap; }
.hero__image-wrapper { flex: 0 0 auto; position: relative; width: 100%; max-width: 420px; }
.hero__image-wrapper img { max-width: 420px; width: 100%; height: auto; aspect-ratio: 3/4; object-fit: cover; border-radius: 2px; filter: brightness(0.85); transition: filter 0.3s ease; }
.hero__image-wrapper img:hover { filter: brightness(1); }
/* Decorative gold corner on hero image */
.hero__image-wrapper::before {
  content: ''; position: absolute; top: -12px; right: -12px;
  width: 100px; height: 100px; border-top: 1px solid var(--color-gold); border-right: 1px solid var(--color-gold);
  pointer-events: none;
}
.hero__image-wrapper::after {
  content: ''; position: absolute; bottom: -12px; left: -12px;
  width: 100px; height: 100px; border-bottom: 1px solid var(--color-gold); border-left: 1px solid var(--color-gold);
  pointer-events: none;
}

/* ===== ABOUT ===== */
.about { background: var(--color-bg-off-white); padding: var(--space-xl) var(--space-md); }
.about .container { display: flex; align-items: center; gap: var(--space-lg); }
.about__image-wrapper { flex: 0 0 auto; width: 100%; max-width: 420px; }
.about__image-wrapper img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 2px; filter: brightness(0.85); transition: filter 0.3s ease; }
.about__image-wrapper img:hover { filter: brightness(1); }
.about__content { flex: 1; }
.about__label { color: var(--color-gold); margin-bottom: var(--space-xs); }
.about__title { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 44px); font-weight: 300; line-height: 1.2; color: var(--color-text-on-light); margin-bottom: var(--space-md); }
.about__title em { font-style: italic; color: var(--color-gold); }
.about__text { font-family: var(--font-body); font-size: 15px; font-weight: 300; line-height: 1.85; color: var(--color-text-on-light); margin-bottom: var(--space-sm); }
.about__text:last-of-type { margin-bottom: var(--space-md); }

/* ===== TREATMENTS ===== */
.treatments { background: var(--color-bg-dark); padding: var(--space-xl) var(--space-md); }
.treatments__header { text-align: center; margin-bottom: var(--space-lg); }
.treatments__label { color: var(--color-gold); margin-bottom: var(--space-xs); }
.treatments__header .gold-divider { margin: 16px auto; }
.treatments__title { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 44px); font-weight: 300; line-height: 1.2; color: var(--color-text-on-dark); }
.treatments__title em { font-style: italic; color: var(--color-gold); }
.treatments-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.treatment-card { background: var(--color-bg-dark-2); border: 1px solid var(--color-border-light); border-radius: 4px; overflow: hidden; transition: border-color 0.3s ease; }
.treatment-card:hover { border-color: var(--color-border-gold); }
.treatment-card__image { width: 100%; aspect-ratio: 4/3; object-fit: cover; filter: brightness(0.85); transition: filter 0.3s ease, transform 0.4s ease; }
.treatment-card:hover .treatment-card__image { filter: brightness(1); transform: scale(1.03); }
.treatment-card__img-wrap { overflow: hidden; }
.treatment-card__body { padding: 20px; }
.treatment-card__title { font-family: var(--font-display); font-size: 22px; font-weight: 400; color: var(--color-gold); margin-bottom: 10px; }
.treatment-card__text { font-family: var(--font-body); font-size: 13px; font-weight: 300; color: var(--color-text-muted); line-height: 1.7; margin-bottom: 16px; }

/* ===== DIFFERENTIALS ===== */
.differentials { background: var(--color-bg-off-white); padding: var(--space-xl) var(--space-md); }
.differentials__header { text-align: center; margin-bottom: var(--space-lg); }
.differentials__label { color: var(--color-gold); margin-bottom: var(--space-xs); }
.differentials__header .gold-divider { margin: 16px auto; }
.differentials__title { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 44px); font-weight: 300; line-height: 1.2; color: var(--color-text-on-light); }
.differentials__title em { font-style: italic; color: var(--color-gold); }
.differentials-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.differential-item__icon { width: 48px; height: 48px; margin: 0 auto var(--space-sm); color: var(--color-text-on-light); }
.differential-item__icon i { width: 48px; height: 48px; stroke-width: 1.5; }
.differential-item__title { font-family: var(--font-display); font-size: 20px; font-weight: 400; color: var(--color-text-on-light); margin-bottom: var(--space-xs); }
.differential-item__text { font-family: var(--font-body); font-size: 13px; font-weight: 300; line-height: 1.7; color: var(--color-text-muted); }

/* ===== DRA GABRIELE ===== */
.dra { background: var(--color-bg-dark); padding: var(--space-xl) var(--space-md); overflow: hidden; }
.dra .container { display: flex; align-items: center; gap: var(--space-lg); }
.dra__content { flex: 1; }
.dra__quote { font-family: var(--font-display); font-size: 20px; font-style: italic; font-weight: 300; color: var(--color-text-muted); line-height: 1.6; margin-bottom: var(--space-md); border-left: 2px solid var(--color-gold); padding-left: var(--space-sm); }
.dra__name { font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px); font-weight: 300; color: var(--color-gold); margin-bottom: var(--space-xs); }
.dra__label { color: var(--color-text-muted); margin-bottom: var(--space-sm); }
.dra__text { font-family: var(--font-body); font-size: 15px; font-weight: 300; line-height: 1.85; color: var(--color-text-on-dark); margin-bottom: var(--space-md); max-width: 480px; }
.dra__image-wrapper { flex: 0 0 auto; position: relative; width: 100%; max-width: 400px; }
.dra__image-wrapper img { max-width: 400px; width: 100%; height: auto; aspect-ratio: 10/13; object-fit: cover; border-radius: 2px; filter: brightness(0.85); transition: filter 0.3s ease; }
.dra__image-wrapper img:hover { filter: brightness(1); }
.dra__image-wrapper::before {
  content: ''; position: absolute; top: -12px; right: -12px;
  width: 80px; height: 80px; border-top: 1px solid var(--color-gold); border-right: 1px solid var(--color-gold);
  pointer-events: none;
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--color-bg-off-white); padding: var(--space-xl) var(--space-md); }
.testimonials__header { text-align: center; margin-bottom: var(--space-lg); }
.testimonials__label { color: var(--color-gold); margin-bottom: var(--space-xs); }
.testimonials__header .gold-divider { margin: 16px auto; }
.testimonials__title { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 44px); font-weight: 300; line-height: 1.2; color: var(--color-text-on-light); }
.testimonials__title em { font-style: italic; color: var(--color-gold); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.testimonial-card { background: var(--color-bg-light); border: 1px solid var(--color-border-dark); border-radius: 4px; padding: 28px; transition: border-color 0.3s ease; }
.testimonial-card:hover { border-color: var(--color-border-gold); }
.testimonial-card__quote-icon { color: var(--color-gold); margin-bottom: var(--space-sm); }
.testimonial-card__text { font-family: var(--font-body); font-size: 15px; font-weight: 300; line-height: 1.8; color: var(--color-text-muted); margin-bottom: var(--space-md); }
.testimonial-card__footer { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial-card__info {}
.testimonial-card__name { font-family: var(--font-body); font-size: 13px; font-weight: 600; letter-spacing: 1px; color: var(--color-text-on-light); }
.testimonial-card__location { font-family: var(--font-body); font-size: 12px; font-weight: 300; color: var(--color-text-muted); }

/* ===== CTA BANNER ===== */
.cta-banner { background: var(--color-gold); padding: 48px var(--space-md); }
.cta-banner .container { display: flex; align-items: center; justify-content: space-between; gap: var(--space-md); }
.cta-banner__text { font-family: var(--font-display); font-size: clamp(24px, 3vw, 36px); font-weight: 400; color: var(--color-bg-dark); line-height: 1.3; }
.cta-banner__text em { font-style: italic; }
.cta-banner .btn-primary { background: var(--color-bg-dark); color: var(--color-text-on-dark); }
.cta-banner .btn-primary:hover { background: var(--color-bg-dark-2); }

/* ===== FOOTER ===== */
.footer { background: var(--color-bg-dark); padding: var(--space-lg) var(--space-md) var(--space-md); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: var(--space-lg); }
.footer__logo { font-family: var(--font-display); font-size: 18px; font-weight: 400; letter-spacing: 2px; color: var(--color-text-on-dark); text-transform: uppercase; margin-bottom: var(--space-sm); }
.footer__logo span { color: var(--color-gold); }
.footer__bio { font-family: var(--font-body); font-size: 13px; font-weight: 300; line-height: 1.7; color: var(--color-text-muted); }
.footer__heading { font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--color-gold); margin-bottom: var(--space-sm); }
.footer__link { display: block; font-family: var(--font-body); font-size: 13px; font-weight: 300; color: var(--color-text-muted); margin-bottom: 10px; transition: color 0.2s ease; }
.footer__link:hover { color: var(--color-gold); }
.footer__contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-family: var(--font-body); font-size: 13px; font-weight: 300; color: var(--color-text-muted); }
.footer__contact-item i { color: var(--color-gold); width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }
.footer__divider { width: 100%; height: 1px; background: var(--color-border-gold); margin-bottom: var(--space-md); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; }
.footer__copy { font-family: var(--font-body); font-size: 12px; font-weight: 300; color: var(--color-text-muted); }
.footer__socials { display: flex; align-items: center; gap: 16px; }
.footer__social-link {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-text-muted); transition: all 0.3s ease;
}
.footer__social-link svg { width: 20px; height: 20px; transition: transform 0.3s ease; }
.footer__social-link:hover { border-color: var(--color-gold); color: var(--color-gold); transform: translateY(-2px); }

/* ===== FLOATING SOCIAL ===== */
.floating-social {
  position: fixed; bottom: 90px; right: 24px; z-index: 9999;
  display: flex; flex-direction: column; gap: 12px;
}
.floating-btn {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.floating-btn:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 8px 16px rgba(0,0,0,0.4); }
.floating-btn--whatsapp { background: #25D366; }
.floating-btn--instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.floating-btn i { width: 28px; height: 28px; }

/* ===== MODEL PATIENT SECTION ===== */
.model-patient {
  background: var(--color-bg-dark-2);
  padding: var(--space-xl) var(--space-md);
  text-align: center;
}
.model-patient__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300; line-height: 1.2;
  color: var(--color-text-on-dark);
  margin-bottom: var(--space-sm);
}
.model-patient__title em { font-style: italic; color: var(--color-gold); }
.model-patient__text {
  font-family: var(--font-body);
  font-size: 15px; font-weight: 300;
  line-height: 1.85; color: var(--color-text-muted);
  max-width: 800px; margin: 0 auto var(--space-md);
}

/* ===== PAGE HERO (internal pages) ===== */
.page-hero {
  background: var(--color-bg-dark);
  padding: 140px 0 80px;
  text-align: center;
}
.page-hero__label {
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--color-gold); margin-bottom: var(--space-xs);
}
.page-hero .gold-divider { margin: 16px auto; }
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300; line-height: 1.2;
  color: var(--color-text-on-dark);
  margin-bottom: var(--space-sm);
}
.page-hero__title em { font-style: italic; color: var(--color-gold); }
.breadcrumb {
  font-family: var(--font-body); font-size: 12px;
  color: var(--color-text-muted); letter-spacing: 1px;
}
.breadcrumb a { color: var(--color-gold); text-decoration: none; transition: color 0.2s ease; }
.breadcrumb a:hover { color: var(--color-gold-light); }

/* ===== LANDING PAGE HERO (cursos) ===== */
.lp-hero {
  position: relative;
  background: var(--color-bg-dark);
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.lp-hero__overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(176,141,87,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.lp-hero__inner {
  display: flex; align-items: center;
  gap: var(--space-lg);
  padding-top: 100px; padding-bottom: var(--space-xl);
  width: 100%;
}
.lp-hero__content { flex: 1; }
.lp-hero__label {
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--color-gold); margin-bottom: var(--space-xs);
}
.lp-hero__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300; line-height: 1.15;
  color: var(--color-text-on-dark);
  margin: var(--space-sm) 0 var(--space-md);
}
.lp-hero__title em { font-style: italic; color: var(--color-gold); }
.lp-hero__sub {
  font-family: var(--font-body); font-size: 15px; font-weight: 300;
  line-height: 1.8; color: var(--color-text-muted);
  max-width: 480px; margin-bottom: var(--space-md);
}
.lp-hero__ctas {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}
.lp-hero__trust {
  display: flex; gap: 24px; flex-wrap: wrap;
  border-top: 1px solid var(--color-border-light);
  padding-top: var(--space-md);
}
.lp-hero__trust span {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 12px;
  font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: var(--color-text-muted);
}
.lp-hero__trust i { width: 16px; height: 16px; color: var(--color-gold); }
.lp-hero__image {
  flex: 0 0 auto; width: 100%; max-width: 420px; position: relative;
}
.lp-hero__image::before {
  content: '';
  position: absolute; inset: -2px;
  border: 1px solid var(--color-border-gold);
  border-radius: 2px;
  pointer-events: none; z-index: 1;
}
.lp-hero__image img {
  width: 100%; height: auto; aspect-ratio: 21/29;
  object-fit: cover; border-radius: 2px;
  display: block; filter: brightness(0.9);
}


/* ===== CTA BAND (internal pages) ===== */
.cta-band {
  background: var(--color-gold);
  padding: 64px var(--space-md);
  text-align: center;
}
.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  color: var(--color-bg-dark);
  line-height: 1.3;
  margin-bottom: var(--space-md);
}
.cta-band__title em { font-style: italic; }
.cta-band .btn-outline--dark { border-color: var(--color-bg-dark); color: var(--color-bg-dark); }
.cta-band .btn-outline--dark:hover { background: var(--color-bg-dark); color: var(--color-gold); }

/* ===== BLOCKQUOTE SECTION ===== */
.quote-section {
  background: var(--color-bg-off-white);
  padding: var(--space-xl) var(--space-md);
  text-align: center;
}
.quote-section__text {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 300; font-style: italic;
  line-height: 1.4;
  color: var(--color-text-on-light);
  max-width: 800px; margin: 0 auto var(--space-md);
}
.quote-section__attr {
  font-family: var(--font-body); font-size: 13px;
  font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ===== TWO-COL LAYOUT ===== */
.two-col {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}
.two-col--reverse { flex-direction: row-reverse; }
.two-col__image { flex: 0 0 auto; width: 100%; max-width: 480px; }
.two-col__image img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover; object-position: center; border-radius: 2px;
  filter: brightness(0.85); transition: filter 0.3s ease;
}
.two-col__image img:hover { filter: brightness(1); }
.two-col__content { flex: 1; }
.two-col__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300; line-height: 1.2;
  margin-bottom: var(--space-md);
}
.two-col__title em { font-style: italic; color: var(--color-gold); }
.two-col__text {
  font-family: var(--font-body); font-size: 15px;
  font-weight: 300; line-height: 1.85;
  margin-bottom: var(--space-sm);
}
.two-col__text:last-of-type { margin-bottom: var(--space-md); }

/* ===== ESSENCE CARDS (dark bg) ===== */
.essence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.essence-card {
  background: var(--color-bg-dark-2);
  border: 1px solid var(--color-border-light);
  border-radius: 4px;
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.3s ease;
}
.essence-card:hover { border-color: var(--color-border-gold); }
.essence-card__icon {
  width: 48px; height: 48px;
  margin: 0 auto var(--space-sm);
  color: var(--color-gold);
}
.essence-card__icon i { width: 48px; height: 48px; }
.essence-card__title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 400;
  color: var(--color-gold);
  margin-bottom: var(--space-xs);
}
.essence-card__text {
  font-family: var(--font-body);
  font-size: 14px; font-weight: 300;
  line-height: 1.75;
  color: var(--color-text-muted);
}

/* ===== TIMELINE ===== */
.timeline { list-style: none; position: relative; padding-left: 0; }
.timeline-item {
  display: flex; align-items: flex-start; gap: var(--space-md);
  padding-bottom: var(--space-lg);
  position: relative;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::after {
  content: '';
  position: absolute; left: 60px; top: 56px;
  width: 1px; height: calc(100% - 56px);
  background: var(--color-border-gold);
}
.timeline-item:last-child::after { display: none; }
.timeline-item__year {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 300;
  color: var(--color-gold);
  flex: 0 0 120px;
  text-align: center;
}
.timeline-item__content { flex: 1; }
.timeline-item__title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 400;
  color: var(--color-text-on-light);
  margin-bottom: var(--space-xs);
}
.timeline-item__text {
  font-family: var(--font-body);
  font-size: 14px; font-weight: 300;
  line-height: 1.7;
  color: var(--color-text-muted);
}

/* ===== COURSE CARDS (light bg) ===== */
.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.course-card {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border-dark);
  border-radius: 4px;
  padding: 32px 24px;
  transition: border-color 0.3s ease;
}
.course-card:hover { border-color: var(--color-border-gold); }
.course-card__title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 400;
  color: var(--color-text-on-light);
  margin-bottom: var(--space-xs);
}
.course-card__text {
  font-family: var(--font-body);
  font-size: 14px; font-weight: 300;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

/* ===== BULLET LIST w/ ICONS ===== */
.icon-list { list-style: none; padding: 0; }
.icon-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-family: var(--font-body); font-size: 14px;
  font-weight: 300; line-height: 1.8;
  margin-bottom: 12px;
}
.icon-list li i { color: var(--color-gold); width: 20px; height: 20px; flex-shrink: 0; margin-top: 4px; }

/* Dark variant */
.icon-list--dark li { color: var(--color-text-on-dark); }
.icon-list--light li { color: var(--color-text-on-light); }

/* ===== FORM STYLES ===== */
.form-group { margin-bottom: var(--space-sm); }
.form-label {
  display: block;
  font-family: var(--font-body); font-size: 12px;
  font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-on-light);
  margin-bottom: var(--space-xs);
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  font-family: var(--font-body); font-size: 15px;
  font-weight: 300;
  color: var(--color-text-on-light);
  background: var(--color-bg-light);
  border: 1px solid var(--color-border-dark);
  border-radius: 2px;
  padding: 14px 16px;
  transition: border-color 0.3s ease;
  outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-gold);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-select { appearance: none; cursor: pointer; }

/* ===== CONTACT INFO LIST ===== */
.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: var(--space-md);
}
.contact-info-item__icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
}
.contact-info-item__icon i { width: 24px; height: 24px; }
.contact-info-item__label {
  font-family: var(--font-body); font-size: 12px;
  font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-on-light);
  margin-bottom: 4px;
}
.contact-info-item__value {
  font-family: var(--font-body); font-size: 15px;
  font-weight: 300; line-height: 1.7;
  color: var(--color-text-muted);
}

/* ===== GALLERY GRID ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
}
.gallery-item {
  border-radius: 4px; overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.gallery-item--large { grid-column: span 2; grid-row: span 2; }
.gallery-item img, .gallery-item video {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img, .gallery-item:hover video { transform: scale(1.03); }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(13,13,13,0.95); z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
  backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
}
.lightbox.active { opacity: 1; pointer-events: auto; }
.lightbox__content { max-width: 90%; max-height: 90vh; position: relative; }
.lightbox__content img, .lightbox__content video {
  max-width: 100%; max-height: 85vh; object-fit: contain;
  border-radius: 4px; display: block; box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.lightbox__close {
  position: absolute; top: -40px; right: 0;
  color: #fff; font-size: 32px; cursor: pointer;
  background: none; border: none; padding: 4px;
  line-height: 1; transition: color 0.3s ease;
}
.lightbox__close:hover { color: var(--color-gold); }

.contact-info-item__value a {
  color: var(--color-gold); text-decoration: none;
  transition: color 0.2s ease;
}
.contact-info-item__value a:hover { color: var(--color-gold-light); }

/* ===== MAP SECTION ===== */
.map-section {
  background: var(--color-bg-dark);
  padding: var(--space-xl) var(--space-md);
}
.map-section iframe {
  width: 100%; height: 400px;
  border: 1px solid var(--color-border-gold);
  border-radius: 4px;
}

/* ===== STEP ITEMS (treatment pages) ===== */
.steps-list { list-style: none; padding: 0; counter-reset: step-counter; }
.step-item {
  display: flex; align-items: flex-start; gap: var(--space-md);
  margin-bottom: var(--space-lg);
}
.step-item:last-child { margin-bottom: 0; }
.step-item__number {
  font-family: var(--font-display);
  font-size: 64px; font-weight: 300;
  color: var(--color-gold);
  line-height: 1;
  flex: 0 0 80px;
  text-align: center;
}
.step-item__content { flex: 1; padding-top: 8px; }
.step-item__title {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 400;
  color: var(--color-text-on-light);
  margin-bottom: var(--space-xs);
}
.step-item__text {
  font-family: var(--font-body);
  font-size: 15px; font-weight: 300;
  line-height: 1.75;
  color: var(--color-text-muted);
}

/* ===== INDICATIONS GRID (treatment dark) ===== */
.indications-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.indication-item { text-align: center; padding: 24px 16px; }
.indication-item__icon {
  width: 40px; height: 40px;
  margin: 0 auto var(--space-sm);
  color: var(--color-gold);
}
.indication-item__icon i { width: 40px; height: 40px; }
.indication-item__title {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 400;
  color: var(--color-text-on-dark);
  margin-bottom: 6px;
}
.indication-item__text {
  font-family: var(--font-body);
  font-size: 14px; font-weight: 300;
  line-height: 1.7;
  color: var(--color-text-muted);
}

/* ===== RELATED TREATMENTS GRID ===== */
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.related-card {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border-dark);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.related-card:hover { border-color: var(--color-border-gold); }
.related-card__img-wrap { overflow: hidden; }
.related-card__image {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover;
  filter: brightness(0.85);
  transition: filter 0.3s ease, transform 0.4s ease;
}
.related-card:hover .related-card__image { filter: brightness(1); transform: scale(1.03); }
.related-card__body { padding: 16px; }
.related-card__title {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 400;
  color: var(--color-text-on-light);
  margin-bottom: 8px;
}

/* ===== DIFFERENTIALS DARK (treatment / courses) ===== */
.diff-dark-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
.diff-dark-item__icon {
  width: 48px; height: 48px;
  margin: 0 auto var(--space-sm);
  color: var(--color-gold);
}
.diff-dark-item__icon i { width: 48px; height: 48px; }
.diff-dark-item__title {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 400;
  color: var(--color-text-on-dark);
  margin-bottom: var(--space-xs);
}
.diff-dark-item__text {
  font-family: var(--font-body);
  font-size: 14px; font-weight: 300;
  line-height: 1.7;
  color: var(--color-text-muted);
}

/* Differentials 4-col variant */
.diff-dark-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ===== CONTACT PAGE WHATSAPP CARD ===== */
.whatsapp-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border-dark);
  border-radius: 4px;
  padding: 48px 32px;
  text-align: center;
}
.whatsapp-card__icon {
  width: 64px;
  height: 64px;
  color: #25D366;
  margin-bottom: 24px;
}
.whatsapp-card__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--color-text-on-light);
  margin-bottom: 16px;
}
.whatsapp-card__text {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--color-text-muted);
  margin-bottom: 32px;
}
.whatsapp-card__btn {
  width: 100%;
  background: #25D366 !important;
  color: white !important;
}
.whatsapp-card__btn:hover {
  background: #20ba5a !important;
}

/* ===== GALLERY SHOWCASE (cursos page) ===== */
.gallery-showcase { display: flex; gap: 16px; align-items: stretch; }
.gallery-main { flex: 0 0 35%; aspect-ratio: 9/16; border-radius: 4px; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.1); background: #000; position: relative; }
.gallery-thumbs { flex: 1; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.gallery-thumb { aspect-ratio: 1/1; border-radius: 4px; overflow: hidden; display: block; box-shadow: 0 4px 12px rgba(0,0,0,0.08); position: relative; }
.gallery-thumb img { transition: transform 0.4s ease; filter: brightness(0.9); }
.gallery-thumb:hover img { transform: scale(1.05); filter: brightness(1); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1023px) {
  .hero .container { flex-direction: column; text-align: center; padding-top: 120px; }
  .hero__content { max-width: 100%; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__ctas { justify-content: center; }
  .hero__image-wrapper img { width: 100%; max-width: 320px; aspect-ratio: 3/4; height: auto; }
  .hero__image-wrapper::before, .hero__image-wrapper::after { display: none; }
  .about .container { flex-direction: column; }
  .about__image-wrapper { flex: 0 0 auto; width: 100%; max-width: 400px; }
  .treatments-grid { grid-template-columns: repeat(2, 1fr); }
  .differentials-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .dra .container { flex-direction: column; text-align: center; }
  .dra__quote { border-left: none; padding-left: 0; text-align: center; }
  .dra__text { margin-left: auto; margin-right: auto; }
  .dra__image-wrapper img { width: 100%; max-width: 320px; aspect-ratio: 10/13; height: auto; }
  .dra__image-wrapper::before { display: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .cta-banner .container { flex-direction: column; text-align: center; }
  .two-col { flex-direction: column; }
  .two-col--reverse { flex-direction: column; }
  .two-col__image { flex: 0 0 auto; width: 100%; max-width: 400px; }
  .essence-grid { grid-template-columns: repeat(2, 1fr); }
  .course-grid { grid-template-columns: repeat(2, 1fr); }
  .indications-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-dark-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-dark-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .lp-hero__inner { flex-direction: column; text-align: center; padding-top: 120px; }
  .lp-hero__sub { margin-left: auto; margin-right: auto; }
  .lp-hero__ctas { justify-content: center; }
  .lp-hero__trust { justify-content: center; }
  .lp-hero__image { flex: 0 0 auto; width: 100%; max-width: 380px; }
  .lp-hero__image img { width: 100%; max-width: 380px; height: auto; aspect-ratio: 21/29; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item--large { grid-column: span 2; grid-row: span 2; }
  .gallery-showcase { flex-direction: column; }
  .gallery-main { flex: 0 0 auto; width: 100%; max-width: 360px; margin: 0 auto; }
}

@media (max-width: 768px) {
  :root {
    --space-lg: 48px;
    --space-xl: 64px;
    --space-2xl: 80px;
  }
  .section { padding: var(--space-lg) var(--space-sm); }
  .about { padding: var(--space-lg) var(--space-sm); }
  .treatments { padding: var(--space-lg) var(--space-sm); }
  .differentials { padding: var(--space-lg) var(--space-sm); }
  .dra { padding: var(--space-lg) var(--space-sm); }
  .testimonials { padding: var(--space-lg) var(--space-sm); }
  .footer { padding: var(--space-lg) var(--space-sm) var(--space-sm); }
  .top-bar__item:nth-child(2),
  .top-bar__item:nth-child(3) {
    display: none !important;
  }
  .header__nav { display: none; }
  .header__nav.open {
    display: flex; flex-direction: column; position: absolute;
    top: 72px; left: 0; width: 100%; background: var(--color-bg-dark);
    padding: var(--space-md); gap: 0;
    border-top: 1px solid var(--color-border-light);
    z-index: 999;
  }
  .header__nav.open .nav-link {
    display: block;
    padding: 14px 16px;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .header__nav.open .nav-link:last-child {
    border-bottom: none;
  }
  .header__cta { display: none; }
  .header__nav.open + .header__cta { display: none; }
  .hamburger { display: flex; }
  .hamburger.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }
  .treatments-grid { grid-template-columns: 1fr; }
  .differentials-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 16px; padding-bottom: var(--space-sm); -webkit-overflow-scrolling: touch; }
  .testimonial-card { min-width: 280px; scroll-snap-align: start; flex-shrink: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
  .page-hero { padding: 110px 0 var(--space-lg); }
  .essence-grid { grid-template-columns: 1fr; }
  .course-grid { grid-template-columns: 1fr; }
  .timeline-item { flex-direction: column; gap: var(--space-sm); }
  .timeline-item__year { flex: 0 0 auto; text-align: left; }
  .timeline-item::after { display: none; }
  .step-item { flex-direction: column; gap: var(--space-sm); }
  .step-item__number { flex: 0 0 auto; text-align: left; }
  .indications-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .diff-dark-grid { grid-template-columns: 1fr; }
  .diff-dark-grid--4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-item--large { grid-column: span 2; grid-row: span 2; }
  .whatsapp-card { padding: 32px 20px; }
  .whatsapp-card__title { font-size: 24px; }
  .gallery-thumbs { grid-template-columns: repeat(2, 1fr); }
  .map-section iframe { height: 280px; }
  .floating-social { bottom: 20px; right: 16px; }
  .lp-hero__trust { flex-direction: column; align-items: center; gap: 16px; }
}

@media (max-width: 480px) {
  .hero__image-wrapper img { width: 100%; max-width: 260px; aspect-ratio: 3/4; height: auto; }
  .differentials-grid { grid-template-columns: 1fr; }
  .dra__image-wrapper img { width: 100%; max-width: 260px; aspect-ratio: 10/13; height: auto; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-item--large { grid-column: span 1; grid-row: span 1; }
  .gallery-thumbs { grid-template-columns: 1fr; }
}
