/* ==========================================================================
   CSS GLOBAL - SR PRODUCCIONES
   Diseño: Moderno, Elegante, Minimalista y Responsivo (Mobile-First)
   ========================================================================== */

/* Importación de Fuentes de Google */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* Variables de Diseño */
:root {
  /* Paleta de Colores — Azul Marino Profundo (menos oscuro, más elegante) */
  --bg-primary: #0f1b2d;
  /* Azul marino profundo */
  --bg-secondary: #1a2640;
  /* Antracita azulado para secciones alternas */
  --bg-card: #1e2d47;
  /* Azul grisáceo para tarjetas */
  --text-primary: #f0f4f8;
  /* Blanco cálido — no puro para reducir contraste agresivo */
  --text-secondary: #94a8be;
  /* Gris azulado suave para cuerpo */
  --text-light: #546e8a;
  /* Gris azulado para detalles */

  /* Acentos */
  --accent-orange: #ff5500;
  /* Naranja neón — acento principal */
  --accent-gold: #ff9900;
  /* Dorado neón */
  --accent-coral: #ff2d55;
  /* Rosa/Coral festivo */
  --accent-teal: #00d4ff;
  /* Cian claro */

  /* Gradientes */
  --grad-soundwave: linear-gradient(90deg, #ff5500 0%, #ff9900 30%, #ff2d55 55%, #00d4ff 80%, #00ff88 100%);
  --grad-primary: linear-gradient(135deg, #1e2d47 0%, #0f1b2d 100%);
  --grad-accent: linear-gradient(135deg, #ff5500 0%, #ff9900 100%);
  --grad-glass: rgba(15, 27, 45, 0.88);

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

  /* Sombras y Bordes */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.55);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  /* Transiciones */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease;

  /* Altura de Navbar */
  --nav-height: 80px;
}

/* Reset de Estilos */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  /* Base 1rem = 16px */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Enlaces e Interactividad */
a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

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

/* ==========================================================================
   ESTILOS DE MAQUETACIÓN (GRID & FLEXBOX)
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 80px 0;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 120px 0;
  }
}

/* Títulos y Subtítulos */
.section-header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-family: var(--font-headings);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--grad-soundwave);
  margin: 12px auto 0 auto;
  border-radius: 2px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 2.5rem;
  }
}

/* Botones (CTAs) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--bg-card);
  color: #f0f4f8;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--bg-secondary);
  border-color: var(--accent-orange);
  box-shadow: 0 8px 25px rgba(255, 85, 0, 0.2);
}

.btn-accent {
  background: var(--accent-orange);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(255, 85, 0, 0.35);
}

.btn-accent:hover {
  transform: translateY(-2px);
  background: #ff6b1a;
  box-shadow: 0 8px 30px rgba(255, 85, 0, 0.5);
}

.btn-outline {
  background: transparent;
  color: #f0f4f8;
  border: 2px solid rgba(240, 244, 248, 0.4);
}

.btn-outline:hover {
  background: rgba(240, 244, 248, 0.08);
  border-color: #f0f4f8;
  color: #ffffff;
}

/* ==========================================================================
   CABECERA & MENÚ DE NAVEGACIÓN
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: rgba(15, 27, 45, 0.80);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 85, 0, 0.15);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.header-scrolled {
  background: rgba(15, 27, 45, 0.97);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(255, 85, 0, 0.3);
}

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

/* Logo Recreado en HTML/CSS */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  height: 40px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.1;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.logo-subtitle {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--accent-orange);
  text-transform: uppercase;
}

/* Navegación de Escritorio */
.nav-menu {
  display: none;
}

.nav-link {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.85rem;
  color: #e0e6ef;
  padding: 8px 16px;
  position: relative;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.nav-link:hover {
  color: var(--accent-orange);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--accent-orange);
  transform: scaleX(0);
  transition: var(--transition-smooth);
  transform-origin: right;
}

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

.nav-link.active {
  color: var(--accent-orange);
}

/* Botón Hamburguesa Móvil */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #e0e6ef;
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* Hamburguesa Activa */
.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Navegación Móvil Abierta */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(15, 27, 45, 0.98);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  z-index: 1050;
  transform: translateX(100%);
  transition: var(--transition-smooth);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav .nav-link {
  font-size: 1.5rem;
  padding: 10px 20px;
}

@media (min-width: 768px) {
  .nav-menu {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .hamburger,
  .mobile-nav {
    display: none;
  }
}

/* ==========================================================================
   PÁGINA PRINCIPAL - SECCIÓN HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + 40px);
  background:
    radial-gradient(ellipse at 75% 15%, rgba(255, 85, 0, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(0, 212, 255, 0.08) 0%, transparent 55%),
    var(--bg-primary);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 85, 0, 0.12);
  color: var(--accent-orange);
  padding: 8px 18px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 85, 0, 0.25);
}

.hero-badge span {
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--accent-orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-family: var(--font-headings);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.hero h1 span.gradient-text {
  background: var(--grad-soundwave);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

/* Arte de la Onda del Hero (Animación en SVG) */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.soundwave-visual {
  width: 100%;
  max-width: 450px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(255, 85, 0, 0.2));
}

