@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800;900&display=swap');

:root {
  --blue-primary: #2563eb;
  --blue-bright: #1a5fff;
  --blue-dark: #1e3a8a;
  --magenta: #e040fb;
  --magenta-dark: #c026d3;
  --red-accent: #ef4444;
  --white: #ffffff;
  --blue-light: #dbeafe;
  --text-dark: #1e1b4b;
  --gray-light: #f8fafc;
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ===================== NAVBAR ===================== */
.navbar {
  background: var(--blue-primary);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.navbar-logo .logo-icon {
  font-size: 1.5rem;
  color: var(--white);
  filter: brightness(0) invert(1);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  /* AGREGAR ESTO: */
  margin-left: auto;   /* Empuja los links a la derecha */
  margin-right: 2rem;  /* Deja espacio antes del botón hamburger en móvil */
}
.navbar-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: opacity 0.2s;
}

.navbar-links a:hover {
  opacity: 0.8;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-btn {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  position: relative;
  padding: 0.25rem;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--magenta);
  color: var(--white);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===================== HERO ===================== */
.hero {
  background: var(--blue-bright);
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}

.hero-inner {
  max-width: 1100px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.hero-illustration {
  flex: 1;
  min-height: 320px;
  border-radius: 20px;
  background: linear-gradient(135deg, #f472b6 0%, #c026d3 20%, #7c3aed 40%, #2563eb 60%, #06b6d4 80%, #10b981 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-content {
  flex: 1;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-icon {
  font-size: 3rem;
  line-height: 1;
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 1px;
}

.hero-date-pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.25);
  color: var(--white);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  width: fit-content;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-pill {
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}

.btn-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-magenta {
  background: var(--magenta);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--blue-primary);
}

.btn-magenta-outline {
  background: transparent;
  border: 2px solid var(--magenta);
  color: var(--magenta);
}

/* ===================== SECTIONS ===================== */
section {
  padding: 4rem 2rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2.5rem;
  text-align: center;
}

.section-title-white {
  color: var(--white);
}

.section-title-dark {
  color: var(--text-dark);
}

/* ===================== CARD GRID ===================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.card-image {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.card-body {
  padding: 1.25rem;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.card-desc {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.5;
}

/* ===================== FOOTER ===================== */
.footer {
  background: linear-gradient(180deg, var(--blue-primary) 0%, #93c5fd 100%);
  padding: 4rem 2rem;
  text-align: center;
  color: var(--white);
}

.footer h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.footer p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.footer-contacts {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-contact-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.2s;
}

.footer-contact-btn:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.footer-bottom {
  margin-top: 2rem;
  font-size: 0.85rem;
  opacity: 0.7;
}

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

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== MOBILE NAV ===================== */
@media (max-width: 768px) {
  .navbar-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--blue-primary);
    padding: 1rem 2rem 1.5rem;
    gap: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  .navbar-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero-inner {
    flex-direction: column;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-illustration {
    min-height: 200px;
  }

  .section-title {
    font-size: 1.5rem;
  }
}

/* ===================== HERO SPLIT ===================== */
.hero-split {
  display: flex;
  height: 500px;
}

.hero-half {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  transition: filter 0.2s;
  padding: 3rem 2rem;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.hero-half:hover {
  filter: brightness(0.85);
}

/* ---- Musica: fondo azul ---- */
.hero-half-music {
  background: #0f1f5c;
}

.hero-half-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 0;
}

.hero-half-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 58, 138, 0.60);
  z-index: 1;
}

.hero-half-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

/* ---- Tienda: fondo magenta solido ---- */
.hero-half-store {
  background: var(--magenta-dark);
}

.hero-half-icon {
  font-size: 5rem;
  margin-bottom: 1rem;
}

.hero-half-title {
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.hero-half-subtitle {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 2rem;
}

@media (max-width: 600px) {
  .hero-split { flex-direction: column; height: auto; }
  .hero-half { min-height: 40vh; }
}
