/* Importar Font Awesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-info img {
    max-width: 150px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.footer-info img:hover {
    transform: scale(1.05);
}

.footer-info p {
    color: #ccc;
    font-size: 0.9rem;
}

.footer-contact h4,
.footer-social h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-contact p {
    color: #ccc;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon:hover i {
    transform: scale(1.2);
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.social-icon:hover::before {
    transform: translateX(100%);
}

.social-icon.facebook:hover {
    background: #1877f2;
    box-shadow: 0 0 15px rgba(24, 119, 242, 0.5);
}

.social-icon.instagram:hover {
    background: #e4405f;
    box-shadow: 0 0 15px rgba(228, 64, 95, 0.5);
}

.social-icon.whatsapp:hover {
    background: #25d366;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.5);
}

.social-icon.linkedin:hover {
    background: #0077b5;
    box-shadow: 0 0 15px rgba(0, 119, 181, 0.5);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #ccc;
    font-size: 0.9rem;
}

.footer-dev {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer-dev p {
    margin: 0;
}

.dev-text {
    text-decoration: none;
    transition: all 0.3s ease;
}

.dev-text p {
    color: #ccc;
    transition: all 0.3s ease;
}

.dev-text:hover p {
    color: #fff;
    transform: translateX(5px);
}

.dev-logo {
    display: block;
    transition: all 0.3s ease;
}

.dev-logo img {
    height: 30px;
    transition: all 0.3s ease;
}

.dev-logo:hover img {
    transform: scale(1.1);
    filter: brightness(1.2);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-info img {
        margin: 0 auto 1rem;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-dev {
        justify-content: center;
    }
} 