/* ===============================================
   FOOTER PROFESIONAL - MR CONSTRUCTOR
   =============================================== */

.site-footer {
    background: linear-gradient(135deg, #2c2416 0%, #1a1410 100%);
    color: rgba(255,255,255,0.8);
    margin-top: 4rem;
}

/* Logo del footer */
.footer-logo {
    max-width: 180px;
    height: auto;
    filter: brightness(1.2);
}

/* Descripción */
.footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
}

/* Títulos de las secciones */
.footer-title {
    color: #FFB300;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #FFB300;
}

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

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

.footer-links 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 a:hover {
    color: #FFB300;
    padding-left: 8px;
}

/* Información de contacto */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.footer-contact i {
    color: #FFB300;
    width: 20px;
}

/* Redes sociales */
.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background: #FFB300;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255,179,0,0.4);
}

/* Barra inferior del footer */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 2rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.footer-link-small {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link-small:hover {
    color: #FFB300;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-title::after {
        width: 100%;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1.5rem;
    }
    
    .site-footer .col-lg-4,
    .site-footer .col-lg-2,
    .site-footer .col-lg-3 {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .footer-logo {
        margin: 0 auto;
    }
}