.animated-bar {
  transform-origin: bottom;
  animation: waveAnimation 1.5s ease-in-out infinite alternate;
}

@keyframes waveAnimation {
  0% {
    transform: scaleY(0.3);
  }

  100% {
    transform: scaleY(1);
  }
}

/* Retardos para las barras del ecualizador animado */
.animated-bar:nth-child(2n) {
  animation-delay: 0.15s;
}

.animated-bar:nth-child(3n) {
  animation-delay: 0.3s;
}

.animated-bar:nth-child(4n) {
  animation-delay: 0.45s;
}

.animated-bar:nth-child(5n) {
  animation-delay: 0.6s;
}

@media (min-width: 768px) {
  .hero-actions {
    flex-direction: row;
  }
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
  }

  .hero-content {
    text-align: left;
  }

  .hero-description {
    margin-left: 0;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero h1 {
    font-size: 3.8rem;
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    transform: scale(0.9);
    opacity: 0.5;
  }
}

/* ==========================================================================
   PÁGINA PRINCIPAL - SECCIÓN FILOSOFÍA
   ========================================================================== */
.philosophy {
  background-color: var(--bg-secondary);
  position: relative;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}

.philosophy-quote {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--accent-orange);
  border-left: 4px solid var(--accent-gold);
  padding-left: 24px;
  position: relative;
}

.philosophy-quote::before {
  content: '“';
  position: absolute;
  top: -20px;
  left: 10px;
  font-size: 5rem;
  color: rgba(244, 162, 97, 0.15);
  font-family: serif;
}

