/* ========================================
   FOOTER MODERNA
   Última modificación: 2026-02-03 08:55
   ======================================== */

.footer-moderna {
    background: #1a2332;
    color: #ffffff;
    padding: 4rem 0 0 0;
    margin-top: 0;
    clear: both;
}

/* Sección Superior */
.footer-top {
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 3rem;
}

/* Logo y Marca */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    width: 150px;
    height: auto;
}

.footer-brand-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    margin: 0;
}

.brand-highlight {
    color: #e5a040;
    font-size: 1.3rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Caja de Contacto */
.footer-contact-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
}

.contact-box-title {
    color: #e5a040;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

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

.contact-box-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.contact-box-item i {
    color: #e5a040;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Sección de Enlaces */
.footer-links {
    padding-bottom: 3rem;
}

.footer-links-title {
    color: #e5a040;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 0.75rem;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links-list a:hover {
    color: #ffffff;
    padding-left: 5px;
}

/* Redes Sociales */
.footer-social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: #e5a040;
    border-color: #e5a040;
    transform: translateY(-3px);
}

/* Dirección */
.footer-address {
    display: flex;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-address i {
    color: #e5a040;
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-address p {
    margin: 0;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
    .footer-moderna {
        padding: 3rem 0 0 0;
        margin-top: 3rem;
    }
    
    .footer-brand {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .footer-logo {
        width: 60px;
    }
    
    .footer-brand-title {
        font-size: 1rem;
    }
    
    .brand-highlight {
        font-size: 1.1rem;
    }
    
    .footer-contact-box {
        margin-top: 2rem;
    }
    
    .footer-links {
        padding-bottom: 2rem;
    }
}

@media (max-width: 767px) {
    .footer-top {
        padding-bottom: 2rem;
        margin-bottom: 2rem;
    }
    
    .contact-box-items {
        gap: 0.75rem;
    }
    
    .contact-box-item {
        font-size: 0.85rem;
    }
    
    .footer-links-title {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .footer-links-list a {
        font-size: 0.85rem;
    }
    
    .footer-social-icons {
        gap: 0.75rem;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}
