/* =============================================================================
   LessBeauti — Landing Page CSS
   Diseño pixel-perfect basado en LessWeb.png
   Fuente: Poppins (Google Fonts)
   ============================================================================= */

/* ── Variables ─────────────────────────────────────────────────────────────── */
:root {
  --rosa:          #FF4FA0;
  --rosa-hover:    #E83A8F;
  --rosa-claro:    #FFD8EC;
  --rosa-suave:    #FFF0F8;
  --rosa-pale:     #FFF8FC;
  --morado:        #8B3DFF;
  --morado-dark:   #5A238E;
  --morado-deeper: #3D1265;
  --blanco:        #FFFFFF;
  --fondo:         #FFF8FC;
  --texto:         #3B214A;
  --texto-sec:     #7A5C8A;
  --texto-muted:   #B090C0;
  --borde:         #F2D8E8;

  --grad-primary:  linear-gradient(135deg, #FF4FA0 0%, #8B3DFF 100%);
  --grad-rosa:     linear-gradient(135deg, #FF78B8 0%, #FF4FA0 100%);
  --grad-morado:   linear-gradient(180deg, #5A238E 0%, #3D1265 100%);
  --grad-hero:     linear-gradient(150deg, #FFF0F8 0%, #FFF8FC 50%, #F6F0FF 100%);

  --shadow-xs:    0 1px 4px rgba(90, 35, 142, 0.06);
  --shadow-sm:    0 2px 10px rgba(90, 35, 142, 0.08);
  --shadow:       0 4px 20px rgba(90, 35, 142, 0.12);
  --shadow-md:    0 8px 32px rgba(90, 35, 142, 0.16);
  --shadow-lg:    0 16px 48px rgba(90, 35, 142, 0.20);
  --shadow-rosa:  0 4px 20px rgba(255, 79, 160, 0.35);
  --shadow-btn:   0 6px 24px rgba(255, 79, 160, 0.40);

  --radius-sm:  10px;
  --radius:     16px;
  --radius-lg:  24px;
  --radius-xl:  32px;
  --radius-pill: 9999px;

  --trans:      all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --trans-slow: all 0.40s cubic-bezier(0.4, 0, 0.2, 1);

  --header-h:  76px;
  --max-w:     1200px;
  --font:      'Poppins', system-ui, sans-serif;
}

/* ── Reset ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--fondo);
  color: var(--texto);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }
button { font-family: var(--font); cursor: pointer; }
ul, ol { list-style: none; }

/* ── Utilidades ─────────────────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }

.section { padding: 96px 0; }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

/* ── Tipografía ─────────────────────────────────────────────────────────────── */
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--texto);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.section-title em {
  font-style: normal;
  position: relative;
  color: inherit;
}

.section-title em::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 3px;
  background: var(--grad-primary);
  border-radius: 2px;
}

.section-title--light { color: #fff; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--rosa);
  margin-bottom: 14px;
}

.eyebrow svg { width: 13px; height: 13px; }

.eyebrow--light {
  color: rgba(255, 255, 255, 0.65);
}

.text-accent {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Botones ─────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  transition: var(--trans);
  white-space: nowrap;
  line-height: 1;
  letter-spacing: 0.2px;
}

.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn:active { transform: scale(0.97); }

/* Primario — gradiente */
.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(255, 79, 160, 0.55);
  transform: translateY(-2px);
}

/* Tamaños */
.btn-sm  { padding: 9px 20px;   font-size: 0.8rem; }
.btn-lg  { padding: 15px 36px;  font-size: 0.95rem; }
.btn-xl  { padding: 18px 44px;  font-size: 1rem; font-weight: 700; }

/* Outline blanco */
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  transition: var(--trans);
  letter-spacing: 0.5px;
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

/* =============================================================================
   NAVBAR
   ============================================================================= */
.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 248, 252, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--trans-slow);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--borde);
  box-shadow: var(--shadow-xs);
}

.navbar__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Logo */
/* Logo navbar */
.navbar__logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: var(--trans);
}

.navbar__logo:hover { opacity: 0.85; }

