/* ================================================================
   MAZU Beauty Studio — Landing Mockup CSS
   Dirección: MODERNO TRENDY
   Paleta: hot pink · coral · naranja · amarillo · blanco
   Tipografía: Playfair Display (serif) + Inter (sans)
   Mobile-first · Responsive
================================================================ */

/* ── Variables ── */
:root {
  --gradient-pastel: linear-gradient(135deg, #fef5f9, #e6f7ff);
  /* Colores principales — MODERNO TRENDY */
  --pink:      #E91E8C;
  --pink-dark: #C4187A;
  --coral:     #FF6B6B;
  --orange:    #FF9A3C;
  --yellow:    #FFD93D;
  --cream:     #FFF8F5;
  --white:     #FFFFFF;
  --dark:      #1A1A1A;
  --text:      #2D2D2D;
  --text-muted:#6B6B6B;

  /* Soporte (neutros) */
  --sage:      #7A9E7E;
  --sage-dark: #5C7D5F;
  --gold:      #C49A6C;

  /* Utilidades */
  --radius:    14px;
  --radius-sm: 8px;
  --shadow:    0 4px 24px rgba(0,0,0,.09);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.14);
  --transition: .26s ease;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --container: 1160px;
  --gap:       clamp(1.5rem, 4vw, 3rem);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body { overflow-x: hidden; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
}
*, *::before, *::after { box-sizing: border-box; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--sage); border-radius: 3px; }

/* ── Botones ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}
.btn-primary:hover {
  background: #e85555;
  border-color: #e85555;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,107,107,.4);
}
.btn-outline {
  background: transparent;
  color: var(--pink-dark);
  border-color: var(--pink);
}
.btn-outline:hover {
  background: var(--pink);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border-color: rgba(255,255,255,.4);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.22);
  border-color: var(--white);
}
.btn-header {
  display: none;
}
@media (min-width: 768px) {
  .btn-header {
    display: inline-flex;
    align-items: center;
    padding: .55rem 1.2rem;
    background: var(--sage);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: .875rem;
    font-weight: 600;
    transition: var(--transition);
  }
  .btn-header:hover {
    background: var(--sage-dark);
    transform: translateY(-1px);
  }
}

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(122,158,126,.18);
}

/* Texto del header blanco sobre hero, oscuro cuando hay scroll */
.site-header .nav-list a,
.site-header .logo-mazu,
.site-header .logo-sub,
.site-header .btn-header { color: #ffffff; transition: color .3s ease; }
.site-header.scrolled .nav-list a,
.site-header.scrolled .logo-mazu,
.site-header.scrolled .logo-sub,
.site-header.scrolled .btn-header { color: var(--dark); }
.site-header .btn-header { border-color: rgba(255,255,255,.5); }
.site-header.scrolled .btn-header { border-color: var(--dark); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
}

/* Logo */
.logo { display: flex; flex-direction: column; line-height: 1.1; }
.logo-mazu {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sage-dark);
  letter-spacing: .04em;
}
.logo-sub {
  font-family: var(--font-sans);
  font-size: .625rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Nav */
.main-nav { display: none; }
@media (min-width: 900px) {
  .main-nav { display: block; }
  .nav-list {
    display: flex;
    align-items: center;
    gap: .25rem;
    list-style: none;
  }
  .nav-list a {
    padding: .35rem .75rem;
    font-size: .875rem;
    font-weight: 500;
    color: var(--text);
    border-radius: var(--radius-sm);
    transition: var(--transition);
  }
  .nav-list a:hover {
    color: var(--sage-dark);
    background: rgba(122,158,126,.1);
  }
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none; cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 900px) { .hamburger { display: none; } }

/* Mobile nav overlay */
.main-nav.mobile-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 68px 0 0 0;
  background: var(--white);
  padding: 2rem 1.5rem;
  gap: .5rem;
  z-index: 999;
  border-top: 1px solid var(--cream);
  animation: slideDown .25s ease;
}
.main-nav.mobile-open .nav-list {
  flex-direction: column;
  align-items: flex-start;
  gap: .25rem;
}
.main-nav.mobile-open .nav-list a {
  font-size: 1.1rem;
  padding: .75rem 1rem;
  width: 100%;
  border-radius: var(--radius-sm);
}
.main-nav.mobile-open .nav-list a:hover {
  background: rgba(122,158,126,.1);
  color: var(--sage-dark);
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── HERO MODERNO TRENDY ── */
.hero-moderno {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: #1a1a1a;
}
@media (max-width: 768px) {
  .hero-moderno {
    height: 60vh;
    min-height: 450px;
  }
  .hero-moderno-content {
    min-height: 450px;
    padding-top: 80px;
    padding-bottom: 2rem;
  }
}

/* Hero slider — cinematográfico, responsive 1x/2x */
.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #1a1a1a; /* fallback mientras carga */
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity .7s cubic-bezier(.4, 0, .2, 1);
  will-change: opacity;
}
.hero-slide.active { opacity: 1; z-index: 1; }

