    /* Reset general */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #2f4050;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Contenedor general */
.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

/* Encabezado */
header {
    background: linear-gradient(135deg, #ffffff, #9c9494);
    color: #120d2b;
    text-align: center;
    padding: 40px 0;
}

header .logo img {
    max-width: 120px;
    margin-bottom: 20px;
    border-radius: 8px;
}

header h1 {
    font-size: 2.5rem;
}

header p {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* Sección principal */
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
}

/* Sección del reproductor */
.radio-player {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    width: 100%;
}

.radio-player h2 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.radio-player iframe {
    border: none;
    border-radius: 5px;
}

/* Sección "Sobre Nosotros" */
.about {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 100%;
    text-align: center;
}

.about h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
}

/* Sección de redes sociales */
.social-media {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 100%;
    text-align: center;
}

.social-media h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
}

.social-media .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-media .social-links a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.social-media .social-links .facebook { background-color: #3b5998; }
.social-media .social-links .twitter { background-color: #1da1f2; }
.social-media .social-links .instagram { background-color: #e1306c; }

.social-media .social-links a:hover {
    opacity: 0.8;
}

/* Pie de página */
footer {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    width: 100%;
    margin-top: auto;
}