.navbar__logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Nav links */
.navbar__nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-link {
  position: relative;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--texto-sec);
  transition: var(--trans);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px; right: 14px;
  height: 2px;
  border-radius: 1px;
  background: var(--rosa);
  transform: scaleX(0);
  transition: var(--trans);
  transform-origin: center;
}

.nav-link:hover,
.nav-link.active {
  color: var(--rosa);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.navbar__cta { flex-shrink: 0; }

/* Hamburger */
.navbar__hamburger {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  border-radius: 8px;
  color: var(--texto);
  margin-left: auto;
  transition: var(--trans);
}
.navbar__hamburger:hover { background: var(--rosa-suave); color: var(--rosa); }
.navbar__hamburger svg { display: block; }

/* =============================================================================
   HERO
   ============================================================================= */
.hero {
  min-height: 100vh;
  padding-top: var(--header-h);
  background: linear-gradient(150deg, #FFC8E4 0%, #FFD8EE 20%, #FFE8F5 50%, #FFF4FA 80%, #FBF0FF 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Blobs decorativos */
.hero__blob {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

/* Onda principal izquierda — rosa visible */
.hero__blob--1 {
  top: -8%;
  left: -6%;
  width: 62%;
  height: 140%;
  background: radial-gradient(
    ellipse at 58% 52%,
    rgba(255, 90, 160, 0.38) 0%,
    rgba(255, 155, 205, 0.22) 38%,
    rgba(255, 205, 230, 0.10) 60%,
    transparent 75%
  );
  border-radius: 0 46% 56% 0 / 0 36% 46% 0;
}

/* Segunda onda — más suave, capas */
.hero__blob--2 {
  top: 12%;
  left: -2%;
  width: 48%;
  height: 108%;
  background: rgba(255, 120, 185, 0.16);
  border-radius: 0 56% 66% 0 / 0 46% 56% 0;
}

/* Acento morado derecha */
.hero__blob--3 {
  bottom: -15%;
  right: -5%;
  width: 38%;
  height: 55%;
  background: radial-gradient(ellipse, rgba(180, 80, 255, 0.07) 0%, transparent 70%);
}

/* Layout principal hero */
.hero__inner {
  flex: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding: 64px 28px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ── Logo circular ── */
.hero__logo-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__logo-wrap { position: relative; }

.hero__logo-circle {
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: transparent;
  border: none;
  box-shadow:
    0 0 0 20px rgba(255, 79, 160, 0.10),
    0 32px 72px rgba(255, 79, 160, 0.28);
  position: relative;
  overflow: visible;
  animation: float 5s ease-in-out infinite;
}

/* Logo — recortado al círculo con clip-path */
.hero__logo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  clip-path: circle(50% at 50% 50%);
  display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 6px 20px rgba(255, 79, 160, 0.22));
}

.hero__logo-img:hover {
  transform: scale(1.03);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.hero__logo-decor {
  position: absolute;
  color: rgba(255,255,255,0.50);
}
.hero__logo-decor--tl { top: 20px; left: 24px; }
.hero__logo-decor--tr { top: 16px; right: 20px; }
.hero__logo-decor svg { display: block; }

.hero__logo-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  padding: 24px;
}

.hero__brand {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.hero__brand em {
  font-style: italic;
  font-weight: 900;
}

.hero__brand-sub {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.70);
  letter-spacing: 3.5px;
  text-transform: uppercase;
  font-weight: 500;
}

.hero__tools {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
  color: rgba(255,255,255,0.60);
}
.hero__tools svg { width: 20px; height: 20px; }

/* Partículas */
.hero__sparkle {
  position: absolute;
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  pointer-events: none;
}
.hero__sparkle--1 { top: 18%; right: -2%; font-size: 0.9rem; animation: sparkle 2.5s ease-in-out infinite; }
.hero__sparkle--2 { bottom: 22%; left: -1%; font-size: 0.7rem; animation: sparkle 2.5s ease-in-out 0.8s infinite; }
.hero__sparkle--3 { top: 60%; right: 5%; font-size: 0.8rem; animation: sparkle 2.5s ease-in-out 1.4s infinite; }

@keyframes sparkle {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.3); }
}

/* ── Contenido hero ── */
.hero__content-col {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rosa-claro);
  color: var(--morado-dark);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  width: fit-content;
  border: 1px solid rgba(255,79,160,0.20);
}
.hero__eyebrow svg { width: 13px; height: 13px; color: var(--rosa); }

