/* ========== RESET & BASE METAL PREMIUM ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #0a0a0f;
  color: #e0e0e0;
  line-height: 1.5;
  scroll-behavior: smooth;
  background-image: 
    repeating-linear-gradient(45deg, rgba(30, 40, 60, 0.03) 0px, rgba(30, 40, 60, 0.03) 2px, transparent 2px, transparent 8px);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-padding {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
}

.section-header h2 {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff, #7EC8E0, #3a6ea5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #7EC8E0;
  letter-spacing: 2px;
  font-weight: 500;
  text-transform: uppercase;
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 0 2px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

/* ========== NAVBAR PREMIUM - MEJORADA RESPONSIVE ========== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(8, 8, 12, 0.98);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  z-index: 999;
  border-bottom: 1px solid rgba(126, 200, 224, 0.25);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.logo {
  height: 45px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s;
}

.nav-menu {
  display: flex;
  gap: 42px;
  list-style: none;
}

.nav-link {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s;
  padding-bottom: 4px;
  position: relative;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #7EC8E0, #3a6ea5);
  transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: #7EC8E0;
}

.btn-nav {
  background: linear-gradient(135deg, #1a2a3a, #0f1a24);
  color: #7EC8E0;
  padding: 10px 24px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  transition: all 0.3s;
  border: 1px solid rgba(126, 200, 224, 0.4);
  white-space: nowrap;
}

.btn-nav:hover {
  background: linear-gradient(135deg, #2a3a4a, #1a2a35);
  color: white;
  transform: translateY(-2px);
  border-color: #7EC8E0;
  box-shadow: 0 5px 15px rgba(126, 200, 224, 0.2);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s;
  padding: 8px;
  border-radius: 8px;
}

.menu-toggle:hover {
  color: #7EC8E0;
  background: rgba(126, 200, 224, 0.1);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(ellipse at 30% 40%, #0f1a24 0%, #050508 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 800" opacity="0.05"><path fill="none" stroke="%237EC8E0" stroke-width="0.5" d="M0 400 L800 400 M400 0 L400 800 M200 200 L600 600 M600 200 L200 600"/><circle cx="400" cy="400" r="150" stroke="%237EC8E0" stroke-width="0.5" fill="none"/></svg>');
  background-repeat: repeat;
  background-size: 60px;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(58, 110, 165, 0.15), rgba(0, 0, 0, 0.85));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 950px;
  padding: 0 24px;
}

.hero-tagline {
  font-size: 0.9rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #7EC8E0;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(126, 200, 224, 0.4);
}

.hero h1 {
  font-size: 5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  margin: 28px 0;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.hero .highlight {
  background: linear-gradient(135deg, #7EC8E0, #3a6ea5, #7EC8E0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 30px rgba(126, 200, 224, 0.3);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 45px;
  color: #c0c0d0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s;
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #1a2a3a, #0f1f2a);
  color: #7EC8E0;
  border: 1px solid rgba(126, 200, 224, 0.5);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2a3f50, #1a2f3f);
  color: white;
  transform: translateY(-3px);
  border-color: #7EC8E0;
  box-shadow: 0 10px 25px rgba(58, 110, 165, 0.3);
}

.btn-spotify {
  background: linear-gradient(135deg, #1DB954, #0a7a3a);
  color: white;
}

.btn-spotify:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(29,185,84,0.4);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #075E54);
  color: white;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37,211,102,0.4);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 0.7rem;
  color: #7EC8E0;
  letter-spacing: 2px;
  font-weight: 600;
}

/* ========== HISTORIA ========== */
.historia-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.historia-texto .lead {
  font-size: 1.3rem;
  font-weight: 700;
  color: #7EC8E0;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.historia-texto p {
  margin-bottom: 20px;
  color: #c0c0d0;
  line-height: 1.7;
}