/* Letterbox cinematográfico (barras arriba/abajo sutiles) */
.hero-letterbox {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  box-shadow:
    inset 0 60px 60px -30px rgba(0,0,0,.15),
    inset 0 -60px 60px -30px rgba(0,0,0,.15);
}

.hero-dots {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .7rem;
  z-index: 6;
}
.hero-dot {
  width: 36px;
  height: 3px;
  border: none;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: background .4s ease, transform .4s ease, width .4s ease;
  padding: 0;
}
.hero-dot:hover { background: rgba(255,255,255,.75); }
.hero-dot.active {
  background: var(--white);
  width: 56px;
}

.hero-moderno-bg {
  position: absolute;
  inset: 0;
}
.hero-moderno-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-moderno-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  background:
    radial-gradient(ellipse at center,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,.15) 70%,
      rgba(0,0,0,.35) 100%),
    linear-gradient(180deg,
      rgba(0,0,0,.25) 0%,
      rgba(0,0,0,0) 25%,
      rgba(0,0,0,0) 70%,
      rgba(0,0,0,.55) 100%);
}
    rgba(233,30,140,.08) 70%,
    rgba(255,154,60,.15) 100%
  );
}

.hero-moderno-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: clamp(3rem, 8vw, 6rem);
  max-width: 580px;
}

.hero-moderno-tag {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  padding: .4rem 1rem;
  border-radius: 100px;
  display: inline-block;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-moderno-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 12vw, 8rem);
  font-weight: 700;
  color: #ffffff;
  line-height: .92;
  letter-spacing: -.025em;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 30px rgba(0,0,0,.25);
}
.hero-moderno-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  color: rgba(255,255,255,.92);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 540px;
  text-shadow: 0 2px 16px rgba(0,0,0,.3);
}

/* --- Sello flotante (Imagen del usuario) --- */
.hero-spinning-logo {
  position: absolute;
  bottom: 8%;
  right: 5%;
  width: 160px;
  height: 160px;
  z-index: 10;
  animation: spinImage 20s linear infinite;
  pointer-events: none; /* No interfiere con clics */
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3)); /* Sombra para que resalte sobre la foto */
}

@keyframes spinImage {
  100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  .hero-spinning-logo {
    width: 120px;
    height: 120px;
    bottom: 12%;
    right: 2%; 
  }
}

/* 3 CTAs apilados — estilo MODERNO TRENDY */
.hero-moderno-ctas {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  width: 100%;
  max-width: 320px;
}

.btn-moderno-reservar {
  display: block;
  width: 100%;
  padding: .9rem 1.5rem;
  background: var(--coral);
  color: var(--white);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(255,107,107,.45);
}
.btn-moderno-reservar:hover {
  background: #e85555;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(255,107,107,.55);
}

.btn-moderno-lookbook {
  display: block;
  width: 100%;
  padding: .9rem 1.5rem;
  background: var(--pink);
  color: var(--white);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(233,30,140,.4);
}
.btn-moderno-lookbook:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(233,30,140,.5);
}

.btn-moderno-seguir {
  display: block;
  width: 100%;
  padding: .9rem 1.5rem;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(255,154,60,.45);
}
.btn-moderno-seguir:hover {
  background: #e8892a;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(255,154,60,.55);
}