.hero__title {
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 800;
  color: var(--texto);
  line-height: 1.15;
  letter-spacing: -1px;
}

.hero__title-accent {
  display: block;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1rem;
  color: var(--texto-sec);
  line-height: 1.72;
  max-width: 420px;
}

.hero__subtitle strong { color: var(--rosa); font-weight: 600; }

.hero__btn { align-self: flex-start; }

/* ── WhatsApp ── */
.hero__whatsapp {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  transition: var(--trans);
  z-index: 2;
}
.hero__whatsapp:hover { transform: translateY(-50%) scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.60); }
.hero__whatsapp svg { width: 26px; height: 26px; }

/* ── Features ── */
.hero__features {
  position: relative;
  z-index: 1;
  background: #fff;
  border-top: 1px solid var(--borde);
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.hero__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 16px 8px;
  border-radius: var(--radius);
  transition: var(--trans);
}

.hero__feature:hover { background: var(--rosa-suave); }

.hero__feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--rosa-suave);
  border: 2px solid var(--rosa-claro);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--morado);
  transition: var(--trans);
}

.hero__feature:hover .hero__feature-icon {
  background: var(--rosa-claro);
  color: var(--rosa);
}

.hero__feature-icon svg { width: 24px; height: 24px; }

.hero__feature span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--texto-sec);
  line-height: 1.4;
}

/* =============================================================================
   SERVICIOS
   ============================================================================= */
.services { background: #fff; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--borde);
  transition: var(--trans-slow);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-color: var(--rosa-claro);
}

/* Imagen de la tarjeta */
.service-card__img {
  height: 210px;
  overflow: hidden;
  position: relative;
  background: var(--rosa-suave);     /* fallback mientras carga */
  flex-shrink: 0;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card__img img {
  transform: scale(1.09);
}

/* Degradados de respaldo (se aplican si no carga la imagen) */
.service-card__img--corte       { background: linear-gradient(145deg, #FFE4F0 0%, #FFAAD0 100%); }
.service-card__img--coloracion  { background: linear-gradient(145deg, #EAD8FF 0%, #C890FF 100%); }
.service-card__img--peinados    { background: linear-gradient(145deg, #FFD8EC 0%, #FF90C0 100%); }
.service-card__img--manicure    { background: linear-gradient(145deg, #FFE0F4 0%, #FFB0DC 100%); }
.service-card__img--pestanas    { background: linear-gradient(145deg, #DDD8FF 0%, #A898FF 100%); }
.service-card__img--tratamientos{ background: linear-gradient(145deg, #D4F4E0 0%, #90D8B4 100%); }

/* Cuerpo de la tarjeta */
.service-card__body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.service-card__body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--texto);
}

.service-card__body p {
  font-size: 0.82rem;
  color: var(--texto-sec);
  line-height: 1.5;
  flex: 1;
}

.service-card__body .btn {
  align-self: flex-start;
  margin-top: 10px;
}

/* =============================================================================
   SOBRE NOSOTROS
   ============================================================================= */
.about {
  background: var(--grad-morado);
  position: relative;
  overflow: hidden;
  padding: 0;
}

.about::after {
  content: '';
  position: absolute;
  top: -15%;
  right: -8%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255,79,160,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.about__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}

/* Foto del salón */
.about__photo {
  position: relative;
  overflow: hidden;
}

.about__photo-frame {
  width: 100%;
  height: 100%;
}

.about__salon-img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about__photo:hover .about__salon-img {
  transform: scale(1.04);
}

/* Contenido */
.about__content {
  padding: 68px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  position: relative;
  z-index: 1;
}

.about__divider {
  width: 48px;
  height: 4px;
  border-radius: 2px;
  background: var(--grad-primary);
  margin-top: -8px;
}

.about__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.78;
}

/* Features */
.about__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about__feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 79, 160, 0.20);
  border: 1px solid rgba(255, 79, 160, 0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #FFD8EC;
  transition: var(--trans);
}

.about__feature-icon svg { width: 18px; height: 18px; }

.about__feature:hover .about__feature-icon {
  background: rgba(255,79,160,0.35);
  transform: scale(1.08);
}

.about__feature-text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}

.about__feature-text span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.5;
}

/* =============================================================================
   AGENDA TU CITA
   ============================================================================= */
.agenda {
  background: linear-gradient(145deg, #FFF8FC 0%, #FFECF5 50%, #F6EEFF 100%);
  position: relative;
  overflow: hidden;
}

.agenda__blob {
  position: absolute;
  bottom: -25%;
  left: -8%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,61,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.agenda__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

/* Columna izquierda */
.agenda__left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Pasos */
.agenda__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.agenda__step {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 0;
}

.agenda__step-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-rosa);
  font-weight: 700;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.agenda__connector {
  width: 2px;
  height: 24px;
  background: var(--rosa-claro);
  margin-left: 23px;
  border-radius: 1px;
}

.agenda__step-body {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--texto-sec);
}

.agenda__step-body svg { width: 20px; height: 20px; color: var(--rosa); flex-shrink: 0; }
.agenda__step-body strong { font-size: 0.9rem; font-weight: 600; color: var(--texto); }

.agenda__btn { align-self: flex-start; }

.agenda__note {
  font-size: 0.78rem;
  color: var(--texto-muted);
  text-align: left;
  margin-top: -12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Columna derecha */
.agenda__right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.agenda__cal-heading {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--texto);
}

/* ── Calendario ── */
.calendar {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow);
  border: 1px solid var(--borde);
}

.calendar__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.calendar__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--texto);
}

.calendar__nav-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--rosa-suave);
  border: 1px solid var(--borde);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rosa);
  transition: var(--trans);
}
.calendar__nav-btn:hover { background: var(--rosa-claro); }
.calendar__nav-btn svg { display: block; }

.calendar__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  margin-bottom: 6px;
}

