/* ===========================
   EL RECREO — Global Styles
   =========================== */

:root {
  /* === PALETA OFICIAL EL RECREO === */
  --navy: #001B3D;
  --navy-dark: #001228;
  --navy-light: #002d5e;
  --turquoise: #00B7C7;
  --turquoise-light: #33c8d6;
  --turquoise-pale: #e0f8fa;
  --yellow: #FFD100;
  --yellow-light: #ffe44d;
  --yellow-pale: #fffbe0;
  --pink: #FF208D;
  --pink-light: #ff5aac;
  --pink-pale: #ffe0f2;
  --orange: #FF8A00;
  --orange-light: #ffaa44;
  --orange-pale: #fff3e0;
  --lila: #A24DBA;
  --mint: #7ED6B3;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.12), 0 8px 20px rgba(0,0,0,0.06);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --font-sans: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { line-height: 1.7; color: var(--gray-600); }

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,27,61,0.08);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}
.nav-logo img {
  height: 58px;
  width: auto;
  display: block;
  transition: transform 0.2s ease;
  /* Logo PNG con fondo transparente real — sin filtros adicionales */
}
.nav-logo:hover img {
  transform: scale(1.04);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav-links a {
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--navy);
  background: var(--turquoise-pale);
}
.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  border-radius: var(--radius-full) !important;
  padding: 0.45rem 1.1rem !important;
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: var(--navy-light) !important;
  color: var(--white) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: white;
  padding: 1rem 1.5rem 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  border-bottom: 3px solid var(--turquoise);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--transition);
  border-bottom: 1px solid var(--gray-100);
}
.mobile-menu a:hover { background: var(--turquoise-pale); color: var(--navy); }
.mobile-menu a:last-child { border-bottom: none; }

/* ===========================
   PAGE WRAPPER
   =========================== */
