/* ===== PROTOCOLO LUMINA — SHARED STYLES ===== */
:root {
  --rose: #8B7391;
  --rose-dark: #6E5A75;
  --rose-light: #F4F0F6;
  --rose-glow: rgba(139, 115, 145, 0.15);
  --gold: #C9A84C;
  --gold-light: #F5ECD7;
  --dark: #2D2233;
  --dark-soft: #3D2D47;
  --gray: #6B7280;
  --gray-light: #9CA3AF;
  --light: #FAF8F9;
  --white: #FFFFFF;
  --green: #25D366;
  --red: #EF4444;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ===== PROMO BAR ===== */
.promo-bar {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
  color: var(--white);
  text-align: center;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  position: sticky; top: 0; z-index: 1000;
}
.promo-highlight { color: var(--gold); font-weight: 700; }
.promo-price { color: #C4A0CC; font-weight: 700; font-size: 16px; }
.promo-bar a.promo-btn {
  display: inline-block;
  background: var(--rose);
  color: white;
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  margin-left: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.3s;
}
.promo-bar a.promo-btn:hover { background: var(--rose-dark); }

/* ===== NAV ===== */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  position: sticky; top: 44px; z-index: 999;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 700;
  color: var(--rose-dark);
}
.nav-logo span { font-weight: 400; color: var(--gray); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 14px; font-weight: 500;
  color: var(--dark); transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--rose-dark); }
.nav-cta {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark)) !important;
  color: white !important; padding: 10px 24px !important;
  border-radius: 100px; font-weight: 700 !important;
  font-size: 13px !important;
  transition: all 0.3s;
  box-shadow: 0 4px 16px var(--rose-glow);
}
.nav-cta:hover { transform: translateY(-2px); }
.nav-mobile { display: none; background: none; border: none; font-size: 28px; cursor: pointer; color: var(--dark); }

@media (max-width: 768px) {
  .nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .nav-mobile { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: white; padding: 20px;
    border-bottom: 1px solid #eee;
    box-shadow: var(--shadow);
    gap: 16px;
  }
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: white; font-size: 16px; font-weight: 700;
  border: none; border-radius: 14px; cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 6px 24px var(--rose-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(139,115,145,0.35); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px;
  background: transparent;
  color: var(--dark); font-size: 16px; font-weight: 600;
  border: 2px solid #E5E7EB; border-radius: 14px; cursor: pointer;
  transition: all 0.3s;
}
.btn-secondary:hover { border-color: var(--rose); color: var(--rose-dark); }
.btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px;
  background: var(--green); color: white;
  font-size: 16px; font-weight: 700;
  border: none; border-radius: 14px; cursor: pointer;
  transition: all 0.3s;
}
.btn-wa:hover { background: #1EBE5A; transform: translateY(-2px); }

/* ===== SECTIONS ===== */
.section { padding: 80px 40px; max-width: 1200px; margin: 0 auto; }
.section-full { padding: 80px 40px; }
.section-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--rose-dark); margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700; line-height: 1.2;
  color: var(--dark); margin-bottom: 12px;
}
.section-sub {
  font-size: 16px; color: var(--gray);
  line-height: 1.6; max-width: 560px;
}
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.bg-light { background: var(--light); }

@media (max-width: 768px) {
  .section, .section-full { padding: 50px 20px; }
}

/* ===== PAGE HERO (interior pages) ===== */
.page-hero {
  text-align: center;
  padding: 60px 40px 40px;
  background: linear-gradient(180deg, var(--rose-light) 0%, var(--white) 100%);
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 700; color: var(--dark);
  margin-bottom: 16px;
}
.page-hero h1 em { font-style: italic; color: var(--rose-dark); }
.page-hero p {
  font-size: 17px; color: var(--gray);
  max-width: 600px; margin: 0 auto; line-height: 1.7;
}

/* ===== STATS ===== */
.stats {
  display: flex; justify-content: center; gap: 48px;
  padding: 40px 20px;
  background: var(--light);
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px; font-weight: 700;
  color: var(--rose-dark);
}
.stat-lbl {
  font-size: 12px; color: var(--gray);
  text-transform: uppercase; letter-spacing: 1px;
  margin-top: 6px; font-weight: 600;
}

@media (max-width: 768px) {
  .stats { gap: 24px; padding: 30px 16px; }
  .stat-num { font-size: 28px; }
}

