/* =========================
   FOOTER.CSS - CONTACTO Y NAVEGACIÓN (REDESIGN)
   ========================= */

.site-footer {
    background-color: var(--color-marron-chocolate); /* Fondo: Marrón Chocolate Oscuro */
    color: var(--color-fondo-arena); /* Texto: Arena/Crema claro */
    padding: 3.5rem 2rem 1.5rem; /* Más alto y con espacio abajo */
    font-size: 1rem;
    border-top: 1px solid var(--color-coral-atardecer); /* Línea de acento Coral */
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem; 
}

.footer-section {
    flex: 1;
    min-width: 250px; 
    padding: 0 1rem;
}

.footer-section h3 {
    color: var(--color-coral-atardecer); /* Títulos en Coral */
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Enlaces y Listas */
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--color-fondo-arena); /* Enlaces en color Arena */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--color-coral-atardecer); /* Hover en Coral */
}

/* Info de Contacto */
.contact-info p a {
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 0.8rem;
    color: var(--color-coral-atardecer); /* Iconos en Coral */
    font-size: 1.1rem;
}

/* Redes Sociales */
.social-links {
    margin-top: 10px;
}

.social-links a {
    display: inline-block;
    font-size: 2.2rem; /* Iconos más grandes */
    margin-right: 1.5rem;
    color: var(--color-fondo-arena); 
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--color-coral-atardecer);
}

.developer-link {
    margin-top: 2.5rem;
    font-size: 0.9rem;
}

.developer-link a {
    text-decoration: underline;
    font-weight: bold;
    color: var(--color-coral-atardecer); /* Enlace de crédito en Coral */
}

/* Sección de Copyright */
.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 2.5rem;
    border-top: 1px solid var(--color-beige-oscuro); /* Línea divisoria suave */
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}


/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section {
        min-width: unset; 
        width: 100%;
        padding: 1rem 0;
    }

    .contact-info p a {
        justify-content: center; /* Centrar el texto en móviles */
    }

    .footer-section ul {
        width: fit-content;
        margin: 0 auto;
    }
}