.page-wrapper {
  padding-top: 68px;
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #002d5e 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.28;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,27,61,0.93) 0%, rgba(0,27,61,0.78) 55%, rgba(0,183,199,0.25) 100%);
}
/* Decorative circles */
.hero-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  animation: float 8s ease-in-out infinite;
}
.hero-circle-1 { width: 400px; height: 400px; background: var(--turquoise); top: -100px; right: -100px; animation-delay: 0s; }
.hero-circle-2 { width: 250px; height: 250px; background: var(--yellow); bottom: -50px; left: 5%; animation-delay: 2s; }
.hero-circle-3 { width: 150px; height: 150px; background: var(--pink); top: 30%; left: 10%; animation-delay: 4s; }
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(5deg); }
  66% { transform: translateY(10px) rotate(-3deg); }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,183,199,0.2);
  border: 1px solid rgba(0,183,199,0.4);
  border-radius: var(--radius-full);
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--turquoise-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: white;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--turquoise), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary {
  background: var(--turquoise);
  color: white;
}
.btn-primary:hover { background: var(--turquoise-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,183,199,0.4); }
.btn-white {
  background: white;
  color: var(--navy);
}
.btn-white:hover { background: var(--gray-100); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-white {
  background: rgba(255,255,255,0.12);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: white; }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-yellow { background: var(--yellow); color: var(--navy); }
.btn-yellow:hover { background: var(--yellow-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(247,201,72,0.4); }
.btn-pink { background: var(--pink); color: white; }
.btn-pink:hover { background: var(--pink-light); transform: translateY(-2px); }
.btn-whatsapp { background: #25d366; color: white; }
.btn-whatsapp:hover { background: #1dba5a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
.btn-lg { padding: 1.1rem 2.2rem; font-size: 1.05rem; }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.85rem; }

.hero-image-block {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-store-img {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
  aspect-ratio: 4/3;
}
.hero-floating-badge {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  animation: floatBadge 4s ease-in-out infinite;
}
.hero-floating-badge:nth-child(2) { top: 12%; right: -5%; animation-delay: 0s; }
.hero-floating-badge:nth-child(3) { bottom: 15%; left: -5%; animation-delay: 2s; }
.hero-floating-badge .badge-icon { font-size: 1.4rem; }
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===========================
   QUICK LINKS BAR
   =========================== */
.quick-bar {
  background: white;
  border-bottom: 1px solid var(--gray-100);
  overflow-x: auto;
  scrollbar-width: none;
}
.quick-bar::-webkit-scrollbar { display: none; }
.quick-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  gap: 0;
}
.quick-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1rem 1.2rem;
  border-bottom: 2px solid transparent;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-500);
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.quick-link:hover, .quick-link.active {
  color: var(--navy);
  border-bottom-color: var(--turquoise);
}
.quick-link .ql-icon { font-size: 1.4rem; }

/* ===========================
   SECTIONS
   =========================== */
.section {
  padding: 5rem 1.5rem;
}
.section-sm { padding: 3rem 1.5rem; }
.section-lg { padding: 7rem 1.5rem; }
.container {
  max-width: 1280px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--turquoise-pale);
  color: var(--turquoise);
  border-radius: var(--radius-full);
  padding: 0.35rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-badge.yellow { background: var(--yellow-pale); color: #b8860b; }
.section-badge.pink { background: var(--pink-pale); color: #c0336a; }
.section-badge.navy { background: rgba(0,27,61,0.08); color: var(--navy); }
.section-title { margin-bottom: 1rem; }
.section-subtitle { font-size: 1.05rem; color: var(--gray-500); max-width: 580px; margin: 0 auto; }

/* ===========================
   QUIÉNES SOMOS
   =========================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-xl);
}
.about-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-img-wrap:hover .about-img { transform: scale(1.04); }
.about-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: white;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
}
.about-img-badge .big-num { font-size: 2rem; font-weight: 900; color: var(--navy); }
.about-img-badge .badge-label { font-size: 0.78rem; color: var(--gray-500); font-weight: 500; }
.about-content { }
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.tag {
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
}
.tag-turquoise { background: var(--turquoise-pale); color: var(--turquoise); }
.tag-yellow { background: var(--yellow-pale); color: #9a7200; }
.tag-pink { background: var(--pink-pale); color: #c0336a; }
.tag-navy { background: rgba(0,27,61,0.08); color: var(--navy); }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.about-feature:hover { background: var(--turquoise-pale); }
.about-feature .feat-icon { font-size: 1.5rem; flex-shrink: 0; }
.about-feature .feat-text { font-size: 0.85rem; font-weight: 600; color: var(--navy); }

/* ===========================
   CATEGORY CARDS
   =========================== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.cat-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
  border: 1.5px solid var(--gray-100);
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--turquoise-pale);
}
.cat-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.cat-card:hover .cat-img { transform: scale(1.06); }
.cat-body {
  padding: 1.25rem;
}
.cat-emoji { font-size: 1.5rem; margin-bottom: 0.5rem; }
.cat-name { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 0.3rem; }
.cat-desc { font-size: 0.82rem; color: var(--gray-500); }

/* ===========================
   PRODUCT GRID
   =========================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}
.product-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--gray-100);
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--turquoise);
}
.product-icon { font-size: 2.8rem; margin-bottom: 0.75rem; }
.product-name { font-size: 0.92rem; font-weight: 600; color: var(--navy); }

/* ===========================
   SERVICE CARDS
   =========================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--gray-100);
  transition: var(--transition);
  text-align: center;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card.turquoise:hover { background: var(--turquoise-pale); }
.service-card.yellow:hover { background: var(--yellow-pale); }
.service-card.pink:hover { background: var(--pink-pale); }
.service-card.navy:hover { background: rgba(0,27,61,0.06); }
.svc-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.svc-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.svc-desc { font-size: 0.82rem; color: var(--gray-500); line-height: 1.5; }

/* ===========================
   PACKAGE PICKUP
   =========================== */
.package-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  color: white;
  position: relative;
  overflow: hidden;
}
.package-section::before {
  content: '📦';
  position: absolute;
  font-size: 20rem;
  right: -3rem;
  top: -3rem;
  opacity: 0.04;
  line-height: 1;
}
.package-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.package-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: white;
  margin-bottom: 1rem;
}
.package-subtitle { color: rgba(255,255,255,0.75); margin-bottom: 2rem; line-height: 1.8; }
.operator-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}
.op-logo {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 0.85rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: white;
  transition: var(--transition);
}
.op-logo:hover { background: rgba(255,255,255,0.2); transform: scale(1.05); }
.op-logo span { font-size: 1.6rem; }

/* ===========================
   BACK TO SCHOOL
   =========================== */
.vuelta-section {
  background: linear-gradient(135deg, var(--yellow-pale) 0%, #fff9e6 100%);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
}
.vuelta-section::after {
  content: '🎒';
  position: absolute;
  font-size: 15rem;
  right: 2rem;
  bottom: -2rem;
  opacity: 0.08;
  line-height: 1;
}
.vuelta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.vuelta-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}
.vuelta-item {
  background: white;
  border-radius: var(--radius-md);
  padding: 1.1rem 0.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}
.vuelta-item:hover { transform: scale(1.04); box-shadow: var(--shadow-md); }
.vuelta-item .vi-icon { font-size: 1.8rem; margin-bottom: 0.4rem; }

/* ===========================
   WHATSAPP LISTA ESCOLAR
   =========================== */
.whatsapp-section {
  background: linear-gradient(135deg, #25d366, #1dba5a);
  border-radius: var(--radius-xl);
  padding: 3.5rem 3rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.whatsapp-section::before {
  content: '💬';
  position: absolute;
  font-size: 20rem;
  right: -2rem;
  top: -4rem;
  opacity: 0.05;
  line-height: 1;
}
.whatsapp-section h2 { color: white; }
.whatsapp-section p { color: rgba(255,255,255,0.85); max-width: 550px; margin: 1rem auto 2rem; font-size: 1.05rem; }

/* ===========================
   GALLERY
   =========================== */
.gallery-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}
.gallery-tab {
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--gray-100);
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: inherit;
}
.gallery-tab.active, .gallery-tab:hover {
  background: var(--navy);
  color: white;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gray-100);
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,27,61,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--gray-400);
  font-size: 0.85rem;
}
.gallery-placeholder span { font-size: 2.5rem; }

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--gray-100);
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testi-stars { color: var(--yellow); font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testi-text { font-size: 0.95rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.testi-role { font-size: 0.78rem; color: var(--gray-400); }

/* ===========================
   CONTACT
   =========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-block {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--gray-100);
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.contact-item:last-child { border-bottom: none; }
.contact-icon {
  width: 46px; height: 46px;
  border-radius: var(--radius-md);
  background: var(--turquoise-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-label { font-size: 0.78rem; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.2rem; }
.contact-value { font-size: 1rem; font-weight: 600; color: var(--navy); }
.contact-value a { color: var(--navy); }
.contact-value a:hover { color: var(--turquoise); }
.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 420px;
  box-shadow: var(--shadow-md);
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }
.map-placeholder {
  text-align: center;
  color: var(--gray-400);
  padding: 2rem;
}
.map-placeholder .map-icon { font-size: 4rem; margin-bottom: 1rem; }
.horario-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.horario-dia { font-size: 0.88rem; color: var(--gray-600); }
.horario-hora { font-size: 0.88rem; color: var(--navy); font-weight: 600; }

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 4rem 1.5rem 2rem;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  text-decoration: none;
}
.footer-brand .footer-logo img {
  height: 72px;
  width: auto;
  /* Logo transparente sobre fondo oscuro: potenciamos brillo y añadimos sombra
     para que los colores vivos destaquen sobre el navy #001B3D */
  filter: brightness(1.15) drop-shadow(0 0 6px rgba(0, 183, 199, 0.35)) drop-shadow(0 1px 3px rgba(0,0,0,0.5));
  opacity: 1;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 260px; }
.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.social-btn {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: white;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}
.social-btn:hover { background: var(--turquoise); border-color: var(--turquoise); }
.footer-col h4 { color: white; font-size: 0.9rem; margin-bottom: 1rem; font-weight: 700; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--turquoise); padding-left: 4px; }
.footer-phones { display: flex; flex-direction: column; gap: 1rem; }
.fp-item { display: flex; align-items: flex-start; gap: 0.6rem; }
.fp-item a {
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
  text-decoration: none;
}
.fp-item a:hover { color: var(--turquoise); }
.fp-item .fp-icon { font-size: 1.1rem; margin-top: 2px; }
/* Botones pequeños dentro del footer (llamar / whatsapp) */
.footer-btn-call,
.footer-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  white-space: nowrap;
}
.footer-btn-call {
  background: rgba(255,255,255,0.12);
  color: white;
  border: 1px solid rgba(255,255,255,0.25);
}
.footer-btn-call:hover {
  background: rgba(255,255,255,0.22);
  color: white;
  transform: scale(1.04);
}
.footer-btn-wa {
  background: #25d366;
  color: white;
  border: 1px solid #1da851;
}
.footer-btn-wa:hover {
  background: #1da851;
  color: white;
  transform: scale(1.04);
  opacity: 1;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--turquoise); }

