/* FOOTER - REDISEÑADO CON COLOR NARANJA */
footer {
    /* Fondo naranja tomate - igual al subtítulo de Nosotros */
    background: linear-gradient(135deg, var(--secondary) 0%, #e87100 100%);
    padding: 2.5rem 0 0;
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    align-items: start;
}

.footer-section h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    margin-top: 0;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.65rem;
    font-size: 0.9rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-section li {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    gap: 0.5rem;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 0.85rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
}

/* Estilo base para los íconos del footer */
.icon-footer {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    vertical-align: middle;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}

/* Opcional: hover effect */
.icon-footer:hover {
    opacity: 0.8;
}

/* Asegúrate que el <li> tenga espaciado */
.footer-section ul li {
    margin-bottom: 0.65rem;
    list-style: none;
    display: flex;
    align-items: center;
}

/* Responsive */
@media (max-width: 768px) {
    footer {
        padding: 2rem 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem 1.5rem;
    }

    .footer-bottom {
        padding: 0.75rem 1.5rem;
    }
}