.calendar__weekdays span {
  text-align: center;
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--texto-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 2px;
}

.calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--texto);
  cursor: pointer;
  transition: var(--trans);
  border: none;
  background: transparent;
  font-family: var(--font);
}

.cal-day:hover:not(.cal-day--empty):not(.cal-day--today) {
  background: var(--rosa-suave);
  color: var(--rosa);
}

.cal-day--empty { cursor: default; }

.cal-day--today {
  background: var(--grad-primary);
  color: #fff;
  font-weight: 700;
  box-shadow: var(--shadow-rosa);
}

.cal-day--selected:not(.cal-day--today) {
  background: var(--rosa-claro);
  color: var(--morado-dark);
  font-weight: 700;
}

/* ── Horarios ── */
.timeslots {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--borde);
}

.timeslots__header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--texto);
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.timeslots__header svg { width: 15px; height: 15px; color: var(--rosa); }

.timeslots__date {
  color: var(--texto-sec);
  font-weight: 500;
  font-size: 0.78rem;
}

.timeslots__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.timeslot {
  padding: 9px 6px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--borde);
  background: #fff;
  font-family: var(--font);
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--texto-sec);
  transition: var(--trans);
  text-align: center;
}

.timeslot:hover {
  border-color: var(--rosa);
  color: var(--rosa);
  background: var(--rosa-suave);
}

.timeslot--active {
  background: var(--grad-primary);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-rosa);
}

.timeslots__promo {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px;
  background: var(--rosa-suave);
  border-radius: var(--radius-sm);
  border: 1px dashed var(--rosa-claro);
}

.timeslots__promo svg { width: 16px; height: 16px; color: var(--rosa); flex-shrink: 0; margin-top: 2px; }
.timeslots__promo p { font-size: 0.78rem; color: var(--texto-sec); line-height: 1.55; }
.timeslots__promo strong { color: var(--texto); }

/* =============================================================================
   FOOTER
   ============================================================================= */
.footer {
  background: var(--grad-morado);
  position: relative;
  overflow: hidden;
  padding: 72px 0 0;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--grad-primary);
}

.footer::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,79,160,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  position: relative;
  z-index: 1;
}

/* Brand */
.footer__logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  display: inline-block;
  margin-bottom: 14px;
}

