/* ============================================================
   FUTURE INSIGHT — PAQUETE 2: CATÁLOGO + CONVERSIÓN
   Variables CSS: edita aquí para personalizar colores y fuentes
   ============================================================ */

:root {
  /* ── COLORES DEL NEGOCIO (EDITAR AQUÍ) ── */
  --color-primary:    #C8416B;
  --color-secondary:  #2D6A4F;
  --color-accent:     #FF8FAB;
  --color-dark:       #1F2937;
  --color-whatsapp:   #25D366;

  /* ── NEUTROS ── */
  --color-white:      #FFFFFF;
  --color-gray-50:    #F9FAFB;
  --color-gray-100:   #F3F4F6;
  --color-gray-200:   #E5E7EB;
  --color-gray-400:   #9CA3AF;
  --color-gray-600:   #4B5563;

  /* ── TIPOGRAFÍA ── */
  --font-base:        'Inter', system-ui, -apple-system, sans-serif;
  --line-height:      1.6;

  /* ── ESPACIADO ── */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   1.5rem;
  --space-lg:   3rem;
  --space-xl:   5rem;

  /* ── LAYOUT ── */
  --container-max:  1200px;
  --container-pad:  1.25rem;
  --radius-sm:      0.375rem;
  --radius-md:      0.75rem;
  --radius-lg:      1.25rem;
  --radius-full:    9999px;

  /* ── SOMBRAS ── */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 10px 40px rgba(0,0,0,.14);

  --transition: 0.25s ease;
}

/* ============================================================
   RESET Y BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-base); color: var(--color-dark); background: var(--color-white); line-height: var(--line-height); overflow-x: hidden; }
img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
select { font: inherit; }

/* ============================================================
   UTILIDADES
   ============================================================ */
.container { max-width: var(--container-max); margin-inline: auto; padding-inline: var(--container-pad); }
.accent    { color: var(--color-accent); }

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(200,65,107,0.1);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}
.section-title    { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; line-height: 1.2; margin-bottom: var(--space-sm); }
.section-subtitle { font-size: 1.05rem; color: var(--color-gray-600); max-width: 540px; }
.section-header   { text-align: center; margin-bottom: var(--space-lg); }
.section-header .section-subtitle { margin-inline: auto; }
.section-cta      { display: flex; gap: var(--space-sm); justify-content: center; flex-wrap: wrap; margin-top: var(--space-lg); }
.divider          { border: none; border-top: 1px solid var(--color-gray-200); margin: var(--space-md) 0; }

/* ============================================================
   BOTONES
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-size: 0.9375rem; font-weight: 600;
  transition: all var(--transition); white-space: nowrap;
}
.btn--primary    { background: var(--color-primary); color: var(--color-white); box-shadow: 0 4px 20px rgba(200,65,107,0.35); }
.btn--primary:hover { background: var(--color-secondary); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(45,106,79,0.35); }
.btn--outline    { background: transparent; color: var(--color-white); border: 2px solid rgba(255,255,255,0.6); }
.btn--outline:hover { background: rgba(255,255,255,0.1); border-color: white; }
.btn--outline-dark { background: transparent; color: var(--color-dark); border: 2px solid var(--color-gray-200); }
.btn--outline-dark:hover { border-color: var(--color-primary); color: var(--color-primary); }
.btn--whatsapp   { background: var(--color-whatsapp); color: white; box-shadow: 0 4px 20px rgba(37,211,102,0.35); }
.btn--whatsapp:hover { background: #1da851; transform: translateY(-1px); }
.btn--full       { width: 100%; justify-content: center; }

/* ============================================================
   HEADER
   ============================================================ */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1rem 0; transition: background var(--transition), box-shadow var(--transition), padding var(--transition); }
