/* ============================================================
   VIVAMOS JUGANDO — main.css
   Diseño: Moderno, Juguetón y Premium (Inspirado en ComoIguales)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Paleta ComoIguales */
  --color-magenta: #FF5E97;
  --color-coral: #FF8F6B;
  --color-green: #4ADE80;
  --color-green-light: #A7F3D0;
  --color-violet: #8B5CF6;
  --color-yellow: #FBBF24;
  --color-blue: #38BDF8;

  /* Colores de Marca y Sistema */
  --brand-primary: var(--color-violet);
  --brand-secondary: var(--color-coral);
  --bg-primary: #F8F9FA;
  --bg-card: #FFFFFF;
  --text-dark: #1E293B;
  --text-muted: #64748B;
  --border-color: #E2E8F0;

  /* Tipografías */
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Transiciones y Sombras */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 20px rgba(0,0,0,0.04), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.08), 0 10px 10px -5px rgba(0,0,0,0.04);
}

/* ── 0. RESET Y GENERAL ── */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── 1. HEADER & NAVIGATION ── */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: rgba(248, 249, 250, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
  z-index: 1000;
  transition: var(--transition);
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  height: 70px;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 52px; /* Incrementado para dar más presencia al logo */
  width: auto;
}

.logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--color-violet), var(--color-magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  flex-direction: column;
}

.logo-subtext {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: -3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-violet), var(--color-magenta));
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--color-violet);
}

/* Menú Hamburguesa para Móvil */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  background-color: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── 2. HERO SECTION ── */
.hero {
  padding: 160px 0 80px 0;
  background: radial-gradient(circle at 10% 20%, rgba(251, 191, 36, 0.05) 0%, rgba(139, 92, 246, 0.05) 90%);
  position: relative;
  overflow: hidden;
}

/* Decoraciones de fondo */
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  opacity: 0.6;
}

.hero::before {
  width: 300px;
  height: 300px;
  background-color: rgba(56, 189, 248, 0.2);
  top: 10%;
  right: -5%;
}

.hero::after {
  width: 250px;
  height: 250px;
  background-color: rgba(255, 94, 151, 0.15);
  bottom: 10%;
  left: -5%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(139, 92, 246, 0.1);
  color: var(--color-violet);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.hero-tag .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-magenta);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.hero-title span.accent-grad {
  background: linear-gradient(135deg, var(--color-violet), var(--color-magenta), var(--color-coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-violet), var(--color-magenta));
  color: #FFFFFF;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(139, 92, 246, 0.45);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-box {
  position: relative;
  background-color: var(--bg-card);
  padding: 1rem;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transform: rotate(2deg);
  transition: var(--transition);
}

.visual-box:hover {
  transform: rotate(0deg) scale(1.02);
}

.visual-img {
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

/* Elemento flotante decorativo */
.floating-badge {
  position: absolute;
  background-color: var(--bg-card);
  padding: 0.8rem 1.2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}

.fb-1 {
  top: -20px;
  left: -20px;
  transform: rotate(-5deg);
}

.fb-2 {
  bottom: -15px;
  right: -10px;
  transform: rotate(4deg);
}

.fb-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background-color: rgba(251, 191, 36, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
}

.fb-1 .fb-icon {
  background-color: rgba(56, 189, 248, 0.1);
  color: var(--color-blue);
}

.fb-2 .fb-icon {
  background-color: rgba(74, 222, 128, 0.1);
  color: var(--color-green);
}

.fb-text h4 {
  font-size: 0.9rem;
  color: var(--text-dark);
}

.fb-text p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── 2.5 SECCIÓN SELLO BRANDING COMOIGUALES ── */
.brand-banner {
  background-color: #FFFFFF;
  border-top: 1px solid rgba(226, 232, 240, 0.7);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
  padding: 50px 0;
  position: relative;
}

.brand-banner-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: center;
  gap: 3.5rem;
}

