/* Footer mejorado con efectos visuales */

footer {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #D2691E, transparent);
}

/* Efectos hover en enlaces del footer */
footer a {
    transition: all 0.3s ease;
    position: relative;
}

footer a:hover {
    color: #FF6B35 !important;
    transform: translateX(5px);
}

/* Iconos sociales mejorados */
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(210, 105, 30, 0.1);
    border: 2px solid rgba(210, 105, 30, 0.3);
    transition: all 0.3s ease;
    margin-right: 10px;
}

.social-link:hover {
    background: #D2691E;
    border-color: #D2691E;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(210, 105, 30, 0.4);
}

.social-link i {
    font-size: 18px;
    color: #D2691E;
    transition: color 0.3s ease;
}

.social-link:hover i {
    color: white;
}

/* Proyectos destacados con hover */
.footer-project {
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.footer-project:hover {
    background: rgba(210, 105, 30, 0.1);
    border-left-color: #D2691E;
    transform: translateX(10px);
}

/* Información de contacto mejorada */
.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.footer-contact p:hover {
    transform: translateX(5px);
}

.footer-contact i {
    margin-right: 10px;
    width: 20px;
    color: #D2691E;
    font-size: 16px;
}

/* Lista de características mejorada */
.footer-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.footer-features li:hover {
    transform: translateX(5px);
}

.footer-features i {
    margin-right: 10px;
    color: #28a745;
    font-size: 14px;
}

/* Copyright section mejorada */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
}

.footer-links a {
    position: relative;
    text-decoration: none;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #D2691E;
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .social-link {
        width: 35px;
        height: 35px;
        margin-right: 8px;
    }
    
    .social-link i {
        font-size: 16px;
    }
    
    .footer-project:hover,
    .footer-contact p:hover,
    .footer-features li:hover {
        transform: none;
    }
}