body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #101010;
}
#video-fondo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    animation: videoFadeIn 2.5s ease-out forwards;
}
@keyframes videoFadeIn {
    0% {
        opacity: 0;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
header {
    background: linear-gradient(90deg, #3a6cf564, #3a6cf564);
    padding: 8px 16px;
    color: #000000;
    border-radius: 0px 0px 0px 0px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
    position: relative; 
    z-index: 1;
}
.logo-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 100px;
    flex-wrap: wrap;
    text-align: center;
    border-radius: 18px;
    margin: 40px auto;
}
.logo-header img {
    width: 180px;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    margin: 0;
    animation: zoomSuave 2s ease-in-out infinite;
}
.logo-header h1 {
    font-size: 1.5em;
    font-weight: bold;
    line-height: 1.3;
    color: #fcfcff;
    padding: 12px 20px;
    background: linear-gradient(90deg, #8f1616, #8ef53a);
    border-radius: 12px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInText 1.5s ease-out;
}
@keyframes zoomSuave {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInText {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.galeria-publicidad,
.galeria-lugares {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 40px 20px;
    max-width: 1100px;
    margin: auto;
    animation: fadeIn 1s ease-in-out;
    overflow: hidden;
}
.galeria-publicidad img,
.galeria-lugares img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}
.galeria-publicidad img:hover,
.galeria-lugares img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.galeria-publicidad {
    background-color: rgba(228, 224, 224, 0.541);
    border-radius: 12px;
}   
.galeria-lugares {
    background-color: rgba(228, 224, 224, 0.541);
    border-radius: 12px;
}
.galeria-publicidad iframe {
    width: 100%;
    aspect-ratio: 1 / 1;
    border: none;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.galeria-publicidad iframe:hover {
    transform: scale(1.03);
}
.bloque-combinado-vertical {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 845px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
}
.bloque-combinado-vertical iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border: none;
}
.bloque-combinado-vertical img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    animation: zoomSuave 1s ease-in-out infinite;
}
.bloque-combinado-vertical:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.slogan-container {
    padding: 20px 0;
    text-align: center;
}
.slogan-img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.mensaje-final {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 1.6em;
    font-weight: 600;
    color: #00ffff;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    animation: aparecerTexto 1s ease-out infinite;
}
.lugares-header {
    display: flex;
    justify-content: left;
    margin-top: 40px;
}
.lugares-header h1 {
    font-size: 1.5em;
    font-weight: bold;
    line-height: 1.3;
    color: #e3e3e3;
    padding: 12px 20px;
    background: linear-gradient(90deg, #162b8f, #3a6cf5);
    border-radius: 12px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInText 1.5s ease-out;
    margin: 0 auto;
    display: inline-block;
    text-align: center;
    transform: none;
}
.container {
    background-color: rgba(228, 224, 224, 0.541); 
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin: 40px auto;
    max-width: 1100px;
    width: 100%; 
    text-align: center;
}
.comment-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.466);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(255, 244, 244, 0.315);
    backdrop-filter: blur(10px);
}
.comment-section h1 {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.comment-section p {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}
.comment-section {
    max-width: 100%;
    padding: 10px;
    margin: 0 auto;
    text-align: center;
}
.fb-comments {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 18px;
    padding: 20px;  
    width: 92%;
    margin: 0 auto;
    box-sizing: border-box; 
}
.fb-comments iframe {
    width: 100% !important; 
    border: none;
}
.fb-comments,
.fb-comments iframe[style] {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
}
.facebook-plugin-wrapper {
    max-width: 100%; 
    overflow-x: hidden; 
}
.fb-comments {
    width: 92%; 
    margin: 0 auto; 
}
.status-text {
    text-align: center;
    font-family: 'Fredoka', sans-serif;
    align-items: center; 
    font-size: 14px;
    color: #000000; 
    font-weight: normal; 
    letter-spacing: 0.5px;
}
.content-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    align-items: flex-start; 
    padding: 20px;
    gap: 20px;
    margin-top: 0px;
    position: relative;
    z-index: 1;
}
.tv-section {
    background: linear-gradient(145deg, #bda951, #ffffff);
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    width: 100%; 
    max-width: 600px; 
    box-sizing: border-box; 
}
.radio-section {
    background: linear-gradient(145deg, #bda951, #ffffff);
    color: #000000;
    padding: 15px;
    max-height: 520px;
    overflow: hidden; 
    border-radius: 8px;
}
.radio-card {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 5px;
    padding-bottom: 0px;
    text-align: center;
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}
.radio-player {
    width: 100%;
}
.radio-player-sanjuanera {
    width: 100%;
    height: 343px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    filter: none;
    backdrop-filter: none;
    border: none;
    outline: none;
    background: none;
    overflow: visible;
    text-shadow: none;
}
.radio-player-sanjuanera .cover {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none !important;
    filter: none !important;
    border: none;
    outline: none;
    background: none;
    text-shadow: none;
    padding: 0;
    margin: 0;
}
.radio-player-sanjuanera .cover img {
    max-width: 120px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 2px;
    box-shadow: none !important;
    filter: none !important;
    outline: none !important;
    border: none !important;
    background: none !important;
    text-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.radio-player-sanjuanera .visualizer {
    width: 100%;
    height: 45px;
    margin-bottom: 5px;
    box-shadow: none !important;
    filter: none !important;
    background: none !important;
    border: none !important;
    outline: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}
.radio-player-sanjuanera {
    box-shadow: none; 
    filter: none; 
    position: relative; 
}
.radio-player-sanjuanera .visualizer::before {
    content: '';
    position: absolute;
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    width: 140px; 
    height: 140px; 
    border-radius: 50%;
    box-shadow: 0 0 15px 10px rgba(0, 255, 255, 0.4), 
                0 0 25px 15px rgba(0, 255, 255, 0.2); 
    pointer-events: none; 
    z-index: 0; 
    opacity: 0.7; 
    animation: haloPulse 3s infinite alternate ease-in-out; 
}
@keyframes haloPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 15px 10px rgba(0, 255, 255, 0.4),
                    0 0 25px 15px rgba(0, 255, 255, 0.2);
    }
    100% {
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow: 0 0 20px 12px rgba(0, 255, 255, 0.5),
                    0 0 35px 20px rgba(0, 255, 255, 0.3);
    }
}
.radio-player-sanjuanera .title-streamer {
    font-size: 1em;
    margin-bottom: 2px;
    color: #f8f8f8;
    text-align: center;
    text-shadow: none !important;
}
.radio-player-sanjuanera p {
    font-size: 0.7em;
    color: #c9c9c9;
    margin-bottom: 5px;
    text-align: center;
    text-shadow: none !important;
}
.radio-player-sanjuanera .volume-controls-streamer,
.radio-player-sanjuanera .controls-streamer {
    display: flex;
    gap: 8px;
    justify-content: right;
    margin-top: 2px;
    margin-bottom: 5px;
}
.controls-streamer {
    padding: 10px ;
    width: 100%;
    display: flex; 
    justify-content: flex-end; 
}
.btn-streamer {
    text-align: right;
    padding: 10px 15px;
    font-size: 1.5em;
    border: none;
    border-radius: 5px;
    background-color: #f0f0f0; 
    cursor: pointer;
}
.radio-player-sanjuanera .controls-streamer button,
.radio-player-sanjuanera .volume-controls-streamer button {
    font-size: 1.0em; 
    width: 28px; 
    height: 28px; 
    padding: 0; 
    border-radius: 50%; 
    border: none; 
    background-color: white; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); 
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}
.radio-player-sanjuanera .controls-streamer button:hover,
.radio-player-sanjuanera .volume-controls-streamer button:hover {
    background-color: #f0f0f0; 
    transform: scale(1.05);
}
.radio-card .section-title-live {
    margin-bottom: 10px;
    font-size: 1.2em;
    text-align: center;
}
.tv-section .video-player {
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    padding-top: 56.25%; 
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    font-size: 1.1em;
    line-height: 1.5;
}
.tv-card h3 {
    text-align: center;
    color: rgb(0, 0, 0);
    margin-bottom: 10px;
    font-size: 1.4em;
}
.tv-section .video-player iframe,
.tv-section .video-player video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.section-title-live {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 1.4em;
    color: #333;
    text-align: center;
}
.live-indicator-radio,
.live-indicator-tv {
    font-weight: bold;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    animation: pulse 1.5s infinite;
    text-shadow: none;
}
.live-indicator-radio {
    font-size: 0.7em;
    margin-bottom: 3px;
    background-color: #28a745;
    box-shadow: 0 0 8px rgba(40, 167, 69, 0.6);
    padding: 2px 6px;
}
.live-indicator-tv {
    font-size: 0.8em;
    margin-right: 8px;
    background-color: #dc3545;
    box-shadow: 0 0 8px rgba(220, 53, 69, 0.6);
}
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
.tv-section h3 {
    color: #333;
}
@media (min-width: 769px) {
    .radio-section {
        flex: 0 0 280px;
        max-width: 280px;
        width: 280px;
    }
    .tv-section {
        flex: 1;
        max-width: none;
        width: auto;
    }
}
@media (max-width: 768px) {
    .content-section {
        flex-direction: column;
        align-items: center;
    }
    .radio-section,
    .tv-section {
        width: 100%;
        max-width: 400px;
        min-width: unset;
    }
}
@media (max-width: 480px) {
    .galeria-publicidad,
    .galeria-lugares {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 300px) {
    .comment-section h1 {
        font-size: 1.5rem;
    }
    .comment-section p {
        font-size: 0.95rem;
    }
    .fb-comments {
        padding: 8px;
    }
}
@media (min-width: 500px) and (max-width: 768px) {
    .galeria-publicidad,
    .galeria-lugares {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px; 
    }
}
.slogan-container {
  filter: grayscale(0%);
  transition: 0.3s;
  transform: scale(1.05);
}
.slogan-container:hover {
  filter: grayscale(100%);
  transform: scale(1);
}