/* ========================================
   FOOTER MODERNO - RADIOPLAY
   ======================================== */

.main-footer {
    background: #004aac;
    color: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}



/* Barra Inferior del Footer */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright,
.footer-credits {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-credits a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-credits a:hover {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px 20px 20px;
    }

    .main-footer {
        padding: 30px 0 0 0;
    }



    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }

    .footer-links li a,
    .footer-legal li a {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .footer-title {
        font-size: 18px;
    }

    .footer-section-title {
        font-size: 16px;
    }
}