.hero-moderno-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.hero-moderno-scroll span {
  display: block;
  width: 22px; height: 36px;
  border: 2px solid var(--coral);
  border-radius: 12px;
  position: relative;
  opacity: .6;
}
.hero-moderno-scroll span::after {
  content: '';
  position: absolute;
  top: 5px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 7px;
  background: var(--coral);
  border-radius: 2px;
  animation: scrollBounce 1.8s ease infinite;
}
@keyframes scrollBounce {
  0%,100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  60% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ── SECTIONS shared ── */
.section { padding-block: clamp(4rem, 8vw, 7rem); }
.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: .75rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-inline: auto;
}

/* ── SERVICIOS ── */
.servicios { background: var(--cream); }
.servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%,320px), 1fr));
  gap: var(--gap);
}
.servicio-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}
.servicio-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  z-index: 2;
}
.servicio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Color accents per servicio-card — usa data-attribute en HTML para activar */
/* Los ::before se pintan con inline style en el article */
/* Fallback: gradient rosa genérico */
[data-color="coral"]::before { background: linear-gradient(90deg, #FF6B6B, #E91E8C); }
[data-color="rosa"]::before { background: linear-gradient(90deg, #E91E8C, #C4187A); }
[data-color="salmon"]::before { background: linear-gradient(90deg, #FF9A8B, #FF6B6B); }
[data-color="magenta"]::before { background: linear-gradient(90deg, #C4187A, #E91E8C); }
[data-color="dark"]::before { background: linear-gradient(90deg, #1A1A1A, #444); }
.servicio-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.servicio-icon {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #1a1a1a;
  padding: 1.5rem;
  border-radius: var(--radius);
}
.emblem-icon {
  width: 110px;
  height: 110px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 4px 16px rgba(201,168,76,.3));
}
.servicio-body { padding: 1.5rem; }
.servicio-body h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .5rem;
}
.servicio-desc {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.servicio-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center;
  font-size: .8125rem;
  color: var(--text-muted);
  margin-top: .75rem;
}
.precio {
  font-weight: 700;
  color: var(--coral);
}
.servicio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: .5rem;
}
.servicio-tag {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--pink);
  background: rgba(233,30,140,.08);
  border: 1px solid rgba(233,30,140,.2);
  padding: .2rem .6rem;
  border-radius: 100px;
}
.servicios-cta {
  margin-top: 2.5rem;
  text-align: center;
}

/* ── POPULARES GRID ── */
/* ── POPULARES MARQUEE ── */
.marquee-wrapper {
  display: flex;
  overflow: hidden;
  gap: 0;
  margin-bottom: 3rem;
  position: relative;
  background: var(--gradient-pastel);
  padding: 2rem 0;
  border-top: 1px solid rgba(201,168,76,.2);
  border-bottom: 1px solid rgba(201,168,76,.2);
}

/* Ensure marquee track is above background */
.marquee-track {
  display: flex;
  gap: 0;
  flex-shrink: 0;
  animation: marquee-scroll 25s linear infinite;
  position: relative;
  z-index: 1;
}
.marquee-wrapper:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-100%); } }

/* ── TYPOGRAPHIC MARQUEE STYLES ── */
.typographic-track {
  align-items: center;
}

.marquee-item {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--dark);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 2rem;
  text-transform: uppercase;
  padding-right: 2rem;
}

.marquee-dot {
  color: var(--coral);
  font-size: 2rem;
  font-weight: bold;
}
.popular-icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 50%;
  filter: drop-shadow(0 2px 8px rgba(201,168,76,.25));
}
.popular-info {
  flex: 1;
  min-width: 0;
}
.popular-info h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .2rem;
  line-height: 1.2;
}
.popular-desc {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.popular-price {
  font-size: .8rem;
  color: var(--coral);
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  text-align: right;
}
.popular-price strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
}