.philosophy-text p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.philosophy-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  background-color: var(--bg-card);
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 85, 0, 0.2);
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: rgba(255, 85, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.feature-card h3 {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

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

@media (min-width: 768px) {
  .philosophy-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .philosophy-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
  }
}

/* ==========================================================================
   PÁGINA PRINCIPAL - SLIDER DE IMÁGENES
   ========================================================================== */
.slider-section {
  overflow: hidden;
  position: relative;
}

.slider-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.slider-wrapper {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.slide {
  min-width: 100%;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.slide:hover img {
  transform: scale(1.05);
}

.slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 30px;
  background: linear-gradient(to top, rgba(10, 20, 40, 0.95) 0%, rgba(10, 20, 40, 0.5) 55%, transparent 100%);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.slide-category {
  font-family: var(--font-headings);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.slide-title {
  font-family: var(--font-headings);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.slide-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
}

/* Controles del Slider */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 4px;
  background: rgba(15, 27, 45, 0.85);
  color: #f0f4f8;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: var(--transition-smooth);
  z-index: 10;
  backdrop-filter: blur(8px);
}

.slider-btn:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(255, 85, 0, 0.4);
}

.slider-btn-prev {
  left: 20px;
}

.slider-btn-next {
  right: 20px;
}

/* Indicadores del Slider (Puntos) */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--text-light);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.slider-dot.active {
  background-color: var(--accent-orange);
  width: 24px;
  border-radius: 5px;
}

@media (max-width: 767px) {
  .slider-btn {
    width: 40px;
    height: 40px;
  }

  .slider-btn-prev {
    left: 10px;
  }

  .slider-btn-next {
    right: 10px;
  }

  .slide-overlay {
    padding: 20px 15px;
  }

  .slide-title {
    font-size: 1.1rem;
  }

  .slide-description {
    display: none;
  }
}

/* ==========================================================================
   PÁGINA PRINCIPAL - SECCIÓN TESTIMONIOS
   ========================================================================== */
.testimonials {
  background-color: var(--bg-secondary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.testimonial-card {
  background-color: var(--bg-card);
  padding: 40px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 85, 0, 0.15);
}

.testimonial-quote {
  font-size: 1rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.testimonial-card::before {
  content: '“';
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 6rem;
  color: rgba(255, 85, 0, 0.08);
  font-family: serif;
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: #FFC107;
  margin-bottom: 16px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-gold);
}

.author-name {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.author-event {
  font-size: 0.8rem;
  color: var(--text-light);
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   SECCIÓN - GALERÍA DE VIDEOS (PÁGINA DEDICADA)
   ========================================================================== */
.videos-page {
  padding-top: calc(var(--nav-height) + 40px);
}

.video-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

/* Tira/Carrusel horizontal */
.video-strip {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  /* Firefox */
  padding: 10px 0;
  scroll-behavior: smooth;
}

.video-strip::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.video-card {
  min-width: 280px;
  width: 280px;
  scroll-snap-align: start;
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 45, 61, 0.03);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

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

.video-thumbnail-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  background-color: #000;
  overflow: hidden;
  cursor: pointer;
}

.video-thumbnail-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.video-card:hover .video-thumbnail-wrapper img {
  transform: scale(1.05);
  opacity: 0.8;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 55px;
  height: 55px;
  background: var(--accent-orange);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(231, 111, 81, 0.4);
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
  z-index: 5;
}

.video-play-btn svg {
  transform: translateX(2px);
}

.video-card:hover .video-play-btn {
  background: #FFFFFF;
  color: var(--accent-orange);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.video-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.video-tag {
  align-self: flex-start;
  font-family: var(--font-headings);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 8px;
}

.video-title {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
}

.video-description {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

/* Botones de control para la tira de videos */
.video-control-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid rgba(0, 45, 61, 0.08);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.video-control-btn:hover {
  background: var(--text-primary);
  color: #FFFFFF;
  border-color: var(--text-primary);
}

.video-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

@media (min-width: 480px) {
  .video-card {
    min-width: 320px;
    width: 320px;
  }
}

@media (min-width: 768px) {
  .video-card {
    min-width: 400px;
    width: 400px;
  }
}

/* Modal de Video */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 45, 61, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.video-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-content {
  width: 90%;
  max-width: 800px;
  /* aspect-ratio: 16/9; Removido para permitir controles abajo */
  padding-bottom: 20px;
  background: #000;
  border-radius: var(--radius-md);
  overflow: visible; /* Cambiado para que el botón de cerrar superior no se corte si sobresale */
  box-shadow: var(--shadow-lg);
  position: relative;
}

.video-modal-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-headings);
  font-weight: 600;
}

.video-modal-close:hover {
  color: var(--accent-orange);
}

/* ==========================================================================
   PÁGINA - INFORMACIÓN DE CONTACTO
   ========================================================================== */
.contact-info-page {
  padding-top: calc(var(--nav-height) + 40px);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: flex-start;
  margin-top: 40px;
}

.contact-details {
  background-color: var(--bg-card);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 45, 61, 0.02);
}

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-icon {
  width: 55px;
  height: 55px;
  min-width: 55px;
  border-radius: 50%;
  background: rgba(231, 111, 81, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
  font-size: 1.3rem;
  box-shadow: 0 4px 10px rgba(231, 111, 81, 0.05);
}

.contact-info-content h3 {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.contact-info-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  word-break: break-all;
}

.contact-info-content span.placeholder-badge {
  display: inline-block;
  background-color: var(--bg-secondary);
  border: 1px dashed var(--text-light);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Sección de Mapa Simulada Elegante */
.contact-map-wrapper {
  height: 100%;
  min-height: 350px;
  background-color: var(--bg-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 45, 61, 0.04);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  text-align: center;
}

.contact-map-placeholder {
  z-index: 2;
}

.map-icon {
  font-size: 3rem;
  color: var(--accent-orange);
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

@media (min-width: 992px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}

/* ==========================================================================
   PÁGINA - FORMULARIO DE CONTACTO
   ========================================================================== */
.contact-form-page {
  padding-top: calc(var(--nav-height) + 40px);
}

.contact-split-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .contact-split-container {
    grid-template-columns: 1fr 1.2fr;
    align-items: stretch;
  }
}

.contact-person-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 400px;
  display: flex;
  flex-direction: column;
}

.person-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.person-info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(15, 27, 45, 0.95) 0%, rgba(15, 27, 45, 0.7) 60%, transparent 100%);
  padding: 40px 30px 30px 30px;
  color: #fff;
  text-align: left;
}

.person-name {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.person-role {
  font-size: 1.1rem;
  color: var(--accent-orange);
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.person-phone {
  font-size: 1.05rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-wrapper {
  max-width: 100%;
  margin: 0;
  background-color: var(--bg-card);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 45, 61, 0.02);
}

@media (min-width: 768px) {
  .form-wrapper {
    padding: 60px 50px;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group label {
  font-family: var(--font-headings);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-control {
  width: 100%;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(0, 45, 61, 0.1);
  background-color: #FFFFFF;
  color: #333333;
  font-family: var(--font-body);
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 4px rgba(231, 111, 81, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-submit-container {
  margin-top: 15px;
}

.form-submit-btn {
  width: 100%;
  font-size: 1.05rem;
}

/* Mensajes de Validación y Estado */
.form-feedback {
  display: none;
  font-size: 0.85rem;
  color: #D32F2F;
  margin-top: 4px;
}

.form-control.invalid {
  border-color: #D32F2F;
}

.form-control.invalid:focus {
  box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.15);
}

.form-control.invalid+.form-feedback {
  display: block;
}

.form-alert {
  display: none;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  font-weight: 500;
  animation: slideDown 0.4s ease-out forwards;
}

.form-alert-success {
  background-color: #E8F5E9;
  color: #2E7D32;
  border: 1px solid #C8E6C9;
}

.form-alert-error {
  background-color: #FFEBEE;
  color: #C62828;
  border: 1px solid #FFCDD2;
}

@keyframes slideDown {
  from {
    transform: translateY(-10px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ==========================================================================
   PIE DE PÁGINA (FOOTER)
   ========================================================================== */
.footer {
  background-color: #0b1420;
  color: #d0dae8;
  padding: 60px 0 30px 0;
  border-top: 2px solid var(--accent-orange);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand {
  max-width: 350px;
}

.footer-brand .logo-title {
  color: #ffffff;
}

.footer-brand p {
  color: #a0aab5;
  font-size: 0.95rem;
  margin-top: 20px;
  margin-bottom: 24px;
}

.footer-nav-col h3 {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.footer-nav-col h3::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--accent-orange);
  margin-top: 8px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #a0aab5;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-orange);
  padding-left: 5px;
}

/* Iconos de Redes Sociales */
.social-links {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e0e6ef;
  font-size: 1.15rem;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.social-btn:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(255, 85, 0, 0.4);
}

/* Copyright y Barra Inferior */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: center;
}

.footer-bottom p {
  color: #64748b;
  font-size: 0.88rem;
}

.soundwave-footer {
  width: 150px;
  height: auto;
  opacity: 0.3;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
  }

  .footer-bottom {
    flex-direction: row;
    text-align: left;
  }
}

/* ==========================================================================
   REPRODUCTOR DE AUDIO
   ========================================================================== */
.audio-player-container {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}

.audio-visualizer-small {
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  overflow: hidden;
}

.soundwave-visual-small {
  width: 100%;
  height: 100%;
}

.audio-player {
  margin-bottom: 24px;
}

.track-info {
  text-align: center;
  margin-bottom: 16px;
}

.track-info h3 {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.track-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.audio-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}

.control-btn {
  background: transparent;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.control-btn:hover {
  color: var(--accent-orange);
  background: rgba(255, 85, 0, 0.1);
}

.play-btn {
  background: var(--accent-orange);
  color: #fff;
  width: 56px;
  height: 56px;
  box-shadow: 0 4px 15px rgba(255, 85, 0, 0.3);
}

.play-btn:hover {
  background: #ff6b1a;
  color: #fff;
  transform: scale(1.05);
}

.progress-container {
  background: rgba(255, 255, 255, 0.1);
  height: 6px;
  border-radius: 3px;
  cursor: pointer;
  margin-bottom: 8px;
  position: relative;
}

.progress-bar {
  background: var(--grad-soundwave);
  height: 100%;
  border-radius: 3px;
  width: 0%;
  transition: width 0.1s linear;
}

.time-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.playlist-container h4 {
  font-family: var(--font-headings);
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: var(--text-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 8px;
}

.playlist {
  list-style: none;
  max-height: 150px;
  overflow-y: auto;
}

/* Scrollbar styling for playlist */
.playlist::-webkit-scrollbar {
  width: 4px;
}

.playlist::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

.playlist::-webkit-scrollbar-thumb {
  background: var(--accent-orange);
  border-radius: 4px;
}

.playlist li {
  padding: 10px 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  cursor: pointer;
  border-radius: 6px;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 10px;
}

.playlist li:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
}

.playlist li.active {
  background: rgba(255, 85, 0, 0.15);
  color: var(--accent-orange);
  font-weight: 600;
}

/* Controles de Volumen */
.volume-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
}

.volume-btn {
  width: 32px;
  height: 32px;
}

.volume-slider {
  -webkit-appearance: none;
  width: 100px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--text-primary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.volume-slider::-webkit-slider-thumb:hover {
  background: var(--accent-orange);
  transform: scale(1.2);
}

.volume-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--text-primary);
  cursor: pointer;
  border: none;
  transition: var(--transition-fast);
}

.volume-slider::-moz-range-thumb:hover {
  background: var(--accent-orange);
  transform: scale(1.2);
}

/* ==========================================================================
   BOTÓN FLOTANTE WHATSAPP
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
  animation: bounce-in 1s;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  top: 50%;
  transform: translateY(-50%) scale(0.8);
  background-color: var(--bg-card);
  color: var(--text-primary);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  pointer-events: none;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent var(--bg-card);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) scale(1);
}

@keyframes bounce-in {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 767px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float svg {
    width: 25px;
    height: 25px;
  }
}