.header.scrolled { background: var(--color-white); box-shadow: var(--shadow-sm); padding: 0.6rem 0; }
.nav { display: flex; align-items: center; justify-content: space-between; }
.nav__logo { display: flex; align-items: center; gap: 0.5rem; }
.nav__logo-img { height: 72px; width: 72px; object-fit: cover; border-radius: 50%; flex-shrink: 0; }
.nav__logo-text { font-size: 1.4rem; font-weight: 700; color: white; transition: color var(--transition); }
.header.scrolled .nav__logo-text { color: var(--color-dark); }
.nav__menu { display: flex; align-items: center; gap: 0.125rem; }
.nav__link { padding: 0.4rem 0.75rem; font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.9); border-radius: var(--radius-sm); transition: all var(--transition); }
.nav__link:hover { color: white; background: rgba(255,255,255,0.12); }
.header.scrolled .nav__link { color: var(--color-gray-600); }
.header.scrolled .nav__link:hover { color: var(--color-primary); background: rgba(200,65,107,0.08); }
.nav__link--cta { background: var(--color-primary); color: white !important; padding: 0.4rem 1.1rem; }
.nav__link--cta:hover { background: var(--color-secondary) !important; }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav__hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: all var(--transition); }
.header.scrolled .nav__hamburger span { background: var(--color-dark); }
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; }
.hero__img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(45,106,79,0.80) 0%, rgba(200,65,107,0.50) 100%); }
.hero__content { position: relative; z-index: 1; padding-top: 6rem; padding-bottom: 4rem; max-width: 720px; }
.hero__eyebrow { font-size: 0.875rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 0.75rem; }
.hero__title { font-size: clamp(2.25rem, 6vw, 4rem); font-weight: 800; line-height: 1.1; color: white; margin-bottom: var(--space-md); }
.hero__subtitle { font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,0.85); max-width: 520px; margin-bottom: var(--space-lg); }
.hero__actions { display: flex; gap: var(--space-sm); flex-wrap: wrap; margin-bottom: var(--space-lg); }
.hero__stats { display: flex; gap: var(--space-lg); flex-wrap: wrap; }
.stat strong { display: block; font-size: 1.75rem; font-weight: 800; color: var(--color-accent); line-height: 1; }
.stat span   { font-size: 0.8rem; color: rgba(255,255,255,0.75); }

/* ============================================================
   ABOUT
   ============================================================ */
.about { padding: var(--space-xl) 0; background: white; position: relative; overflow: hidden; }
.about::before { content: ''; position: absolute; inset: 0; background: url('assets/fondo_nostros.png') center / cover no-repeat; opacity: 0.1; pointer-events: none; z-index: 0; }
.about > .container { position: relative; z-index: 1; }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); align-items: center; }
.about__media { position: relative; }
.about__img { width: 100%; height: 460px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about__badge { position: absolute; bottom: -1.5rem; right: -1.5rem; background: var(--color-primary); color: white; border-radius: var(--radius-md); padding: 1rem 1.25rem; text-align: center; box-shadow: var(--shadow-md); }
.about__badge strong { display: block; font-size: 2rem; font-weight: 800; line-height: 1; }
.about__badge span   { font-size: 0.8rem; opacity: .9; }
.about__text { padding-left: var(--space-md); }
.about__text p { color: var(--color-gray-600); margin-bottom: var(--space-sm); }
.about__features { display: flex; flex-direction: column; gap: 0.6rem; margin: var(--space-md) 0; }
.about__features li { display: flex; align-items: center; gap: 0.6rem; font-weight: 500; }
.check { color: var(--color-primary); font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }

/* ============================================================
   SERVICIOS
   ============================================================ */
.services { padding: var(--space-xl) 0; background: var(--color-gray-50); position: relative; overflow: hidden; }
.services::before { content: ''; position: absolute; inset: 0; background: url('assets/fondo_nuestros_servicios.png') center / cover no-repeat; opacity: 0.12; pointer-events: none; z-index: 0; }
.services > .container { position: relative; z-index: 1; }
.services__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--space-md); }
.service-card { background: white; border-radius: var(--radius-lg); padding: var(--space-md) var(--space-md) var(--space-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--color-gray-100); transition: all var(--transition); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--color-primary), var(--color-accent)); transform: scaleX(0); transform-origin: left; transition: transform var(--transition); }
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon { width: 52px; height: 52px; background: rgba(200,65,107,0.1); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-md); color: var(--color-primary); }
.service-card__icon svg { width: 26px; height: 26px; }
.service-card__title { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.service-card__desc  { font-size: 0.9rem; color: var(--color-gray-600); }

/* ============================================================
   CATÁLOGO
   ============================================================ */
.catalog {
  padding: var(--space-xl) 0;
  background-color: #F0EEF4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='500' height='500'%3E%3Cg fill='%23F28DB3'%3E%3Cpath opacity='0.45' d='M75,41 L77.8,55 L75,69 L72.2,55 Z M61,55 L75,52.2 L89,55 L75,57.8 Z'/%3E%3Cpath opacity='0.35' d='M385,233 L387.4,245 L385,257 L382.6,245 Z M373,245 L385,242.6 L397,245 L385,247.4 Z'/%3E%3Cpath opacity='0.3' d='M385,35 L387,45 L385,55 L383,45 Z M375,45 L385,43 L395,45 L385,47 Z'/%3E%3Cpath opacity='0.3' d='M205,406 L206.8,415 L205,424 L203.2,415 Z M196,415 L205,413.2 L214,415 L205,416.8 Z'/%3E%3Cpath opacity='0.4' d='M95,464 L97.2,475 L95,486 L92.8,475 Z M84,475 L95,472.8 L106,475 L95,477.2 Z'/%3E%3C/g%3E%3Cg fill='%23C8416B'%3E%3Cpath opacity='0.3' d='M255,117 L256.6,125 L255,133 L253.4,125 Z M247,125 L255,123.4 L263,125 L255,126.6 Z'/%3E%3Cpath opacity='0.25' d='M145,350 L146,355 L145,360 L144,355 Z M140,355 L145,354 L150,355 L145,356 Z'/%3E%3Cpath opacity='0.25' d='M25,198 L26.4,205 L25,212 L23.6,205 Z M18,205 L25,203.6 L32,205 L25,206.4 Z'/%3E%3Cpath opacity='0.2' d='M295,290 L296,295 L295,300 L294,295 Z M290,295 L295,294 L300,295 L295,296 Z'/%3E%3Cpath opacity='0.28' d='M455,388 L456.4,395 L455,402 L453.6,395 Z M448,395 L455,393.6 L462,395 L455,396.4 Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 500px 500px;
}

.catalog__filters {
  display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center;
  margin-bottom: var(--space-lg);
}
.filter-btn {
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem; font-weight: 500;
  color: var(--color-gray-600);
  background: var(--color-gray-100);
  border: 2px solid transparent;
  transition: all var(--transition);
}
.filter-btn:hover  { border-color: var(--color-primary); color: var(--color-primary); }
.filter-btn.active { background: var(--color-primary); color: white; border-color: var(--color-primary); }

.catalog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-md);
}