/* ── LISTA DE PRECIOS ── */
.precios-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.precio-categoria {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  border: 1px solid rgba(201,168,76,.18);
  box-shadow: var(--shadow-sm);
}
.cat-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--pink);
}
.cat-note {
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: .75rem;
  margin-top: -.5rem;
  font-style: italic;
}
.precio-lista {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.precio-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: .875rem;
  color: var(--text);
  line-height: 1.35;
  padding-bottom: .6rem;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.precio-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.precio-val {
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
  flex-shrink: 0;
  font-size: .9rem;
}

/* ── PAQUETES ── */
.paquetes { background: var(--white); }
.paquetes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%,280px), 1fr));
  gap: var(--gap);
  align-items: start;
}
.paquete-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  text-align: center;
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
}
.paquete-card:hover {
  border-color: var(--sage-light);
  transform: translateY(-3px);
}
.paquete-featured {
  background: var(--pink);
  color: var(--white);
}
.paquete-featured .paquete-price { color: var(--white); }
.paquete-featured .paquete-list li { color: rgba(255,255,255,.88); }
.paquete-featured .btn-outline {
  border-color: var(--white);
  color: var(--white);
}
.paquete-featured .btn-outline:hover {
  background: var(--white);
  color: var(--sage-dark);
}
.paquete-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .875rem;
  border-radius: 20px;
  white-space: nowrap;
}
.paquete-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--dark);
}
.paquete-featured .paquete-name { color: var(--white); }
.paquete-price {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--sage-dark);
  margin-bottom: 1.5rem;
  line-height: 1;
}
.paquete-price span {
  font-size: 1rem;
  font-weight: 400;
  font-family: var(--font-sans);
}
.paquete-list {
  text-align: left;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.paquete-list li {
  font-size: .9rem;
  color: var(--text);
  padding-left: 1.25rem;
  position: relative;
}
.paquete-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}
.paquete-featured .paquete-list li::before { color: var(--gold); }

/* ── EQUIPO ── */
.equipo { background: var(--cream); }
.equipo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--gap);
}
.equipo-card {
  display: flex;
  flex-direction: row;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  align-items: center;
  transition: transform 0.3s ease;
  padding: 1rem;
  gap: 1.5rem;
  width: calc(33.333% - (var(--gap) * 2 / 3));
  min-width: 280px;
}
.equipo-card:hover {
  transform: translateY(-5px);
}
.equipo-foto,
.equipo-foto-placeholder {
  flex-shrink: 0;
  width: 130px; 
  height: 160px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  object-fit: cover;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: .75rem;
  color: var(--white);
  line-height: 1.4;
}
.equipo-info {
  padding: 0.5rem;
  text-align: left;
  flex: 1;
}
.equipo-info h3 {
  font-family: var(--font-serif);
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .2rem;
}
.equipo-roll {
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.equipo-bio {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.65;
}
@media (max-width: 480px) {
  /* Ya es columna por defecto, no necesitamos cambiar mucho aquí */
}

/* ── RENTA (DEPRECATED — sección eliminada, MAZU no renta cabinas) ── */
.renta-img-placeholder img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }

/* ── GALERÍA ── */
.galeria { background: var(--white); }
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}
@media (min-width: 600px) {
  .galeria-grid { grid-template-columns: repeat(3, 1fr); }
}
.galeria-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--cream);
  position: relative;
}

/* Sello de agua (Watermark) en fotos de la galería */
.galeria-item::after {
  content: '';
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 50px;
  height: 50px;
  background-image: url('assets/logo-mazu-sello.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.8; /* Ligeramente transparente */
  pointer-events: none;
  z-index: 2;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)); /* Para que resalte en fondos claros u oscuros */
}
.galeria-placeholder {
  width: 100%; height: 100%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: .8125rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.galeria-item:hover .galeria-placeholder { background: var(--sage-light); color: var(--white); }
.galeria-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.galeria-item:hover img { transform: scale(1.08); }
.galeria-cta { margin-top: 2rem; text-align: center; }

/* ── RESEÑAS ── */
.reseñas { background: var(--cream); }
.reseñas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%,300px), 1fr));
  gap: var(--gap);
}
.reseña-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.precio-categoria {
  /* Deprecated, changed to details accordion */
}
.precio-accordion {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
  overflow: hidden;
}
.precio-accordion > summary {
  padding: 1.5rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none; /* Hide default arrow */
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s ease;
}
.precio-accordion > summary::-webkit-details-marker {
  display: none;
}
.precio-accordion > summary::after {
  content: '+';
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}
.precio-accordion[open] > summary::after {
  transform: rotate(45deg);
}
.precio-accordion[open] > summary {
  border-bottom: 1px solid var(--border);
  background: var(--cream);
}
.accordion-content {
  padding: 1.5rem;
  animation: slideDown 0.3s ease-out;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.reseña-stars {
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.reseña-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.reseña-autor {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--text-muted);
}
.reseñas-google { margin-top: 2.5rem; text-align: center; }
.google-link {
  color: var(--sage-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.google-link:hover { color: var(--sage); }

/* ── UBICACIÓN ── */
.ubicacion { background: var(--white); }
.ubicacion-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
}
@media (min-width: 768px) {
  .ubicacion-grid { grid-template-columns: 1fr 1.4fr; align-items: start; }
}
.info-item {
  margin-bottom: 1.5rem;
}
.info-item strong {
  display: block;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: .3rem;
}
.info-item p, .info-item a {
  font-size: .9375rem;
  color: var(--text);
  line-height: 1.6;
}
.info-item a:hover { color: var(--sage); }
.ubicacion-mapa iframe {
  border-radius: var(--radius);
  width: 100%;
  display: block;
}

/* ── FAQ ── */
.faq { background: var(--cream); }
.faq-list {
  max-width: 680px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  border: 1px solid rgba(122,158,126,.15);
}
.faq-item summary {
  padding: 1.1rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--dark);
  transition: var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--sage);
  font-weight: 300;
  transition: transform .2s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--sage-dark); }
