/* ==========================================================================
   AMEL STUDIO - VERSIÓN 2 (REPLICACIÓN EXACTA DE HELLO LASHES + MANUAL AMEL)
   Light Mode Master Stylesheet inspired by hellolashes.es
   ========================================================================== */

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

:root {
  /* Hello Lashes Clean Light Layout + AMEL Palette */
  --hl-bg-white:        #FFFFFF;
  --hl-bg-light:        #FBF9F8;
  --hl-bg-soft:         #F6F1EE;
  --hl-bg-card:         #FFFFFF;
  
  --hl-border:          #ECE3DE;
  --hl-border-accent:   rgba(201, 135, 119, 0.4);

  --hl-text-dark:       #2A0810;
  --hl-text-heading:    #380C17;
  --hl-text-body:       #555555;
  --hl-text-muted:      #777777;

  /* AMEL Brand Accents */
  --amel-bordeaux:      #380C17;
  --amel-bordeaux-hover:#521626;
  --amel-rosegold:      #C98777;
  --amel-rosegold-light:#E8BCB1;
  --amel-gold:          #B88E3E;

  /* Fonts matching Hello Lashes */
  --font-main: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;

  /* Elevation */
  --shadow-hl-sm: 0 2px 10px rgba(0, 0, 0, 0.04);
  --shadow-hl-md: 0 8px 25px rgba(56, 12, 23, 0.07);
  --shadow-hl-lg: 0 15px 35px rgba(56, 12, 23, 0.12);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  font-family: var(--font-body);
  background-color: var(--hl-bg-white);
  color: var(--hl-text-body);
  line-height: 1.7;
  font-size: 15px;
  overflow-x: hidden;
}

/* Headings in exact Hello Lashes Montserrat Uppercase style */
h1, h2, h3, h4, h5, h6, .hl-heading {
  font-family: var(--font-main);
  color: var(--hl-text-heading);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 700;
  line-height: 1.25;
}

/* Top Switcher Bar */
.version-switcher-bar {
  background: #2A0810;
  color: #FAF5F0;
  padding: 0.4rem 1rem;
  font-size: 0.72rem;
  font-family: var(--font-main);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  z-index: 70;
  position: relative;
}

.version-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.7rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.version-pill.active {
  background: var(--amel-rosegold);
  color: #1B040A;
}

.version-pill.inactive {
  background: rgba(255, 255, 255, 0.12);
  color: #FFF;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.version-pill.inactive:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Hello Lashes Master Header */
.hl-header-wrap {
  background: #FFFFFF;
  border-bottom: 1px solid var(--hl-border);
  position: sticky;
  top: 0;
  z-index: 50;
  transition: all 0.3s ease;
}

.hl-nav-link {
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--hl-text-dark);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}

.hl-nav-link:hover {
  color: var(--amel-rosegold);
}

/* Hello Lashes Buttons */
.hl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.hl-btn-filled {
  background-color: var(--amel-bordeaux);
  color: #FFFFFF;
  border: 2px solid var(--amel-bordeaux);
}

.hl-btn-filled:hover {
  background-color: var(--amel-bordeaux-hover);
  border-color: var(--amel-bordeaux-hover);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(56, 12, 23, 0.2);
}

.hl-btn-bordered {
  background-color: transparent;
  color: var(--amel-bordeaux);
  border: 2px solid var(--amel-bordeaux);
}

.hl-btn-bordered:hover {
  background-color: var(--amel-bordeaux);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.hl-btn-rose {
  background-color: var(--amel-rosegold);
  color: #FFFFFF;
  border: 2px solid var(--amel-rosegold);
}

.hl-btn-rose:hover {
  background-color: #B36F5F;
  border-color: #B36F5F;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(201, 135, 119, 0.3);
}

/* Hello Lashes Hero Banner */
.hl-hero-banner {
  background: linear-gradient(rgba(42, 8, 16, 0.45), rgba(42, 8, 16, 0.45)), url('assets/hero-lash.jpg') center/cover no-repeat;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFFFFF;
  position: relative;
}

.hl-hero-banner h1 {
  color: #FFFFFF;
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .hl-hero-banner h1 {
    font-size: 2.25rem;
  }
}

.hl-hero-subtitle {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-style: italic;
  color: #FAF5F0;
  margin-bottom: 1rem;
}

.hl-hero-desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto 2rem;
  color: #F0E6E2;
}

/* Hello Lashes Section "Belleza a tu alcance" */
.hl-intro-section {
  padding: 5rem 1.5rem;
  background-color: var(--hl-bg-white);
  text-align: center;
}

