/* ✨ Marco blanco con brillo suave */
#galeria img,
.logo img,
.footer-logo img,
video {
  border: 2px solid #fff;
  border-radius: 8px;
  box-shadow:
    0 0 6px #fff,
    0 0 12px #fff,
    0 0 18px rgba(255, 255, 255, 0.8);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* 💫 Brillo un poco más fuerte al pasar el cursor */
#galeria img:hover,
video:hover {
  transform: scale(1.05);
  box-shadow:
    0 0 10px #fff,
    0 0 20px #fff,
    0 0 30px rgba(255, 255, 255, 0.9);
}


/* Estilo base */
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #000;
  color: #fff;
}




.logo img {
  /* AGREGADO: Aumenta este valor para el tamaño deseado */
  max-width: 300px; 
  width: 100%; 
  
  /* CÓDIGO PARA EL MARCO BLANCO */
  border: 3px solid white; 
  padding: 5px; /* Pequeño espacio entre la imagen y el borde */
  
  /* Estilos de centrado */
  display: block; 
  margin: 0 auto; 
}

.logo h1 {
  margin: 10px 0 0;
  font-size: 2em;
  color: #fff;
}

h2:before {
  /* Emoticono de Guitarra a la izquierda */
  content: "\1F3B8 \A0"; /* 🎸 y un espacio */
  margin-right: 10px; 
  color: white; /* Asegúrate de que se vea si el fondo es oscuro */
}

h2:after {
  /* Emoticono de Guitarra a la derecha */
  content: "\A0 \1F3B8"; /* Un espacio y 🎸 */
  margin-left: 10px; 
  color: white; 
}


section {
  padding: 40px 20px;
  text-align: center;
}


#galeria .imagenes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

#galeria img {
  width: 500px;
  max-width: 90%;
  height: auto;
  border: 2px solid #fff;
  border-radius: 5px;
  transition: transform 0.3s ease;
}

#galeria img:hover {
  transform: scale(1.05);
}

video {
  max-width: 800px;
  width: 100%;
  border: 2px solid #fff;
  border-radius: 5px;
}

footer {
  background-color: #111;
  text-align: center;
  padding: 30px 20px;
  color: #fff;
}

.footer-redes {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-redes a {
  color: #fff;
  text-decoration: none;
  font-size: 1em;
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-redes a:hover {
  color: #aaa;
}

.footer-logo img {
  /* AGREGADO: Aumentamos el tamaño del logo del footer */
  width: 150px;
  height: auto; /* Mantiene la proporción */
  
  /* Otros estilos que ya tenías */
  filter: grayscale(100%) brightness(1.2);
  margin: 20px 0 10px;
  
  /* Marco blanco (si deseas que siga ahí) */
  border: 2px solid white; 
  padding: 3px; 
}
.derechos {
  font-size: 0.9em;
  color: #aaa;
}
.whatsapp-flotante {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  z-index: 1000;
}

/* Ajuste para el ícono dentro del botón flotante */
.whatsapp-flotante img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
/* 💡 Títulos con brillo blanco suave y tamaño más reducido */
section h2 {
  font-size: 1.3em; /* 🔹 reducido (antes 1.6em) */
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  text-shadow:
    0 0 5px rgba(255, 255, 255, 0.8),
    0 0 10px rgba(255, 255, 255, 0.7),
    0 0 15px rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

/* ✨ Brillo un poco más fuerte al pasar el cursor */
section h2:hover {
  text-shadow:
    0 0 8px rgba(255, 255, 255, 1),
    0 0 16px rgba(255, 255, 255, 0.9),
    0 0 28px rgba(255, 255, 255, 0.8);
  transform: scale(1.02);
}

/* 💫 Redes sociales del footer con brillo y tamaño más moderado */
.footer-redes a {
  color: #fff;
  text-decoration: none;
  font-size: 1.4em; /* 🔹 aumentado */
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-shadow:
    0 0 5px rgba(255, 255, 255, 0.8),
    0 0 10px rgba(255, 255, 255, 0.7),
    0 0 15px rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  margin: 6px;
}

/* ✨ Brillo más sutil al pasar el cursor */
.footer-redes a:hover {
  text-shadow:
    0 0 8px rgba(255, 255, 255, 1),
    0 0 16px rgba(255, 255, 255, 0.9),
    0 0 28px rgba(255, 255, 255, 0.8);
  transform: scale(1.05);
}

/* 🌐 Contenedor de redes centrado y con espacio equilibrado */
.footer-redes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
/* 🔼 Flecha flotante para volver arriba */
.flecha-arriba {
  position: fixed;
  bottom: 120px; /* ⬆️ más arriba que el botón de WhatsApp */
  right: 40px;
  background-color: rgba(255, 255, 255, 0.15);
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 1.8em;
  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 45px;
  text-decoration: none;
  box-shadow:
    0 0 8px rgba(255, 255, 255, 0.8),
    0 0 15px rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 1100; /* 🔝 Siempre encima del botón de WhatsApp */
}

/* ✨ Hover con más brillo */
.flecha-arriba:hover {
  box-shadow:
    0 0 12px rgba(255, 255, 255, 1),
    0 0 25px rgba(255, 255, 255, 0.9);
  transform: scale(1.1);
}

/* 🔹 Clase visible al hacer scroll */
.flecha-arriba.visible {
  opacity: 1;
  pointer-events: all;
}

/*.*.*.*.*.*.*.*.*.*.*.*.*.*.**.*.*.*.*.*.*.**.*.*.**MENU NUEVO MODERNO.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*.*/

/* ============================
   🟢 MENÚ MODERNO RESPONSIVO
   ============================ */

header {
  width: 100%;
  background: #111;
  border-bottom: 2px solid white;
  box-shadow: 0 0 10px rgba(255,255,255,0.4);
}

.contenedor-header {
  max-width: 1100px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo centrado */
.header .logo {
  text-align: center;
}

.header .logo img {
  max-width: 200px;
  width: 100%;
  border: 3px solid white;
  padding: 5px;
  border-radius: 8px;
  box-shadow:
    0 0 6px #fff,
    0 0 12px #fff,
    0 0 18px rgba(255, 255, 255, 0.8);
}

/* Botón hamburguesa */
.menu-btn {
  font-size: 2.3rem;
  color: #fff;
  cursor: pointer;
  display: none;
  user-select: none;
  text-shadow: 0 0 8px #fff;
  transition: 0.3s;
}

.menu-btn.abierto {
  transform: rotate(90deg);
}

/* Menú en escritorio */
.nav {
  display: flex;
  gap: 25px;
}

.nav a {
  color: #fff;
  font-weight: bold;
  font-size: 1.2em;
  text-decoration: none;
  text-shadow: 0 0 8px rgba(255,255,255,0.8);
  transition: all 0.3s ease;
}

.nav a:hover {
  color: #aaa;
  transform: scale(1.05);
}

/* ============================
   🔵 Versión Celular
   ============================ */
@media (max-width: 820px) {

  .menu-btn {
    display: block;
  }

  .nav {
    position: absolute;
    top: 90px;
    right: 0;
    width: 100%;
    background: rgba(0,0,0,0.95);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    border-top: 2px solid white;
    gap: 20px;
    display: none; /* oculto por defecto */
  }

  /* Mostrar menú */
  .nav.activo {
    display: flex;
    animation: fadeIn 0.3s ease-in-out;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}