/* ===========================
   PAGE HEROES (inner pages)
   =========================== */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: var(--turquoise);
  opacity: 0.06;
  top: -100px; right: -100px;
}
.page-hero::after {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0.06;
  bottom: -80px; left: -60px;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: white; margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.page-hero .page-hero-icon { font-size: 3rem; margin-bottom: 1rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--turquoise); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ===========================
   STATS BAR
   =========================== */
.stats-bar {
  background: var(--navy);
  padding: 2rem 1.5rem;
}
.stats-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item { color: white; }
.stat-num { font-size: 2rem; font-weight: 900; color: var(--turquoise); line-height: 1; margin-bottom: 0.4rem; }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.6); font-weight: 500; }

/* ===========================
   HIGHLIGHT BANNER
   =========================== */
.highlight-banner {
  background: linear-gradient(135deg, var(--turquoise-pale), var(--yellow-pale));
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.highlight-icon { font-size: 3.5rem; flex-shrink: 0; }
.highlight-text h3 { margin-bottom: 0.4rem; }
.highlight-text p { font-size: 0.95rem; }

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
  background: linear-gradient(135deg, var(--turquoise) 0%, var(--navy) 100%);
  border-radius: var(--radius-xl);
  padding: 4rem 2rem;
  text-align: center;
  color: white;
}
.cta-section h2 { color: white; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===========================
   CAROUSEL
   =========================== */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-item {
  min-width: 220px;
  scroll-snap-align: start;
  flex-shrink: 0;
}
.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.carousel-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-btn:hover { background: var(--turquoise); }

/* ===========================
   BOOK CARD
   =========================== */
.book-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--gray-100);
  transition: var(--transition);
}
.book-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.book-cover {
  width: 100%; aspect-ratio: 2/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 900;
  color: white;
  padding: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
}
.book-info { padding: 1rem; }
.book-title { font-size: 0.88rem; font-weight: 700; color: var(--navy); margin-bottom: 0.2rem; }
.book-cat { font-size: 0.75rem; color: var(--gray-400); }