.hl-intro-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.hl-intro-text {
  font-size: 1.1rem;
  line-height: 1.9;
  max-width: 820px;
  margin: 0 auto 2.5rem;
  color: var(--hl-text-body);
}

/* Hello Lashes 3 Pillars "Nuestros Productos" */
.hl-products-section {
  padding: 5rem 1.5rem;
  background-color: var(--hl-bg-light);
  border-top: 1px solid var(--hl-border);
  border-bottom: 1px solid var(--hl-border);
}

.hl-product-card {
  background: #FFFFFF;
  border: 1px solid var(--hl-border);
  border-radius: 8px;
  padding: 2.5rem 1.75rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-hl-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hl-product-card:hover {
  transform: translateY(-6px);
  border-color: var(--amel-rosegold);
  box-shadow: var(--shadow-hl-md);
}

.hl-product-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--hl-bg-soft);
  border: 2px solid var(--amel-rosegold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--amel-bordeaux);
  margin: 0 auto 1.5rem;
}

.hl-product-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--hl-text-heading);
}

.hl-product-card p {
  font-size: 0.92rem;
  color: var(--hl-text-muted);
  line-height: 1.7;
}

/* Hello Lashes "Nuestros Tratamientos" (Grid with images) */
.hl-treatments-section {
  padding: 6rem 1.5rem;
  background-color: var(--hl-bg-white);
}

.hl-treatment-card {
  background: #FFFFFF;
  border: 1px solid var(--hl-border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-hl-sm);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.hl-treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hl-lg);
  border-color: var(--amel-rosegold);
}

.hl-treatment-img {
  height: 250px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hl-treatment-card:hover .hl-treatment-img {
  transform: scale(1.05);
}

.hl-treatment-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hl-treatment-body h4 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--hl-text-heading);
}

.hl-treatment-body p {
  font-size: 0.92rem;
  color: var(--hl-text-muted);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

/* Hello Lashes "Nuestros Cursos / Academy" */
.hl-courses-section {
  padding: 6rem 1.5rem;
  background-color: var(--hl-bg-light);
  border-top: 1px solid var(--hl-border);
  border-bottom: 1px solid var(--hl-border);
}

.hl-course-card {
  background: #FFFFFF;
  border: 1px solid var(--hl-border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-hl-sm);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.hl-course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hl-lg);
  border-color: var(--amel-gold);
}

.hl-course-img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.hl-course-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hl-course-body h4 {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 1rem;
  color: var(--hl-text-heading);
}

/* Tarifas Table / Grid */
.hl-tarifa-card {
  background: #FFFFFF;
  border: 1px solid var(--hl-border);
  border-radius: 8px;
  padding: 1.75rem;
  box-shadow: var(--shadow-hl-sm);
  transition: all 0.3s ease;
}

.hl-tarifa-card:hover {
  border-color: var(--amel-rosegold);
  box-shadow: var(--shadow-hl-md);
  transform: translateY(-3px);
}

.hl-tarifa-price {
  font-family: var(--font-main);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--amel-bordeaux);
  background: var(--hl-bg-soft);
  padding: 0.35rem 0.85rem;
  border-radius: 4px;
  border: 1px solid var(--hl-border);
}

/* Hello Lashes Instagram Banner */
.hl-insta-banner {
  background: var(--amel-bordeaux);
  color: #FFFFFF;
  padding: 4rem 1.5rem;
  text-align: center;
}

.hl-insta-banner h3 {
  color: #FFFFFF;
  font-size: 1.85rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.hl-insta-banner a {
  color: var(--amel-rosegold-light);
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.25rem;
  text-decoration: none;
}

.hl-insta-banner a:hover {
  text-decoration: underline;
  color: #FFFFFF;
}

/* Hello Lashes Footer (3 Columns: Contacto, Oficinas/Estudio, Horario) */
.hl-footer {
  background-color: #1F050B;
  color: #E2D4D0;
  padding: 5rem 1.5rem 3rem;
  font-size: 0.9rem;
}

.hl-footer h4 {
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: 0.06em;
}

.hl-footer a {
  color: #E2D4D0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.hl-footer a:hover {
  color: var(--amel-rosegold);
}

.hl-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 4rem;
  padding-top: 2rem;
  font-size: 0.78rem;
  color: #A08C86;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

/* Modals */
.v2-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(31, 5, 11, 0.75);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.v2-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.v2-modal-container {
  background: #FFFFFF;
  color: var(--hl-text-dark);
  border: 1px solid var(--hl-border);
  border-radius: 8px;
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  padding: 2.5rem;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.v2-modal-overlay.open .v2-modal-container {
  transform: scale(1);
}
