@import url('https://fonts.googleapis.com/css2?family=Inknut+Antiqua:wght@400;700&display=swap');

body {
    font-family: 'Inknut Antiqua';}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* FOOTER */
.footer {
background-color: #cbff79 !important;
    color: #1a1a1a !important;
    text-align: center;
    padding: 40px 20px;
}

.footer-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
    max-width: 900px;
    margin: 0 auto 30px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #475433;
}

/* CONTACTO */
.footer-section.contact {
    text-align: left;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-item svg {
    color: #313727;
    flex-shrink: 0;
}

.contact-item a {
    color: #2a4328 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #4d5939 !important;
}

/* ICONOS SOCIALES */
.footer-section.social {
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: #2a2a2a;
    color: #cbff79;
    border: 2px solid #cbff79;
}

.social-icon:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 10px 25px rgba(203, 255, 121, 0.3);
    background-color: #cbff79;
    color: #1a1a1a;
}

.social-icon.instagram:hover {
    background-color: #cbff79;
    color: #1a1a1a;
}

.social-icon.whatsapp:hover {
    background-color: #cbff79;
    color: #1a1a1a;
}

.footer-copy {
    font-size: 0.9rem;
    color: #888;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
    
    .footer-section.contact {
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .social-icons {
        gap: 20px;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
    }
    
    .social-icon svg {
        width: 26px;
        height: 26px;
    }
}