.footer__logo strong {
  background: linear-gradient(135deg, #fff 0%, #FFB0D5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer__tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
  margin-bottom: 22px;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
}

.footer__social a:hover {
  background: var(--rosa);
  border-color: var(--rosa);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-rosa);
}

.footer__social svg { display: block; }

/* Columnas */
.footer__col-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,0.38);
  font-weight: 700;
  margin-bottom: 18px;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer__list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.5;
}

.footer__list svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; color: var(--rosa); }

.footer__list--schedule li { gap: 0; }
.footer__closed { color: rgba(255,79,160,0.80) !important; }

.footer__list--links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.68);
  transition: var(--trans);
  display: block;
  padding: 1px 0;
}
.footer__list--links a:hover { color: var(--rosa-claro); transform: translateX(4px); }

/* Bottom bar */
.footer__bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.35);
  position: relative;
  z-index: 1;
}

.footer__bottom svg { display: inline; vertical-align: middle; }

/* =============================================================================
   SCROLL TO TOP
   ============================================================================= */
.scroll-top-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-btn);
  transition: var(--trans);
  z-index: 999;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}

.scroll-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.scroll-top-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(255,79,160,0.55);
}

.scroll-top-btn svg { display: block; }

/* =============================================================================
   ANIMACIONES — Intersection Observer
   ============================================================================= */
[data-animate] {
  opacity: 0;
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.2, 0, 0.2, 1);
}

[data-animate="fade-up"]    { transform: translateY(36px); }
[data-animate="fade-right"] { transform: translateX(-44px); }
[data-animate="fade-left"]  { transform: translateX(44px); }

[data-animate].in-view {
  opacity: 1;
  transform: translate(0, 0);
}

[data-delay="80"]  { transition-delay: 0.08s; }
[data-delay="100"] { transition-delay: 0.10s; }
[data-delay="160"] { transition-delay: 0.16s; }
[data-delay="200"] { transition-delay: 0.20s; }
[data-delay="240"] { transition-delay: 0.24s; }
[data-delay="300"] { transition-delay: 0.30s; }
[data-delay="320"] { transition-delay: 0.32s; }
[data-delay="400"] { transition-delay: 0.40s; }

/* =============================================================================
   RESPONSIVE
   ============================================================================= */

/* ── Tablet ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .about__content { padding: 56px 44px; }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ── Mobile grande ── */
@media (max-width: 900px) {
  /* Navbar mobile */
  .navbar__nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 16px;
    border-bottom: 1px solid var(--borde);
    box-shadow: var(--shadow-md);
    gap: 2px;
  }
  .navbar__nav.open { display: flex; }
  .navbar__nav .nav-link { border-radius: var(--radius-sm); padding: 11px 16px; }
  .navbar__nav .nav-link::after { display: none; }
  .navbar__cta { display: none; }
  .navbar__hamburger { display: flex; }
  .navbar__container { position: relative; }

  /* Hero */
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 48px 24px 32px;
    gap: 40px;
  }
  .hero__logo-col { order: 2; }
  .hero__content-col { order: 1; align-items: center; }
  .hero__content-col .hero__subtitle { max-width: 100%; }
  .hero__btn { align-self: center; }
  .hero__logo-circle { width: 280px; height: 280px; }
  .hero__features { grid-template-columns: repeat(2, 1fr); }
  .hero__whatsapp { display: none; }

  /* About */
  .about__inner { grid-template-columns: 1fr; }
  .about__photo-placeholder { min-height: 280px; }
  .about__content { padding: 48px 28px; }

  /* Agenda */
  .agenda__inner { grid-template-columns: 1fr; gap: 40px; }
  .agenda__btn { align-self: center; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ── Mobile chico ── */
@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero__features { grid-template-columns: repeat(2, 1fr); padding: 20px 16px; }
  .hero__logo-circle { width: 220px; height: 220px; }
  .hero__title { font-size: 1.85rem; }
  .section { padding: 72px 0; }
  .timeslots__grid { grid-template-columns: repeat(3, 1fr); }
  .agenda__btn { width: 100%; justify-content: center; }
  .footer__inner { padding: 0 20px; }
}