.faq-item p {
  padding: 0 1.5rem 1.25rem;
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding-top: 4rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-col h4 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul a {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--white); }
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand .logo-mazu { color: var(--white); }
.footer-brand .logo-sub { color: var(--sage-light); }
.footer-brand p { font-size: .875rem; line-height: 1.65; margin-bottom: 1.25rem; }
.footer-social {
  display: flex;
  gap: .75rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  font-size: .8125rem;
  font-weight: 700;
  color: var(--sage-light);
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--sage);
  color: var(--white);
}
.footer-bottom {
  padding-block: 1.25rem;
}
.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
}
.footer-bottom p { font-size: .8125rem; color: rgba(255,255,255,.4); }
.footer-credit a { color: var(--sage-light); }
.footer-credit a:hover { color: var(--sage); }

/* ── AGENDAR FLOATING BUTTON ── */
.booking-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  background: var(--dark);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  transition: var(--transition);
  text-decoration: none;
}
.booking-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0,0,0,.35);
  background: var(--sage-dark);
  color: var(--white);
}
.booking-float svg { width: 24px; height: 24px; }
@media (max-width: 768px) {
  .booking-float {
    bottom: 1.5rem;
    right: 1.5rem;
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }
  .booking-float svg { width: 20px; height: 20px; }
}

/* ── UTILIDADES ── */
.br-hide { display: none; }
@media (min-width: 600px) { .br-hide { display: block; } }

/* ── ANIMACIONES ON SCROLL (clase .visible agregada por JS) ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE extras ── */
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
}


/* ── BOOKING SECTION ── */
.booking-section {
  background: var(--cream);
  overflow: hidden;
}

.booking-preview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .booking-preview { grid-template-columns: 340px 1fr; }
}

/* Phone mockup */
.booking-phone {
  width: 280px;
  margin: 0 auto;
  background: var(--dark);
  border-radius: 40px;
  padding: 14px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,.06);
  position: relative;
}
.booking-phone::before {
  content: '';
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 24px;
  background: var(--dark);
  border-radius: 0 0 16px 16px;
  z-index: 2;
}
.booking-phone-notch {
  width: 80px; height: 24px;
  background: var(--dark);
  border-radius: 0 0 16px 16px;
  margin: 0 auto 6px;
  position: relative;
  z-index: 3;
}
.booking-phone-screen {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  flex-direction: column;
}

.bp-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1rem .5rem;
  background: #fff;
}
.bp-logo { font-size: .75rem; color: var(--dark); }
.bp-logo strong { color: var(--pink); }
.bp-step { font-size: .65rem; color: var(--muted); font-weight: 600; }
.bp-step strong { color: var(--pink); }
.bp-progress { height: 3px; background: var(--border); }
.bp-progress-fill { height: 100%; background: linear-gradient(90deg,var(--coral),var(--pink)); }