.product-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-200);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex; flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.product-card__img-wrapper {
  position: relative;
  overflow: hidden;
  height: 200px;
  background: var(--color-gray-100);
}
.product-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card__img { transform: scale(1.05); }

.product-card__badge {
  position: absolute; top: 0.75rem; left: 0.75rem;
  background: var(--color-primary); color: white;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.2rem 0.6rem; border-radius: var(--radius-full);
}

.product-card__body { padding: var(--space-md); flex: 1; display: flex; flex-direction: column; }
.product-card__name { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.product-card__desc { font-size: 0.875rem; color: var(--color-gray-600); flex: 1; margin-bottom: var(--space-sm); }
.product-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; margin-top: auto; }
.product-card__price { font-size: 1.2rem; font-weight: 800; color: var(--color-primary); }
.product-card__cta { padding: 0.4rem 1rem; font-size: 0.8rem; border-radius: var(--radius-full); background: var(--color-primary); color: white; font-weight: 600; transition: background var(--transition); }
.product-card__cta:hover { background: var(--color-secondary); }

/* ============================================================
   GALERÍA + LIGHTBOX
   ============================================================ */
.gallery { padding: var(--space-xl) 0; background: var(--color-gray-50); }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  background: var(--color-gray-200);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }

.gallery-item__overlay {
  position: absolute; inset: 0;
  background: rgba(45,106,79,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__overlay svg { color: white; width: 36px; height: 36px; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.92);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }

.lightbox__content { text-align: center; max-width: 90vw; }
.lightbox__content img { max-height: 80vh; max-width: 90vw; border-radius: var(--radius-md); object-fit: contain; }
.lightbox__caption { color: rgba(255,255,255,0.7); font-size: 0.875rem; margin-top: 0.75rem; }

.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute; color: white; font-size: 2rem; font-weight: 300;
  width: 48px; height: 48px; border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.1); transition: background var(--transition);
}
.lightbox__close { top: 1rem; right: 1rem; font-size: 1.25rem; }
.lightbox__prev  { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { background: rgba(255,255,255,0.25); }

/* ============================================================
   TESTIMONIOS
   ============================================================ */
.testimonials { padding: var(--space-xl) 0; background: white; position: relative; overflow: hidden; }
.testimonials::before { content: ''; position: absolute; inset: 0; background: url('assets/fondo_2_sparckles.png') center / cover no-repeat; opacity: 0.13; pointer-events: none; z-index: 0; }
.testimonials > .container { position: relative; z-index: 1; }

.testimonials__wrapper {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.testimonials__track {
  display: flex;
  transition: transform 0.45s cubic-bezier(.4,0,.2,1);
}

.testimonial-card {
  flex: 0 0 100%;
  padding: var(--space-lg) var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; align-items: center; text-align: center;
  border: 2px solid rgba(200,65,107,0.28);
  box-shadow: 0 8px 32px rgba(200,65,107,0.13), 0 2px 8px rgba(0,0,0,0.06);
}

.testimonial-card__stars { color: #f59e0b; font-size: 1.25rem; margin-bottom: var(--space-sm); letter-spacing: 2px; }

.testimonial-card__text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-gray-600);
  max-width: 600px;
  margin-bottom: var(--space-md);
  font-style: italic;
}
.testimonial-card__text::before { content: '\201C'; }
.testimonial-card__text::after  { content: '\201D'; }

.testimonial-card__author { display: flex; align-items: center; gap: 0.875rem; }
.testimonial-card__avatar { width: 52px; height: 52px; border-radius: var(--radius-full); object-fit: cover; border: 3px solid var(--color-primary); }
.testimonial-card__avatar-placeholder {
  width: 52px; height: 52px; border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 1.1rem; flex-shrink: 0;
}
.testimonial-card__name   { font-weight: 700; font-size: 0.95rem; }
.testimonial-card__role   { font-size: 0.8rem; color: var(--color-gray-400); }

.testimonials__controls { display: flex; align-items: center; justify-content: center; gap: var(--space-md); margin-top: var(--space-md); }
.testimonials__btn { width: 44px; height: 44px; border-radius: var(--radius-full); background: var(--color-gray-100); color: var(--color-dark); font-size: 1.5rem; display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.testimonials__btn:hover { background: var(--color-primary); color: white; }
.testimonials__dots { display: flex; gap: 0.4rem; }
.dot { width: 8px; height: 8px; border-radius: var(--radius-full); background: var(--color-gray-200); transition: all var(--transition); cursor: pointer; }
.dot.active { background: var(--color-primary); width: 24px; }

/* ============================================================
   HORARIOS
   ============================================================ */
.schedule {
  padding: var(--space-xl) 0;
  background-color: #F0EEF4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='500' height='500'%3E%3Cg fill='%23F28DB3'%3E%3Cpath opacity='0.45' d='M75,41 L77.8,55 L75,69 L72.2,55 Z M61,55 L75,52.2 L89,55 L75,57.8 Z'/%3E%3Cpath opacity='0.35' d='M385,233 L387.4,245 L385,257 L382.6,245 Z M373,245 L385,242.6 L397,245 L385,247.4 Z'/%3E%3Cpath opacity='0.3' d='M385,35 L387,45 L385,55 L383,45 Z M375,45 L385,43 L395,45 L385,47 Z'/%3E%3Cpath opacity='0.3' d='M205,406 L206.8,415 L205,424 L203.2,415 Z M196,415 L205,413.2 L214,415 L205,416.8 Z'/%3E%3Cpath opacity='0.4' d='M95,464 L97.2,475 L95,486 L92.8,475 Z M84,475 L95,472.8 L106,475 L95,477.2 Z'/%3E%3C/g%3E%3Cg fill='%23C8416B'%3E%3Cpath opacity='0.3' d='M255,117 L256.6,125 L255,133 L253.4,125 Z M247,125 L255,123.4 L263,125 L255,126.6 Z'/%3E%3Cpath opacity='0.25' d='M145,350 L146,355 L145,360 L144,355 Z M140,355 L145,354 L150,355 L145,356 Z'/%3E%3Cpath opacity='0.25' d='M25,198 L26.4,205 L25,212 L23.6,205 Z M18,205 L25,203.6 L32,205 L25,206.4 Z'/%3E%3Cpath opacity='0.2' d='M295,290 L296,295 L295,300 L294,295 Z M290,295 L295,294 L300,295 L295,296 Z'/%3E%3Cpath opacity='0.28' d='M455,388 L456.4,395 L455,402 L453.6,395 Z M448,395 L455,393.6 L462,395 L455,396.4 Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 500px 500px;
}
.schedule__wrapper { max-width: 640px; margin-inline: auto; }

.schedule__table { width: 100%; border-collapse: collapse; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.schedule__table thead { background: var(--color-primary); color: white; }
.schedule__table th { padding: 0.875rem 1.25rem; text-align: left; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.schedule__table tbody tr { background: white; border-bottom: 1px solid var(--color-gray-100); transition: background var(--transition); }
.schedule__table tbody tr:hover { background: var(--color-gray-50); }
.schedule__table tbody tr.today { background: rgba(200,65,107,0.06); font-weight: 600; }
.schedule__table td { padding: 0.875rem 1.25rem; font-size: 0.9rem; }

.schedule-status {
  display: inline-block; padding: 0.2rem 0.7rem;
  border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 600;
}
.schedule-status.open   { background: #d1fae5; color: #065f46; }
.schedule-status.closed { background: #fee2e2; color: #991b1b; }

/* ============================================================
   UBICACIÓN
   ============================================================ */
.location { padding: var(--space-xl) 0; background: white; position: relative; overflow: hidden; }
.location::before { content: ''; position: absolute; inset: 0; background: url('assets/fondo_2_sparckles.png') center / cover no-repeat; opacity: 0.13; pointer-events: none; z-index: 0; }
.location > .container { position: relative; z-index: 1; }
.location__grid { display: grid; grid-template-columns: 360px 1fr; gap: var(--space-lg); align-items: start; }
.location__info { display: flex; flex-direction: column; gap: var(--space-md); }
.location__item { display: flex; gap: 1rem; align-items: flex-start; }
.location__icon { width: 44px; height: 44px; background: rgba(200,65,107,0.1); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--color-primary); }
.location__icon svg { width: 22px; height: 22px; }
.location__item strong { display: block; font-weight: 600; margin-bottom: 0.25rem; }
.location__item p { font-size: 0.9rem; color: var(--color-gray-600); }
.location__map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); height: 420px; }
.location__map iframe { width: 100%; height: 100%; border: 0; }

/* ============================================================
   CONTACTO
   ============================================================ */
.contact {
  padding: var(--space-xl) 0;
  background-color: #F0EEF4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='500' height='500'%3E%3Cg fill='%23F28DB3'%3E%3Cpath opacity='0.45' d='M75,41 L77.8,55 L75,69 L72.2,55 Z M61,55 L75,52.2 L89,55 L75,57.8 Z'/%3E%3Cpath opacity='0.35' d='M385,233 L387.4,245 L385,257 L382.6,245 Z M373,245 L385,242.6 L397,245 L385,247.4 Z'/%3E%3Cpath opacity='0.3' d='M385,35 L387,45 L385,55 L383,45 Z M375,45 L385,43 L395,45 L385,47 Z'/%3E%3Cpath opacity='0.3' d='M205,406 L206.8,415 L205,424 L203.2,415 Z M196,415 L205,413.2 L214,415 L205,416.8 Z'/%3E%3Cpath opacity='0.4' d='M95,464 L97.2,475 L95,486 L92.8,475 Z M84,475 L95,472.8 L106,475 L95,477.2 Z'/%3E%3C/g%3E%3Cg fill='%23C8416B'%3E%3Cpath opacity='0.3' d='M255,117 L256.6,125 L255,133 L253.4,125 Z M247,125 L255,123.4 L263,125 L255,126.6 Z'/%3E%3Cpath opacity='0.25' d='M145,350 L146,355 L145,360 L144,355 Z M140,355 L145,354 L150,355 L145,356 Z'/%3E%3Cpath opacity='0.25' d='M25,198 L26.4,205 L25,212 L23.6,205 Z M18,205 L25,203.6 L32,205 L25,206.4 Z'/%3E%3Cpath opacity='0.2' d='M295,290 L296,295 L295,300 L294,295 Z M290,295 L295,294 L300,295 L295,296 Z'/%3E%3Cpath opacity='0.28' d='M455,388 L456.4,395 L455,402 L453.6,395 Z M448,395 L455,393.6 L462,395 L455,396.4 Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 500px 500px;
}
.contact__grid { display: grid; grid-template-columns: 1fr 340px; gap: var(--space-lg); align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: var(--space-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-group label { font-size: 0.875rem; font-weight: 600; }
.form-group input,
.form-group textarea,
.form-group select { padding: 0.75rem 1rem; border: 1.5px solid var(--color-gray-200); border-radius: var(--radius-md); font-family: var(--font-base); font-size: 0.9375rem; color: var(--color-dark); background: white; transition: border-color var(--transition), box-shadow var(--transition); outline: none; resize: vertical; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(200,65,107,0.15); }
.form-group input.error, .form-group textarea.error { border-color: #ef4444; }
.form-error { font-size: 0.8rem; color: #ef4444; min-height: 1.2rem; }
.form-status { padding: 0.75rem 1rem; border-radius: var(--radius-md); font-size: 0.9rem; font-weight: 500; display: none; }
.form-status.success { background: #d1fae5; color: #065f46; display: block; }
.form-status.error   { background: #fee2e2; color: #991b1b; display: block; }
.contact__aside { position: sticky; top: 5rem; }
.contact__info-card { background: white; border-radius: var(--radius-lg); padding: var(--space-md); box-shadow: var(--shadow-sm); border: 1px solid var(--color-gray-100); }
.contact__info-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.contact__info-card > p { color: var(--color-gray-600); font-size: 0.9rem; margin-bottom: var(--space-md); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--color-dark); color: white; padding: var(--space-lg) 0 var(--space-md); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: var(--space-lg); padding-bottom: var(--space-lg); border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer__logo { font-size: 1.4rem; font-weight: 700; display: block; margin-bottom: 0.75rem; }
.footer__brand p { font-size: 0.9rem; color: var(--color-gray-400); max-width: 260px; }
.footer__links strong, .footer__contact strong { display: block; font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; color: var(--color-gray-400); }
.footer__links ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__links a { font-size: 0.9rem; color: rgba(255,255,255,0.7); transition: color var(--transition); }
.footer__links a:hover { color: var(--color-accent); }
.footer__contact p { font-size: 0.9rem; color: rgba(255,255,255,0.7); margin-bottom: 0.4rem; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: var(--space-md); font-size: 0.8rem; color: var(--color-gray-400); flex-wrap: wrap; gap: 0.5rem; }
.footer__bottom a { color: var(--color-accent); }
.footer__bottom a:hover { text-decoration: underline; }

/* ============================================================
   WHATSAPP FLOTANTE
   ============================================================ */
.whatsapp-float { position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 900; width: 58px; height: 58px; background: var(--color-whatsapp); border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 24px rgba(37,211,102,0.4); transition: transform var(--transition); }
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float__tooltip { position: absolute; right: calc(100% + 0.75rem); background: var(--color-dark); color: white; font-size: 0.8rem; font-weight: 600; padding: 0.4rem 0.8rem; border-radius: var(--radius-sm); white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity var(--transition); }
.whatsapp-float:hover .whatsapp-float__tooltip { opacity: 1; }

/* ============================================================
   ANIMACIONES
   ============================================================ */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE — TABLET (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
  .about__grid     { grid-template-columns: 1fr; }
  .about__text     { padding-left: 0; }
  .about__img      { height: 320px; }
  .about__badge    { bottom: -1rem; right: 1rem; }
  .location__grid  { grid-template-columns: 1fr; }
  .contact__grid   { grid-template-columns: 1fr; }
  .contact__aside  { position: static; }
  .footer__grid    { grid-template-columns: 1fr 1fr; }
  .footer__brand   { grid-column: 1 / -1; }
  .form-row        { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 640px)
   ============================================================ */
@media (max-width: 640px) {
  :root { --space-xl: 3.5rem; }

  .nav__menu { position: fixed; top: 0; left: 0; right: 0; height: 100dvh; background: white; flex-direction: column; justify-content: center; align-items: center; gap: 0.5rem; transform: translateY(-100%); transition: transform 0.35s cubic-bezier(.4,0,.2,1); z-index: 999; }
  .nav__menu.open { transform: translateY(0); }
  .nav__link { font-size: 1.1rem; color: var(--color-dark) !important; padding: 0.625rem 2rem; }
  .nav__link--cta { color: white !important; margin-top: 0.5rem; }
  .nav__hamburger { display: flex; z-index: 1000; }

  .hero__actions { flex-direction: column; }
  .hero__stats   { gap: var(--space-md); }
  .footer__grid  { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .testimonial-card { padding: var(--space-md); }
  .lightbox__prev { left: 0.25rem; }
  .lightbox__next { right: 0.25rem; }
}