/* ===== ETAPAS CARDS ===== */
.etapas-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 40px;
}
.etapa-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 24px;
  border: 1px solid #E5E7EB;
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
.etapa-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  opacity: 0; transition: opacity 0.3s;
}
.etapa-card:hover { border-color: var(--rose); box-shadow: 0 8px 32px var(--rose-glow); }
.etapa-card:hover::before { opacity: 1; }
.etapa-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px; font-weight: 800;
  color: var(--rose); opacity: 0.2; line-height: 1; margin-bottom: 8px;
}
.etapa-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700;
  color: var(--dark); margin-bottom: 20px;
}
.etapa-item { padding: 12px 0; border-bottom: 1px solid #F3F4F6; }
.etapa-item:last-child { border: none; }
.etapa-item h4 { font-size: 14px; font-weight: 700; color: var(--rose-dark); margin-bottom: 4px; }
.etapa-item p { font-size: 13px; color: var(--gray); line-height: 1.5; }

@media (max-width: 768px) { .etapas-grid { grid-template-columns: 1fr; } }

/* ===== PLANS GRID ===== */
.plans-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-top: 40px;
}
.plan-card {
  background: var(--white);
  border: 2px solid #E5E7EB;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}
.plan-card:hover { border-color: var(--rose); box-shadow: 0 8px 32px var(--rose-glow); }
.plan-card.featured { border-color: var(--rose); }
.plan-card.featured::before {
  content: 'Popular'; position: absolute;
  top: -1px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: white; padding: 4px 20px;
  border-radius: 0 0 10px 10px;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
}
.plan-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700;
  color: var(--dark); margin-bottom: 4px;
}
.plan-sessions {
  font-size: 13px; color: var(--rose-dark);
  font-weight: 600; margin-bottom: 16px;
}
.plan-price {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 700;
  color: var(--rose-dark); margin-bottom: 16px;
}
.plan-desc {
  font-size: 13px; color: var(--gray);
  line-height: 1.6; margin-bottom: 20px;
}
.plan-features { list-style: none; text-align: left; margin-bottom: 24px; }
.plan-features li {
  padding: 6px 0; font-size: 13px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid #F3F4F6;
}
.plan-features li::before { content: '✓'; color: var(--rose-dark); font-weight: 700; }
.plan-features li.no::before { content: '—'; color: #D1D5DB; }

/* ===== COMPARISON TABLE ===== */
.compare-table {
  width: 100%; max-width: 900px;
  margin: 40px auto 0; border-collapse: separate;
  border-spacing: 0; border-radius: 20px;
  overflow: hidden; box-shadow: var(--shadow);
  font-size: 14px;
}
.compare-table thead th {
  padding: 16px 14px;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.compare-table thead th:first-child { background: var(--light); color: var(--gray); text-align: left; }
.compare-table thead th.highlight {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: white;
}
.compare-table thead th:not(:first-child):not(.highlight) { background: var(--light); color: var(--gray); }
.compare-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #F3F4F6;
}
.compare-table td:first-child { font-weight: 600; color: var(--dark); background: var(--white); text-align: left; }
.compare-table td:not(:first-child) { text-align: center; }
.compare-table td.hl { background: var(--rose-light); }
.check { color: var(--rose-dark); }
.cross { color: #D1D5DB; }

/* ===== RESULTS GALLERY ===== */
.results-scroll {
  display: flex; gap: 20px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 10px 0 20px; margin-top: 40px;
}
.results-scroll::-webkit-scrollbar { height: 4px; }
.results-scroll::-webkit-scrollbar-thumb { background: var(--rose); border-radius: 4px; }
.result-card {
  flex: 0 0 300px; scroll-snap-align: start;
  border-radius: var(--radius); overflow: hidden;
  background: var(--white); box-shadow: var(--shadow);
  transition: transform 0.3s;
}
.result-card:hover { transform: translateY(-6px); }
.result-card img { width: 100%; height: auto; display: block; }
.result-label {
  padding: 14px 18px; text-align: center;
  font-size: 14px; font-weight: 600; color: var(--rose-dark);
  border-top: 2px solid var(--rose);
}

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 40px;
}
.review-card {
  background: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: var(--radius);
  padding: 24px; transition: all 0.3s;
}
.review-card:hover { border-color: var(--rose); box-shadow: 0 4px 20px var(--rose-glow); }
.review-stars { color: #FBBF24; font-size: 16px; letter-spacing: 2px; margin-bottom: 12px; }
.review-text { font-size: 14px; color: var(--gray); line-height: 1.6; font-style: italic; margin-bottom: 14px; }
.review-name { font-size: 13px; font-weight: 700; color: var(--dark); }
.review-loc { font-size: 12px; color: var(--gray-light); }

@media (max-width: 768px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ===== SEDES ===== */
.sedes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 40px;
}
.sede-card {
  background: var(--white);
  border-radius: 20px; overflow: hidden;
  border: 1px solid #E5E7EB; transition: all 0.3s;
}
.sede-card:hover { border-color: var(--rose); box-shadow: 0 8px 32px var(--rose-glow); }
.sede-img {
  height: 200px;
  background: linear-gradient(135deg, var(--rose-light), #EDE4F0);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
}
.sede-info { padding: 24px; }
.sede-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700;
  color: var(--dark); margin-bottom: 12px;
}
.sede-detail {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; color: var(--gray);
  margin-bottom: 8px; line-height: 1.5;
}

@media (max-width: 768px) { .sedes-grid { grid-template-columns: 1fr; } }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
  padding: 60px 40px;
  text-align: center; color: var(--white);
}
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700; margin-bottom: 12px;
}
.cta-banner p {
  font-size: 16px; color: var(--gray-light);
  margin-bottom: 28px; max-width: 500px;
  margin-left: auto; margin-right: auto;
}
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: var(--gray-light);
  padding: 60px 40px 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; max-width: 1200px; margin: 0 auto;
}
.footer-brand .footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 700;
  color: var(--rose); margin-bottom: 12px;
}
.footer-brand .footer-logo span { font-weight: 400; color: var(--gray-light); }
.footer-brand p { font-size: 13px; line-height: 1.7; margin-bottom: 16px; }
.footer-col h4 {
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--white); margin-bottom: 16px;
}
.footer-col a, .footer-col p {
  display: block; font-size: 13px;
  color: var(--gray-light); line-height: 1.6;
  margin-bottom: 8px; transition: color 0.3s;
}
.footer-col a:hover { color: var(--rose); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 40px; padding-top: 20px;
  text-align: center; font-size: 12px;
  max-width: 1200px; margin-left: auto; margin-right: auto;
}

