/* Reset y Estilos Generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

.red-text {
    color: #E50914;
}

/* Header */
.header {
    background-color: #000;
    color: #fff;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo h1 {
    font-size: 2rem;
    font-weight: bold;
}

.navbar ul {
    display: flex;
    list-style: none;
}

.navbar ul li {
    margin: 0 1rem;
}

.navbar ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.navbar ul li a:hover {
    color: #E50914;
}

.search-bar {
    display: flex;
    align-items: center;
}

.search-bar input {
    padding: 0.5rem;
    border: none;
    border-radius: 4px;
    margin-right: 0.5rem;
}

.search-bar button {
    background: #E50914;
    color: #fff;
    border: none;
    padding: 0.5rem;
    border-radius: 4px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://via.placeholder.com/1920x1080');
    background-size: cover;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    background: #E50914;
    color: #fff;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
    display: inline-block;
}

.btn:hover {
    background: #b2070f;
}

/* Secciones Generales */
.section-title {
    text-align: center;
    margin: 3rem 0;
    font-size: 2.5rem;
}

/* Sección En Vivo */
.live-section {
    padding: 3rem 5%;
    background: #fff;
}

.live-container {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.video-container {
    flex: 2;
}

.video-container iframe {
    width: 100%;
    height: 400px;
    border-radius: 8px;
}

.live-info {
    flex: 1;
    background: #f1f1f1;
    padding: 2rem;
    border-radius: 8px;
}

.live-info h3 {
    margin-bottom: 1rem;
    color: #E50914;
}

.btn-outline {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 2px solid #E50914;
    color: #E50914;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 1rem;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #E50914;
    color: #fff;
}

/* Programas Destacados */
.shows-section {
    padding: 3rem 5%;
    background: #f9f9f9;
}

.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.show-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.show-card:hover {
    transform: translateY(-10px);
}

.show-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.show-card h3 {
    padding: 1rem;
    font-size: 1.3rem;
}

.show-card p {
    padding: 0 1rem 1rem;
    color: #666;
}

.btn-small {
    display: inline-block;
    background: #E50914;
    color: #fff;
    padding: 0.5rem 1rem;
    margin: 1rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-small:hover {
    background: #b2070f;
}

/* Sección de Radios */
.radio-section {
    padding: 3rem 5%;
    background: #fff;
}

.radio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.radio-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.radio-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.radio-card h3 {
    margin-bottom: 1rem;
}

.radio-card audio {
    width: 100%;
    margin-top: 1rem;
}

/* Sección del Tiempo */
.weather-section {
    padding: 3rem 5%;
    background: #f9f9f9;
}

.weather-container {
    display: flex;
    justify-content: center;
}

.weather-card {
    background: #f1f1f1;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    width: 300px;
}

.weather-card h3 {
    margin-bottom: 1rem;
    color: #E50914;
}

.weather-card p {
    margin: 0.5rem 0;
}

/* Sección de Feeds Sociales */
.social-feed {
    padding: 3rem 5%;
    background: #fff;
    text-align: center;
}

.social-feed h3 {
    margin-bottom: 1rem;
    color: #E50914;
}

.fb-page, 
.twitter-timeline, 
.instagram-media {
    margin: 0 auto;
    display: block;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Contacto */
.contact-section {
    padding: 3rem 5%;
    background: #f9f9f9;
}

.contact-container {
    display: flex;
    gap: 3rem;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input, 
.contact-form textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-info {
    flex: 1;
    background: #f1f1f1;
    padding: 2rem;
    border-radius: 8px;
}

.contact-info h3 {
    margin-bottom: 1rem;
    color: #E50914;
}

.contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 3rem 5%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #E50914;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #E50914;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        padding: 1rem;
    }

    .navbar ul {
        flex-direction: column;
        margin: 1rem 0;
    }

    .live-container {
        flex-direction: column;
    }

    .contact-container {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}