/* Reset y estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    overflow-x: hidden; /* Prevenir scroll horizontal cuando el panel está abierto */
    position: relative;
    color: #333;
    background-color: #000000;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Estilos del header */
header {
    width: 100%;
    background-color: #000;
    color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    padding: 10px 0;
    transform: translateY(-100%);
}

.sticky-header.visible {
    transform: translateY(0);
}

.header-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: table;
}

.logo-container {
    display: table-cell;
    vertical-align: middle;
    width: 30%;
    text-align: left;
}

.logo-container h1 {
    font-size: 1.8rem;
    font-weight: bold;
    display: inline-block;
    vertical-align: middle;
}

.menu-container {
    display: table-cell;
    vertical-align: middle;
    width: 70%;
    text-align: right;
}

.main-nav {
    display: block;
}

.nav-list {
    display: inline-block;
}

.nav-item {
    display: inline-block;
    margin-left: 20px;
}

.nav-item a {
    color: #fff;
    font-weight: 500;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

.nav-item a:hover {
    color: #f8f9fa;
    text-decoration: underline;
}

/* Estilos del botón de menú */
.menu-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    margin-left: 15px;
    display: none;
    vertical-align: middle;
    float: right;
}

/* Estilos del panel lateral */
.side-panel {
    position: fixed;
    top: 0;
    left: -280px; /* Inicialmente fuera de la vista */
    width: 280px;
    height: 100%;
    background-color: #000;
    color: white;
    z-index: 1050;
    transition: left 0.3s ease;
    box-shadow: 2px 0 5px rgba(0,0,0,0.2);
    overflow-y: auto;
}

.side-panel.open {
    left: 0; /* Panel visible */
}

.side-panel-header {
    display: table;
    width: 100%;
    padding: 15px;
    border-bottom: 1px solid #333;
}

.side-panel-header h3 {
    display: table-cell;
    vertical-align: middle;
    margin: 0;
    font-size: 1.5rem;
}

.close-btn {
    display: table-cell;
    vertical-align: middle;
    text-align: right;
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
}

.side-panel-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-panel-nav li {
    border-bottom: 1px solid #333;
}

.side-panel-nav li a {
    display: block;
    padding: 15px;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
}

.side-panel-nav li a:hover {
    background-color: #333;
}

/* Overlay para cuando el panel está abierto */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 255, 106, 0.123);
    z-index: 1040;
    display: none;
}

.overlay.active {
    display: block;
}

/* Estilos del contenedor principal */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Estilos de la sección hero */
.hero-section {
    width: 100%;
    height: 600px;
    position: relative;
    color: #ffffff;
    overflow: hidden;
}

/* Estilos del slider hero */
.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    z-index: -1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Controles del slider */
.hero-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.hero-control {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.hero-control:hover {
    opacity: 1;
}

/* Asegurar que los controles prev y next no tengan fondo */
.hero-control.prev,
.hero-control.next {
    background: transparent;
    background-color: transparent;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
    z-index: 20; /* Asegurar que estén por encima de los indicadores */
}

.hero-indicators {
    display: flex;
    justify-content: center;
    margin: 0 15px;
    background: transparent;
    position: relative;
    z-index: 10;
}

.hero-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5); /* Color por defecto */
    border: none;
    margin: 0 5px;
    cursor: pointer;
    position: relative;
    z-index: 5;
    transition: background-color 0.3s ease;
}

.hero-indicator.active {
    background-color: #ffffff;
}

.hero-button {
    display: inline-block;
    background-color: #ff4500;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-button:hover {
    background-color: #e03d00;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp-button {
    background-color: #25D366;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    width: auto;
    max-width: 350px;
}

.whatsapp-button:hover {
    background-color: #128C7E;
}

.whatsapp-button i {
    font-size: 1.5em;
}

/* Estilos de la sección Nosotros */
.about-section {
    width: 100%;
    min-height: 100dvh;
    padding: 60px 0 60px 0px;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #ff4500;
    margin: 15px auto 0;
}

.about-content {
    display: table;
    width: 100%;
    border-spacing: 30px 0;
}

.about-logo {
    display: table-cell;
    width: 350px;
    vertical-align: middle;
    padding: 30px;
    text-align: center;
    border-radius: 5px;
}

.about-logo img {
    max-width: 100%;
    height: auto;
}

.about-description {
    display: table-cell;
    width: 1fr;
    vertical-align: middle;
    padding: 30px;
    border-radius: 5px;
}

.about-description p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #333;
}

