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

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    padding: 15px 30px;
    position: absolute;
    width: 100%;
    top: 0;
}

header .logo img {
    height: 80px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding-right: 100px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

/* Hero section */
#hero {
    text-align: left;
    background: url('IMG/portada.png') no-repeat center center/cover;
    color: white;
    padding: 700px 20px;
    height: auto;
    align-items: flex-start;
    justify-content: flex-end;
    width: 100%;
    padding-left: 50px;
    padding-bottom: 5px;
}

#hero h1 {
    font-size: 2.5em;
    font-weight: bold;
}

#hero p {
    font-size: 1.5em;
    font-weight: lighter;
}


/* Transmisiones en vivo */
#transmisiones, #podcast, #servicios, #contacto {
    text-align: center;
    padding: 50px 20px;
}

.transmisiones img, .podcast-links img {
    height: 50px;
    margin: 10px;
}

/* Servicios */
.servicios {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.servicio {
    background-color: #1a1a2e;
    color: white;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
}

/* Contacto */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

form input {
    padding: 10px;
    width: 80%;
    max-width: 400px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    padding: 10px 20px;
    background-color: #1a1a2e;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0f3460;
}

/* Footer */
footer {
    background-color: #1a1a2e;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}

.redes-sociales img {
    height: 30px;
    margin: 10px;
    filter: invert(1);
}