.bp-content {
  padding: 1rem .875rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.bp-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .2rem;
}
.bp-sub { font-size: .7rem; color: var(--muted); margin-bottom: .875rem; }

.bp-stylist-list { display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.bp-stylist {
  display: flex;
  align-items: center;
  gap: .625rem;
  padding: .6rem .75rem;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: border-color .2s;
}
.bp-stylist.selected { border-color: var(--pink); background: rgba(233,30,140,.04); }
.bp-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  font-family: var(--serif);
}
.bp-stylist-info { flex: 1; }
.bp-stylist-info strong { font-size: .78rem; font-weight: 700; display: block; color: var(--dark); }
.bp-stylist-info span { font-size: .65rem; color: var(--muted); }
.bp-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem;
}
.bp-stylist.selected .bp-check {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
}

.bp-nav { margin-top: auto; padding-top: .875rem; }
.bp-btn-next {
  width: 100%;
  padding: .7rem;
  background: var(--coral);
  color: #fff;
  border-radius: 10px;
  font-size: .8rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: .03em;
  box-shadow: 0 3px 14px rgba(255,107,107,.4);
}

/* Side copy */
.booking-side {}
.booking-side-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
.booking-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
  list-style: none;
  counter-reset: none;
}
.booking-steps li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.bs-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--coral));
  display: flex; align-items: center; justify-content: center;
  font-size: .875rem;
  font-weight: 700;
  color: #fff;
}
.booking-steps li div { font-size: .9375rem; color: var(--text); line-height: 1.55; }
.booking-steps li div strong { font-weight: 700; display: block; color: var(--dark); }
.booking-steps li div span { color: var(--muted); font-size: .875rem; }

.booking-cta-wrap { display: flex; flex-direction: column; gap: .75rem; }
.btn-booking-full {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--pink), var(--coral));
  color: #fff;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(233,30,140,.4);
  text-align: center;
  width: fit-content;
}
.btn-booking-full:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(233,30,140,.5);
}
.booking-cta-note {
  font-size: .8rem;
  color: var(--muted);
}

/* ── Hero: ajustes para pantallas grandes ── */
@media (min-width: 1280px) {
  .hero-moderno-content {
    max-width: 680px;
    padding-bottom: clamp(5rem, 10vw, 8rem);
  }
  border-bottom: 2px solid var(--pink);
}
/* ── Dashboard & CRM Redesign ── */

/* Typography & Layout Tweaks */
.dash-user {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  background: var(--cream);
  padding: 1.5rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 2rem;
}
.dash-user-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 3px solid var(--pink);
}
.dash-user-info {
  display: flex;
  flex-direction: column;
}

/* Tabs */
.dash-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--border);
}
.dash-tab {
  padding: 0.75rem 1.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  border: none;
  background: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
}
.dash-tab:hover {
  color: var(--pink-dark);
}
.dash-tab.active {
  color: var(--pink);
  border-bottom: 2px solid var(--pink);
}

.tab-content {
  display: none;
  animation: fadeIn 0.3s ease;
}
.tab-content.active {
  display: block;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Status Badges & Selects */
.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.status-pendiente { background: #FFF3CD; color: #856404; }
.status-confirmada { background: #D1ECF1; color: #0C5460; }
.status-en_curso { background: #E2D9F3; color: #381A6B; }
.status-completada { background: #D4EDDA; color: #155724; }
.status-cancelada { background: #F8D7DA; color: #721C24; }
.status-no_show { background: #E2E3E5; color: #383D41; }

.status-select {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  outline: none;
  background: var(--white);
  transition: var(--transition);
}
.status-select:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px var(--pink-light);
}

/* Toast Notifications */
#toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.toast {
  background: var(--dark);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: slideInUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.toast.success { border-left: 4px solid var(--coral); }
.toast.error { border-left: 4px solid #dc3545; }
.toast-hiding { animation: fadeOutRight 0.3s ease forwards; }

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(100%) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes fadeOutRight {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(100%); }
}

/* Search Bar */
.search-input {
  padding: 0.6rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  width: 250px;
  outline: none;
  transition: var(--transition);
}
.search-input:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px var(--pink-light);
}

/* Better Buttons */
.btn-wa {
  background: #25D366;
  color: white;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
}
.btn-wa:hover {
  background: #128C7E;
}