.cita {
  background: linear-gradient(135deg, rgba(26, 42, 58, 0.6), rgba(0, 0, 0, 0.4));
  border-left: 4px solid #7EC8E0;
  padding: 24px 30px;
  margin-top: 32px;
  border-radius: 16px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.cita i {
  color: #7EC8E0;
  font-size: 32px;
  margin-bottom: 12px;
}

.cita p {
  font-style: italic;
  font-size: 1.1rem;
}

.historia-imagen {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(126, 200, 224, 0.25);
  width: 100%;
  background: linear-gradient(145deg, #0f121c, #080a10);
}

.historia-imagen img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s;
  background: #0a0a0f;
}

.historia-imagen:hover img {
  transform: scale(1.02);
}

/* ========== MIEMBROS - SIN IMÁGENES, PREMIUM ========== */
.miembros-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  max-width: 900px;
  margin: 0 auto;
}

.miembro-card.sin-imagen {
  background: linear-gradient(145deg, #11151f, #080b12);
  border-radius: 28px;
  padding: 45px 35px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border: 1px solid rgba(126, 200, 224, 0.15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.miembro-card.sin-imagen::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(126, 200, 224, 0.05), transparent);
  transition: left 0.6s;
}

.miembro-card.sin-imagen:hover::before {
  left: 100%;
}

.miembro-card.sin-imagen:hover {
  transform: translateY(-8px);
  border-color: rgba(126, 200, 224, 0.5);
  box-shadow: 0 25px 45px rgba(58, 110, 165, 0.25);
}

.miembro-icono {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #1a2a3a, #0f1f2a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #7EC8E0;
  box-shadow: 0 0 20px rgba(126, 200, 224, 0.3);
  transition: all 0.3s;
}

.miembro-card.sin-imagen:hover .miembro-icono {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(126, 200, 224, 0.5);
}

.miembro-icono i {
  font-size: 42px;
  color: #7EC8E0;
  transition: all 0.3s;
}

.miembro-card.sin-imagen:hover .miembro-icono i {
  color: white;
  text-shadow: 0 0 10px #7EC8E0;
}

.miembro-card.sin-imagen h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: white;
  letter-spacing: 1px;
}

.rol {
  color: #7EC8E0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 20px;
}

.separador {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #7EC8E0, transparent);
  margin: 18px auto;
}

.miembro-card.sin-imagen p {
  font-size: 0.95rem;
  color: #b0b0c0;
  line-height: 1.6;
  margin-bottom: 28px;
}

.social-miembro {
  margin-top: 15px;
}

.social-miembro a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(126, 200, 224, 0.1);
  border-radius: 50%;
  color: #7EC8E0;
  font-size: 1.3rem;
  transition: all 0.3s;
  border: 1px solid rgba(126, 200, 224, 0.2);
}

.social-miembro a:hover {
  background: linear-gradient(135deg, #1a3a55, #0f2a3f);
  color: white;
  transform: translateY(-3px);
  border-color: #7EC8E0;
}

/* ========== MÚSICA ========== */
.musica-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.musica-info h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: white;
  letter-spacing: -0.5px;
}

.influencias h4, .discografia h4 {
  font-size: 1.1rem;
  margin: 30px 0 16px;
  color: #7EC8E0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tags span {
  background: rgba(58, 110, 165, 0.15);
  padding: 6px 16px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(126, 200, 224, 0.3);
  color: #7EC8E0;
  transition: all 0.2s;
}

.tags span:hover {
  background: rgba(126, 200, 224, 0.2);
  border-color: #7EC8E0;
  transform: translateY(-2px);
}

.btn-spotify-small {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #1DB954, #0a7a3a);
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 24px;
  transition: all 0.3s;
}

.btn-spotify-small:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(29,185,84,0.4);
}

.musica-destacado .player-placeholder {
  background: linear-gradient(145deg, #0f121c, #080a10);
  border-radius: 28px;
  padding: 50px 25px;
  text-align: center;
  border: 1px solid rgba(126, 200, 224, 0.25);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.5);
}

.musica-destacado i {
  font-size: 48px;
  color: #7EC8E0;
  margin-bottom: 20px;
  text-shadow: 0 0 12px rgba(126, 200, 224, 0.4);
}

.proximamente {
  display: inline-block;
  background: rgba(58, 110, 165, 0.2);
  padding: 6px 16px;
  border-radius: 40px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 16px 0;
  color: #7EC8E0;
}

.btn-spotify-placeholder {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #1DB954, #0a7a3a);
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
}

/* ========== GALERÍA ========== */
.galeria-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.galeria-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  border: 1px solid rgba(126, 200, 224, 0.2);
  transition: all 0.3s;
  background: #0f121c;
}

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.galeria-item:hover {
  transform: translateY(-5px);
  border-color: #7EC8E0;
  box-shadow: 0 15px 30px rgba(58, 110, 165, 0.2);
}

.galeria-item:hover img {
  transform: scale(1.05);
}

.galeria-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(58, 110, 165, 0.7), rgba(0, 0, 0, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.galeria-item:hover .galeria-overlay {
  opacity: 1;
}

.galeria-overlay i {
  font-size: 34px;
  color: white;
  text-shadow: 0 0 10px black;
}

/* ========== CONTACTO ========== */
.contacto-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contacto-info h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: white;
  letter-spacing: -0.5px;
}

.contacto-detalles {
  margin: 36px 0;
}

.contacto-item {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(126, 200, 224, 0.2);
}

.contacto-item i {
  font-size: 28px;
  color: #7EC8E0;
  min-width: 40px;
}

.contacto-item a {
  color: #ccc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  word-break: break-word;
}

.contacto-item a:hover {
  color: #7EC8E0;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.social-links a {
  width: 48px;
  height: 48px;
  background: linear-gradient(145deg, #151a25, #0a0e16);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7EC8E0;
  font-size: 20px;
  transition: all 0.3s;
  border: 1px solid rgba(126, 200, 224, 0.3);
}

.social-links a:hover {
  background: linear-gradient(135deg, #2a4a6a, #1a3a55);
  color: white;
  transform: translateY(-4px);
  border-color: #7EC8E0;
}

.contacto-form {
  background: linear-gradient(145deg, #111520, #080c14);
  padding: 40px 35px;
  border-radius: 28px;
  border: 1px solid rgba(126, 200, 224, 0.2);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.4);
}

.contacto-form h3 {
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: #0f121b;
  border: 1px solid rgba(126, 200, 224, 0.25);
  border-radius: 14px;
  color: white;
  font-family: inherit;
  transition: all 0.25s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #7EC8E0;
  box-shadow: 0 0 0 3px rgba(126, 200, 224, 0.15);
  background: #141824;
}

.btn-full {
  width: 100%;
  justify-content: center;
  background: linear-gradient(135deg, #1a3a55, #0f2a3f);
  color: #7EC8E0;
  border: 1px solid rgba(126, 200, 224, 0.4);
  cursor: pointer;
}

.btn-full:hover {
  background: linear-gradient(135deg, #2a4f70, #1a3f5a);
  color: white;
}

/* ========== FOOTER ========== */
.footer {
  background: #030508;
  border-top: 1px solid rgba(126, 200, 224, 0.25);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo {
  height: 45px;
  width: auto;
  object-fit: contain;
  margin-bottom: 18px;
}

.footer-brand p {
  color: #aaa;
  margin-bottom: 18px;
  line-height: 1.6;
  font-size: 0.9rem;
}

.footer-links h4, .footer-newsletter h4 {
  color: white;
  margin-bottom: 22px;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: all 0.2s;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #7EC8E0;
  padding-left: 5px;
}

.social-links-footer {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.social-links-footer a {
  width: 40px;
  height: 40px;
  background: rgba(58, 110, 165, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7EC8E0;
  transition: all 0.3s;
  border: 1px solid rgba(126, 200, 224, 0.2);
}

.social-links-footer a:hover {
  background: #1a3a55;
  color: white;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(126, 200, 224, 0.1);
  font-size: 0.75rem;
  color: #777;
}

/* ========== RESPONSIVE - VERSIÓN MÓVIL OPTIMIZADA ========== */
@media (max-width: 1024px) {
  .galeria-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .contacto-wrapper, .musica-content, .historia-content {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 4rem;
  }
  .section-padding {
    padding: 80px 0;
  }
  .container {
    padding: 0 30px;
  }
}

@media (max-width: 768px) {
  /* MENÚ HAMBURGUESA MEJORADO */
  .menu-toggle {
    display: block;
    z-index: 1001;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(8, 8, 12, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 80px 20px 40px;
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(126, 200, 224, 0.3);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-link {
    font-size: 1.1rem;
    padding: 10px 0;
    white-space: normal;
  }
  
  .btn-nav {
    display: none;
  }
  
  /* Overlay para cuando el menú está abierto */
  body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
  }
  
  body.menu-open {
    overflow: hidden;
  }
  
  /* Ajustes generales móvil */
  .container {
    padding: 0 20px;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 2.2rem;
    letter-spacing: 2px;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }
  
  .hero {
    min-height: 90vh;
  }
  
  .hero h1 {
    font-size: 2.2rem;
    margin: 20px 0;
  }
  
  .hero-tagline {
    font-size: 0.7rem;
    letter-spacing: 4px;
  }
  
  .hero p {
    font-size: 1rem;
    margin-bottom: 30px;
    padding: 0 10px;
  }
  
  .hero-buttons {
    gap: 12px;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.75rem;
    gap: 8px;
  }
  
  .hero-scroll {
    bottom: 20px;
    font-size: 0.6rem;
  }
  
  /* Historia móvil */
  .historia-content {
    gap: 40px;
  }
  
  .historia-texto .lead {
    font-size: 1.1rem;
  }
  
  .historia-texto p {
    font-size: 0.9rem;
  }
  
  .cita {
    padding: 18px 20px;
  }
  
  .cita p {
    font-size: 0.9rem;
  }
  
  .historia-imagen {
    min-height: auto;
  }
  
  /* Miembros móvil */
  .miembros-grid {
    gap: 30px;
    padding: 0;
  }
  
  .miembro-card.sin-imagen {
    padding: 30px 20px;
  }
  
  .miembro-icono {
    width: 70px;
    height: 70px;
  }
  
  .miembro-icono i {
    font-size: 32px;
  }
  
  .miembro-card.sin-imagen h3 {
    font-size: 1.4rem;
  }
  
  .rol {
    font-size: 0.7rem;
    letter-spacing: 2px;
  }
  
  .miembro-card.sin-imagen p {
    font-size: 0.85rem;
  }
  
  /* Música móvil */
  .musica-content {
    gap: 40px;
  }
  
  .musica-info h3 {
    font-size: 1.5rem;
  }
  
  .tags span {
    font-size: 0.7rem;
    padding: 5px 12px;
  }
  
  .musica-destacado .player-placeholder {
    padding: 40px 20px;
  }
  
  .musica-destacado i {
    font-size: 40px;
  }
  
  /* Galería móvil */
  .galeria-grid-4 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* Contacto móvil */
  .contacto-wrapper {
    gap: 40px;
  }
  
  .contacto-info h3 {
    font-size: 1.5rem;
  }
  
  .contacto-item {
    gap: 15px;
  }
  
  .contacto-item i {
    font-size: 24px;
    min-width: 35px;
  }
  
  .contacto-item a {
    font-size: 0.85rem;
  }
  
  .social-links a {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
  
  .contacto-form {
    padding: 30px 25px;
  }
  
  .contacto-form h3 {
    font-size: 1.3rem;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
  
  /* Footer móvil */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }
  
  .footer-brand p {
    font-size: 0.85rem;
  }
  
  .footer-links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  
  .footer-links li {
    margin-bottom: 0;
  }
  
  .social-links-footer {
    justify-content: center;
  }
  
  /* WhatsApp float móvil */
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 25px;
    bottom: 15px;
    right: 15px;
  }
}

/* Pantallas muy pequeñas (menos de 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .miembro-card.sin-imagen {
    padding: 25px 18px;
  }
  
  .miembro-icono {
    width: 60px;
    height: 60px;
  }
  
  .miembro-icono i {
    font-size: 28px;
  }
  
  .miembro-card.sin-imagen h3 {
    font-size: 1.2rem;
  }
  
  .contacto-form {
    padding: 25px 20px;
  }
  
  .social-links {
    justify-content: center;
  }
}