.about-description p:last-child {
    margin-bottom: 0;
}

/* Estilos de la sección Staff */
.staff-section {
    width: 100%;
    min-height: 100dvh;
    padding: 60px 0;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.staff-intro {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.2rem;
    color: #555;
}

.staff-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -15px;
}

.staff-member {
    width: calc(33.33% - 30px);
    margin: 0 15px 30px;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.staff-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.staff-photo {
    height: 300px;
    overflow: hidden;
}

.staff-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.staff-member:hover .staff-photo img {
    transform: scale(1.05);
}

.staff-info {
    padding: 20px;
}

.staff-name {
    margin: 0 0 5px;
    font-size: 1.3rem;
    color: #333;
}

.staff-position {
    margin: 0 0 15px;
    font-size: 1rem;
    color: #ff4500;
    font-weight: 600;
}

.staff-bio {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* Estilos de la sección de programas */
.programas-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    min-height: 100dvh;
    display: flex;
    align-items: center;
}

.programas-tabs {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.programas-tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.programas-tab-buttons .tab-button {
    background: none;
    border: none;
    padding: 10px 20px;
    margin: 0 5px;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.programas-tab-buttons .tab-button:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #ff4500;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.programas-tab-buttons .tab-button:hover {
    color: #ff4500;
}

.programas-tab-buttons .tab-button.active {
    color: #ff4500;
}

.programas-tab-buttons .tab-button.active:after {
    transform: scaleX(1);
}

.programas-tab-content {
    position: relative;
}

.programas-tab-content .tab-pane {
    display: none;
}

.programas-tab-content .tab-pane.active {
    display: block;
}

.programas-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #666;
}

.programas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.programa-item {
    width: 100%;
    max-width: 900px;
    /* El color de fondo se aplicará dinámicamente con JavaScript */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
}

.programa-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.programa-banner {
    width: 300px;
    height: 300px;
    overflow: hidden;
}

.programa-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.programa-item:hover .programa-banner img {
    transform: scale(1.05);
}

.programa-info {
    padding: 20px;
    flex: 1;
}

.programa-header {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.programa-name {
    margin: 0 0 5px;
    font-size: 1.4rem;
    color: #333;
}

.programa-horario {
    margin: 0 0 5px;
    font-size: 1rem;
    color: #ff4500;
    font-weight: 600;
}

.programa-description {
    margin: 0;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* Estilos de la sección Programación Semanal */
.schedule-section {
    width: 100%;
    min-height: 100dvh;
    padding: 60px 0;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.schedule-intro {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.2rem;
    color: #555;
}

.schedule-tabs {
    margin-top: 40px;
}

.schedule-tab-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto 30px;
    border-bottom: 1px solid #ddd;
    max-width: 800px;
}

.tab-button {
    background: none;
    border: none;
    padding: 12px 20px;
    margin: 0 5px 10px;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.tab-button:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #ff4500;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tab-button:hover {
    color: #ff4500;
}

.tab-button.active {
    color: #ff4500;
}

.tab-button.active:after {
    transform: scaleX(1);
}

.schedule-tab-content {
    position: relative;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.schedule-table {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.schedule-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 2px solid #ddd;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.schedule-header-time {
    width: 120px;
    padding-right: 15px;
    text-align: center;
}

.schedule-header-title {
    width: 30%;
    padding-right: 15px;
    padding-left: 15px;
    text-align: center;
}

.schedule-header-host {
    width: 25%;
    padding-right: 15px;
    padding-left: 15px;
    text-align: center;
}

.schedule-header-category {
    width: 15%;
    text-align: center;
}

.schedule-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.schedule-row:last-child {
    border-bottom: none;
}

.schedule-time {
    width: 120px;
    padding-right: 15px;
    font-weight: 600;
    color: #333;
    text-align: center;
}

.schedule-program-title {
    width: 30%;
    padding-right: 15px;
    padding-left: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

.schedule-program-host {
    width: 25%;
    padding-right: 15px;
    padding-left: 15px;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

.schedule-program-category {
    width: 15%;
    text-align: center;
}

.program-category {
    display: inline-block;
    padding: 3px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
}

.program-category.music {
    background-color: #e3f2fd;
    color: #1976d2;
}

.program-category.news {
    background-color: #fff8e1;
    color: #ff8f00;
}

.program-category.talk {
    background-color: #e8f5e9;
    color: #388e3c;
}

/* Estilos de la sección Contacto */
.contact-section {
    width: 100%;
    min-height: 100dvh;
    padding: 60px 0;
    background-color: #f5f5f5;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto 40px;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-label {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-value {
    font-size: 1rem;
}

.social-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.social-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #fff;
}

.social-button.facebook {
    background-color: #3b5998;
}

.social-button.instagram {
    background-color: #e1306c;
}

.social-button.tiktok {
    background-color: #000000;
}

.social-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Estilos de la sección Patrocinadores */
.sponsors-section {
    width: 100%;
    min-height: 100dvh;
    padding: 60px 0;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sponsors-intro {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.2rem;
    color: #555;
}

.sponsors-grid {
    display: table;
    width: 100%;
    border-spacing: 20px;
}

.sponsor-item {
    display: inline-block;
    width: calc(33.33% - 40px);
    margin: 0 20px 20px 0;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 5px;
    text-align: center;
    vertical-align: middle;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sponsor-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.sponsor-item img {
    max-width: 100%;
    max-height: 100px;
    height: auto;
}

/* Estilos de la sección de bienvenida */
.welcome-section {
    width: 100%;
    padding: 20px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 0;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #333;
}

.tagline {
    font-size: 1.2rem;
    color: #666;
}

/* Estilos del contenedor principal y sidebar */
.content-wrapper {
    display: table;
    width: 100%;
    border-spacing: 20px 0;
}

.main-content-area {
    display: table-cell;
    width: 70%;
    vertical-align: top;
}

.sidebar-area {
    display: table-cell;
    width: 30%;
    vertical-align: top;
}

/* Estilos de las cajas de contenido */
.content-box {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    overflow: hidden;
}

.content-box h3 {
    margin: 0;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.content-box p {
    padding: 0 15px;
    margin: 15px 0;
}

.box-header {
    background-color: #222;
    color: #fff;
    padding: 15px;
    font-weight: bold;
}

/* Estilos del reproductor */
.player-container {
    color: #fff;
    padding: 20px;
    text-align: center;
    margin: 15px;
}

.player-title {
    margin-bottom: 15px;
}

.player-controls {
    text-align: center;
}

.play-button, .pause-button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 8px 16px;
    margin: 0 5px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.pause-button {
    background-color: #6c757d;
}

.play-button:hover {
    background-color: #0069d9;
}

.pause-button:hover {
    background-color: #5a6268;
}

/* Estilos de la lista de programación */
.schedule-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.schedule-list li {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

.schedule-list li:last-child {
    border-bottom: none;
}

/* Estilos del footer */
.site-footer {
    background-color: #222;
    color: #fff;
    padding: 30px 0;
    /*margin-top: 50px;*/
}

.footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: table;
}

.footer-info {
    display: table-cell;
    vertical-align: top;
    width: 50%;
}

.footer-info h3 {
    margin-bottom: 10px;
}

.footer-copyright {
    display: table-cell;
    vertical-align: top;
    width: 50%;
    text-align: right;
}

/* Estilos para el player en el footer */
.footer-player {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(100%); /* Oculto por defecto */
    transition: transform 0.3s ease;
}

.footer-player.active {
    transform: translateY(0); /* Visible cuando está activo */
}

.player-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.player-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.player-right {
    display: flex;
    align-items: center;
}

.player-status {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 3px;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ff0000;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

.status-text {
    color: #ffffff;
    font-size: 10px;
    font-weight: bold;
}

.play-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ff3a3a, #cc0000);
    border: none;
    color: white;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.play-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.play-button:active {
    transform: scale(0.95);
}

.play-icon, .pause-icon {
    position: absolute;
}

.pause-icon {
    display: none;
}

.playing .play-icon {
    display: none;
}

.playing .pause-icon {
    display: block;
}

.player-info {
    color: white;
}

.radio-name {
    font-weight: bold;
    margin: 0;
    font-size: 16px;
}

.now-playing-text {
    font-size: 12px;
    opacity: 0.8;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.volume-slider {
    width: 100px;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: #444;
    border-radius: 3px;
    outline: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ff3a3a;
    cursor: pointer;
}

.volume-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ff3a3a;
    cursor: pointer;
    border: none;
}

/* Ajuste para que el footer tenga espacio para el player */
.site-footer {
    margin-bottom: 80px;
}

/* Estilos responsive */
@media (max-width: 900px) {
    .main-nav {
        display: none;
    }
    
    .menu-toggle {
        display: inline-block;
    }
    
    .menu-container {
        position: relative;
    }
    
    /* Ajustes para la sección Nosotros en tablets */
    .about-content {
        display: block;
    }
    
    .about-logo, .about-description {
        display: block;
        width: 100%;
    }
    
    .about-logo {
        margin-bottom: 30px;
    }
    
    /* Ajustes para la sección Programación en tablets */
    .schedule-tab-buttons {
        overflow-x: auto;
        justify-content: center;
        padding-bottom: 10px;
    }
    
    .tab-button {
        flex: 0 0 auto;
    }
    
    .schedule-header-time,
    .schedule-time {
        width: 100px;
    }
    
    .schedule-header-title,
    .schedule-program-title {
        width: 30%;
    }
    
    .schedule-header-host,
    .schedule-program-host {
        width: 25%;
    }
    
    .schedule-header-category,
    .schedule-program-category {
        width: 15%;
    }
    
    /* Ajustes para la sección Staff en tablets */
    .staff-member {
        width: calc(50% - 30px);
    }
    
    /* Ajustes para la sección Programas en tablets */
    .programa-item {
        max-width: 700px;
    }
    
    .programa-banner {
        width: 250px;
    }
    
    /* Ajustes para la sección Patrocinadores en tablets */
    .sponsor-item {
        width: calc(50% - 40px);
    }
    
    .logo-container h1 {
        font-size: 1.5rem;
    }
    
    /* Ajustes para el contenido principal en tablets */
    .content-wrapper {
        display: block;
        width: 100%;
    }
    
    .main-content-area, .sidebar-area {
        display: block;
        width: 100%;
    }
    
    .sidebar-area {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        display: block;
    }
    
    .footer-info, .footer-copyright {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }    
    .logo-container {
        width: 50%;
    }
    
    .logo-container h1 {
        font-size: 1.4rem;
    }
    
    /* Ajustes para la sección hero en móviles */
    .hero-section {
        height: 400px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    /* Ajustes para el contenido principal en móviles */
    .welcome-section {
        padding: 10px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .player-container {
        margin: 10px 0;
    }
    
    .player-controls {
        display: flex;
        flex-direction: column;
    }
    
    .play-button, .pause-button {
        margin: 5px 0;
    }
    
    /* Ajustes para la sección Programación en móviles */
    .schedule-table {
        max-width: 90%;
        margin: 0 auto;
    }
    
    .schedule-header {
        display: none;
    }
    
    .schedule-row {
        padding: 15px 0;
        margin-bottom: 10px;
        background-color: #f9f9f9;
        border-radius: 8px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }
    
    .schedule-time {
        width: 100%;
        margin-bottom: 8px;
        padding: 5px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid #eee;
    }
    
    .schedule-program-title {
        width: 100%;
        margin-bottom: 5px;
        padding: 5px 0;
        font-size: 1.1rem;
    }
    
    .schedule-program-host {
        width: 100%;
        margin-bottom: 5px;
        padding: 3px 0;
    }
    
    .schedule-program-category {
        width: 100%;
        padding: 3px 0;
    }
    
    /* Ajustes para la sección Contacto en móviles */
    .contact-info {
        max-width: 90%;
        padding: 0 15px;
    }
    
    .social-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .social-buttons i {
        color:#ffffff;
    }
    
    .social-button {
        width: 80%;
        margin: 0 auto;
    }
    
    /* Ajustes para la sección Staff en móviles */
    .staff-member {
        width: 100%;
        margin: 0 0 30px 0;
    }
    
    .staff-photo {
        height: auto;
    }
    
    /* Ajustes para la sección Programas en móviles */
    .programa-item {
        flex-direction: column;
        max-width: 100%;
    }
    
    .programas-tab-buttons {
        flex-wrap: wrap;
    }
    
    .programas-tab-buttons .tab-button {
        padding: 8px 15px;
        margin: 0 2px 5px;
        font-size: 0.9rem;
    }
    
    .programa-banner {
        width: 100%;
        height: auto;
    }
    
    .programa-info {
        padding: 15px;
    }
    
    .programa-name {
        font-size: 1.2rem;
    }
    
    .programa-horario {
        font-size: 0.9rem;
    }
    
    /* Ajustes para la sección Patrocinadores en móviles */
    .sponsor-item {
        width: 100%;
        margin: 0 0 20px 0;
    }
}

@media (max-width: 480px) {
    .logo-container {
        width: 50%;
    }

    .logo-container h1 {
        font-size: 1.2rem;
    }
    
    .section-header {
        padding: 10px 0;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    /* Ajustes adicionales para la sección hero en pantallas muy pequeñas */
    .hero-section {
        height: 350px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .hero-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