/* ===========================
   SWEETS / CANDY
   =========================== */
.sweet-hero {
  background: linear-gradient(135deg, var(--pink-pale) 0%, var(--yellow-pale) 100%);
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sweet-hero::before { content: '🍭'; position: absolute; font-size: 12rem; right: -1rem; top: -2rem; opacity: 0.08; }
.sweet-hero h2 { margin-bottom: 0.75rem; }

/* ===========================
   DRINKS HERO
   =========================== */
.drinks-hero {
  background: linear-gradient(135deg, #e0f7fa 0%, #e8f5e9 100%);
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.drinks-hero::before { content: '🧊'; position: absolute; font-size: 12rem; right: -1rem; top: -2rem; opacity: 0.06; }

/* ===========================
   UTILITIES
   =========================== */
.text-center { text-align: center; }
.text-navy { color: var(--navy); }
.text-turquoise { color: var(--turquoise); }
.text-white { color: white; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.bg-white { background: white; }
.bg-gray { background: var(--gray-50); }
.bg-navy { background: var(--navy); }
.rounded-xl { border-radius: var(--radius-xl); }
.shadow-md { box-shadow: var(--shadow-md); }
.divider { height: 1px; background: var(--gray-100); margin: 2rem 0; }
.emoji-large { font-size: 2.5rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ===========================
   SCROLL ANIMATIONS
   =========================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero-image-block { display: none; }
  .hero-title { font-size: clamp(2rem, 6vw, 3rem); }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { max-width: 500px; margin: 0 auto; }
  .package-grid { grid-template-columns: 1fr; }
  .vuelta-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section { padding: 3.5rem 1.25rem; }
  .section-lg { padding: 4.5rem 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .package-section { padding: 2.5rem 1.5rem; }
  .vuelta-section { padding: 2.5rem 1.5rem; }
  .vuelta-products { grid-template-columns: repeat(2, 1fr); }
  .operator-logos { grid-template-columns: repeat(4, 1fr); }
  .about-features { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { justify-content: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .highlight-banner { flex-direction: column; text-align: center; }
  .page-hero { padding: 4rem 1.25rem 3rem; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .operator-logos { grid-template-columns: repeat(2, 1fr); }
  .vuelta-products { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===========================
   COOKIE / MISC
   =========================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px; height: 46px;
  background: var(--navy);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 500;
  border: none;
  box-shadow: var(--shadow-md);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--turquoise); }

/* Floating WhatsApp button */
.float-wa {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  background: #25d366;
  color: white;
  border-radius: var(--radius-full);
  padding: 0.7rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  z-index: 500;
  transition: var(--transition);
  text-decoration: none;
}
.float-wa:hover { transform: scale(1.04); box-shadow: 0 12px 30px rgba(37,211,102,0.5); color: white; }

.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }
