/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #003d3e;
}

.container {
    width: 80%;
    margin: 0 auto;
}

/* Estilos para el encabezado principal (MEJORADO) */
.main-header {
    height: 250px;
    background-image: url('images/header.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Estilos para el logo dentro del header */
.header-logo {
    width: 200px;
    height: auto;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 10px;
}

/* Estilos para el segundo header (color principal del logo) */
.sub-header {
    height: auto;
    background-color: #003d3e; /* Color oscuro del logo */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    color: white;
}

/* Estilos para la sección de la fecha (color de acento) */
.date {
    background-color: #00ae69; /* Verde vibrante del logo */
    padding: 5px 10px;
    border-radius: 5px;
    margin-right: 10px;
}

/* Estilos para la sección de la ubicación */
.location {
    display: flex;
    align-items: center;
}

.location i {
    font-size: 20px;
    margin-right: 5px;
    color: #ffffff;
}

/* Estilos para los íconos de redes sociales (color de acento) */
.social-icons {
    text-align: center;
    margin-top: 20px;
}

.social-icon {
    display: inline-block;
    margin: 0 10px;
    font-size: 24px;
    color: #fdb910; /* Amarillo-naranja del logo */
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: rotate(360deg);
}

/* Estilos para la zona de descarga de aplicaciones */
.app-download {
    text-align: center;
    margin-top: 50px;
}

.app-download h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #003d3e; /* Color principal del logo */
}

/* Estilos para los íconos de descarga de apps (color de acento) */
.app-download h2 i {
    color: #fdb910;
}

.app-links {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Estilos para los enlaces de apps (color de acento) */
.app-link {
    text-decoration: none;
    margin: 0 20px;
    color: #fdb910;
    transition: transform 0.3s ease;
}

.app-link:hover {
    transform: scale(1.1);
}

/* Estilos para la zona de contacto (color de fondo sutil) */
.contact-info {
    margin-top: 20px;
    padding: 20px;
    background-color: #fcffb2; /* Color amarillo pálido del logo */
    border-radius: 5px;
}

.contact-info h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #003d3e;
}

.contact-info h2 i {
    color: #fdb910;
}

.contact-info p {
    margin-bottom: 10px;
    color: #003d3e;
}

/* Estilos para los íconos de contacto (color de acento) */
.contact-info p i {
    margin-right: 10px;
    color: #fdb910;
}

.contact-info a {
    color: #003d3e;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Estilos para el mapa de Google */
iframe {
    width: 100%;
    border: none;
}

/* Espaciador para que el contenido no se oculte detrás del reproductor */
.player-spacer {
    height: 90px; /* Ajusta este valor si el reproductor cambia de tamaño */
}

/* --- ESTILOS PARA EL PIE DE PÁGINA (FOOTER) --- */
.main-footer {
    background-color: #003d3e; /* Color oscuro del logo */
    color: #ffffff; /* Color blanco */
    text-align: center;
    padding: 20px;
}

.main-footer a {
    color: #fdb910; /* Amarillo-naranja del logo */
    text-decoration: none;
}

.main-footer a:hover {
    text-decoration: underline;
}

/* Estilos del nuevo reproductor */
#hp-mod-8004 {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

#hp-mod-8004 .hp-wrap{display:flex;align-items:center;justify-content:center;gap:12px;background:#2c313c;padding:12px;border-radius:12px;max-width:350px;margin:auto;}
#hp-mod-8004 .hp-btn{width:46px;height:46px;border-radius:50%;border:0;cursor:pointer;background:linear-gradient(135deg,#bb86fc,#8e6cf6);color:#fff;font-size:1.1rem}
#hp-mod-8004 .hp-live{font-size:.75rem;padding:3px 8px;border-radius:999px;background:#f44336;color:#fff;font-weight:700}
#hp-mod-8004 .hp-eq{display:flex;gap:3px;height:12px;align-items:flex-end}
#hp-mod-8004.playing .hp-eq span{animation:hp-bounce-8004 .4s linear infinite;background:#fff}
#hp-mod-8004.playing .hp-eq span:nth-child(2){animation-delay:.1s}
#hp-mod-8004.playing .hp-eq span:nth-child(3){animation-delay:.2s}
#hp-mod-8004.playing .hp-eq span:nth-child(4){animation-delay:.3s}
#hp-mod-8004.playing .hp-eq span:nth-child(5){animation-delay:.4s}
#hp-mod-8004 .hp-eq span{width:4px;height:4px;background:#9ca3af;border-radius:2px;animation-play-state:paused}
#hp-mod-8004 .hp-vol{width:110px}
@keyframes hp-bounce-8004{0%,100%{height:4px}50%{height:12px}}