@media (max-width: 768px) {
  .footer { padding: 40px 20px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ===== NOTIFICATION BAR ===== */
.notification-bar {
  position: fixed; bottom: 20px; left: 20px;
  background: var(--white); border-radius: 14px;
  padding: 14px 18px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  z-index: 1100;
  transform: translateX(-120%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  border-left: 4px solid var(--rose);
  max-width: 380px;
}
.notification-bar.show { transform: translateX(0); }
.notif-icon {
  width: 40px; height: 40px;
  background: var(--rose-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 18px;
}
.notif-text { font-size: 13px; line-height: 1.4; color: var(--dark); }
.notif-text strong { color: var(--rose-dark); }
.notif-sub { font-size: 12px; color: var(--gray); line-height: 1.4; margin-top: 2px; }
.notif-stars { color: #FBBF24; font-size: 13px; letter-spacing: 1px; }

/* ===== STICKY MOBILE ===== */
.sticky-mobile {
  position: fixed; bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid #E5E7EB;
  z-index: 800; display: none;
}
.sticky-mobile .btn-primary { width: 100%; justify-content: center; }

@media (max-width: 768px) {
  .sticky-mobile { display: block; }
  .notification-bar { bottom: 80px; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.anim { opacity: 0; animation: fadeInUp 0.6s ease forwards; }
.anim-d1 { animation-delay: 0.1s; }
.anim-d2 { animation-delay: 0.2s; }
.anim-d3 { animation-delay: 0.3s; }

/* ===== MEN-SPECIFIC ===== */
.men-hero {
  display: flex; align-items: center;
  min-height: 60vh; padding: 60px 40px;
  max-width: 1200px; margin: 0 auto; gap: 60px;
}
.men-hero-text { flex: 1; }
.men-hero-visual {
  flex: 1;
  background: linear-gradient(135deg, #2D2233, #1a1225);
  border-radius: 24px; padding: 60px 40px;
  text-align: center; color: white;
  min-height: 360px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.men-hero-visual .icon-big { font-size: 80px; margin-bottom: 16px; }
.men-hero-visual h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700; margin-bottom: 8px;
}
.men-hero-visual p { font-size: 14px; color: var(--gray-light); }
.treatments-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; margin-top: 40px;
}
.treatment-card {
  background: var(--white); border: 1px solid #E5E7EB;
  border-radius: 20px; padding: 32px 24px;
  transition: all 0.3s;
}
.treatment-card:hover { border-color: var(--rose); box-shadow: 0 8px 32px var(--rose-glow); }
.treatment-icon { font-size: 40px; margin-bottom: 12px; }
.treatment-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700;
  color: var(--dark); margin-bottom: 4px;
}
.treatment-card .treatment-tag {
  font-size: 12px; color: var(--rose-dark);
  font-weight: 600; margin-bottom: 12px;
}
.treatment-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }

@media (max-width: 768px) {
  .men-hero { flex-direction: column; padding: 40px 20px; gap: 30px; }
  .treatments-grid { grid-template-columns: 1fr; }
}