.brand-banner-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F8F9FA;
  padding: 2.2rem;
  border-radius: 24px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.brand-banner-logo {
  max-height: 100px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.brand-banner-content h2 {
  font-size: 2.2rem;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.brand-banner-tag {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color-magenta);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  display: block;
}

.accent-grad-brand {
  background: linear-gradient(135deg, var(--color-magenta), var(--color-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-banner-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── 3. SECCIÓN EL CONCEPTO (LOGÍSTICA) ── */
.section {
  padding: 100px 0;
}

.section-alt {
  padding: 100px 0;
  background-color: #FFFFFF;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4.5rem auto;
}

.section-tagline {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-violet);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.concept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.concept-card {
  background-color: var(--bg-card);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.concept-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--card-accent, var(--color-blue));
}

.concept-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.concept-card-icon {
  width: 55px;
  height: 55px;
  border-radius: 16px;
  background-color: rgba(56, 189, 248, 0.1);
  color: var(--card-accent, var(--color-blue));
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.concept-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

.concept-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ── 4. EXPERIENCIAS (TARJETAS) ── */
.experiences-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.experience-card {
  background-color: var(--bg-card);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(226, 232, 240, 0.8);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.experience-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.exp-img-wrap {
  position: relative;
  height: 250px;
  overflow: hidden;
  background-color: #1E293B;
}

.exp-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.experience-card:hover .exp-img {
  transform: scale(1.05);
}

.exp-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: rgba(30, 41, 59, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FFFFFF;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.exp-badge-accent {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--exp-accent, var(--color-violet));
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  color: white;
}

.exp-content {
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.exp-content h3 {
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.exp-info-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.exp-info-row span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.exp-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.exp-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-card-primary {
  background: var(--exp-accent, var(--color-violet));
  color: white;
  padding: 0.8rem 1.6rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  flex-grow: 1;
}

.btn-card-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

/* Botón único a lo ancho */
.btn-card-primary-full {
  background: var(--exp-accent, var(--color-violet));
  color: white;
  padding: 0.8rem 1.6rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  width: 100%;
  display: block;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.15);
  transition: var(--transition);
}

.btn-card-primary-full:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 6px 16px rgba(139, 92, 246, 0.3);
}

.btn-card-secondary {
  background-color: var(--bg-primary);
  color: var(--text-dark);
  border: 1px solid var(--border-color);
  padding: 0.8rem 1.2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-card-secondary:hover {
  background-color: var(--border-color);
}

/* Tarjeta Próximamente */
.experience-card.upcoming {
  border: 2px dashed var(--border-color);
  background-color: rgba(248, 249, 250, 0.5);
  box-shadow: none;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem;
  text-align: center;
}

.upcoming-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(248, 249, 250, 0.8);
  border: 2px dashed var(--border-color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.2rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  animation: float 4s ease-in-out infinite;
}

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

.upcoming h3 {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.upcoming p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 320px;
}

/* ── 5. CUSTOM EVENTS (ENCARGOS) ── */
.events-section {
  position: relative;
  background-color: #1E293B;
  color: #FFFFFF;
  padding: 100px 0;
  overflow: hidden;
}

.events-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(0,0,0,0) 70%);
  top: -10%;
  right: -5%;
  border-radius: 50%;
}

.events-section::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 94, 151, 0.1) 0%, rgba(0,0,0,0) 70%);
  bottom: -10%;
  left: -5%;
  border-radius: 50%;
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
  position: relative;
  z-index: 2;
}

.events-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.events-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.events-list {
  list-style: none;
}

.events-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.events-list li .check-icon {
  color: var(--color-green);
  font-size: 1.2rem;
  margin-top: 2px;
}

.events-form-box {
  background-color: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3rem 2.5rem;
  border-radius: 24px;
  box-shadow: 0 30px 50px rgba(0,0,0,0.2);
}

.events-form-box h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--color-violet);
  background-color: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--color-violet), var(--color-magenta));
  color: #FFFFFF;
  border: none;
  padding: 1rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 1rem;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

/* ── 6. GIFT BANNER (REGALO) ── */
.gift-banner {
  background: linear-gradient(135deg, var(--color-magenta), var(--color-coral));
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gift-banner::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  top: -50px;
  left: 10%;
}

.gift-banner-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gift-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  animation: heartbeat 2s infinite;
}

@keyframes heartbeat {
  0% { transform: scale(1); }
  14% { transform: scale(1.1); }
  28% { transform: scale(1); }
  42% { transform: scale(1.1); }
  70% { transform: scale(1); }
}

.gift-banner h2 {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.gift-banner p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.btn-gift {
  background-color: #FFFFFF;
  color: var(--color-magenta);
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.btn-gift:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

/* ── 7. FOOTER ── */
footer {
  background-color: #0F172A;
  color: rgba(255, 255, 255, 0.5);
  padding: 80px 0 40px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-info h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.footer-info p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-branding {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  background-color: rgba(255, 255, 255, 0.03);
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  width: fit-content;
}

.footer-branding img {
  height: 24px;
}

.footer-links h4 {
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
  color: #FFFFFF;
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.8rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--color-violet);
  transform: translateY(-2px);
}

/* ── 9. EFECTOS REVEAL Y RESPONSIVIDAD ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* Media Queries */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-desc {
    margin: 0 auto 2rem auto;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-visual {
    margin-top: 2rem;
  }
  .brand-banner-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .brand-banner-logo-wrap {
    max-width: 320px;
    margin: 0 auto;
  }
  .experiences-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .events-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  header {
    height: 70px;
  }
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    padding: 2rem 1.5rem;
    flex-direction: column;
    gap: 1.5rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .hamburger {
    display: flex;
  }
  .hero-title {
    font-size: 2.4rem;
  }
  .section {
    padding: 70px 0;
  }
  .section-title {
    font-size: 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}
