/* Fuentes */
a, a:focus, a:hover, iframe{outline:none !important;}


body {
    font-family: "DM Sans", sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

/* Header Navbar */
.custom-navbar {
    background:#000;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.custom-navbar .navbar-brand {
    color: white !important;
    font-weight: 600;
    font-size: 24px;
}

.custom-navbar .navbar-brand{height:auto;}
.custom-navbar .navbar-brand img{max-width:70px;height:auto;display;block;}

.custom-navbar .navbar-nav > li > a {
    color: white !important;
    font-weight: 500;
}

.custom-navbar .navbar-nav > li > a:hover {
    color: #e0e0e0 !important;
    background-color:transparent !important;
}

.custom-navbar .navbar-toggle .icon-bar {
    background-color: white;
}

/* Slider Section with Swiper */
.slider-section {
    margin: 20px 0;
}

.imageSwiper {
    max-height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.imageSwiper .swiper-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.imageSwiper .swiper-button-next,
.imageSwiper .swiper-button-prev {
    color: white;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.imageSwiper .swiper-button-next:after,
.imageSwiper .swiper-button-prev:after {
    font-size: 16px;
}

.imageSwiper .swiper-pagination-bullet {
    background: rgba(255,255,255,0.5);
    border: 1px solid white;
}

.imageSwiper .swiper-pagination-bullet-active {
    background: white;
}

/* Radio Player */
.radio-section {
    background: linear-gradient(135deg, #999999 0%, #333333 100%);
    padding: 40px 0;
    color: white;
}

.radio-player {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.radio-player .panel-heading {
    background: rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    color: white;
}

.radio-controls button {
    margin: 0 10px;
    border-radius: 50px;
    padding: 15px 30px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.radio-controls .btn-primary {
    background: #28a745;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.radio-controls .btn-primary:hover {
    background: #218838;
    transform: translateY(-2px);
}

.radio-controls .btn-default {
    background: #dc3545;
    color: white;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.radio-controls .btn-default:hover {
    background: #c82333;
    transform: translateY(-2px);
}

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

.volume-control label {
    font-weight: 500;
    margin: 0;
}

#volume-slider {
    width: 200px !important;
    height: 6px;
    background: rgba(255,255,255,0.3);
    border-radius: 5px;
    outline: none;
    margin: 0;
}

#volume-slider::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

#volume-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* Advertisement Spaces */
.ad-space {
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    border: 2px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 500;
    color: #888;
    margin: 10px 0;
}

/* News Section */
#noticias {
    padding: 40px 0;
}

#noticias h2 {
    margin-bottom: 40px;
    color: #333;
    font-weight: 600;
}

#noticias .panel {
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

#noticias .panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

#noticias .panel-body {
    padding: 20px;
}

#noticias .panel-body h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
}

#noticias .panel-body p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

#noticias .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 20px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

#noticias .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* Footer */
.custom-footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px 0;
    margin-top: 50px;
    text-align: center;
}

.custom-footer p {
    margin: 0;
    font-weight: 500;
}

/* Responsive Design */
@media (min-width: 1500px) {
    .container {
        max-width: 1400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .carousel-inner > .item > img {
        height: 250px;
    }
    
    .radio-controls button {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
    
    .volume-control {
        flex-direction: column;
        gap: 10px;
    }
    
    #volume-slider {
        width: 100% !important;
        max-width: 300px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

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

@keyframes spin {
    to { transform: rotate(360deg); }
}
