/* ===== FOOTER ===== */
footer {
    background: #0a1c28;
    color: #cddfe9;
    padding: 30px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: left;
}

/* Logo */
.footer-logo {
    text-align: center;
}

.footer-logo img {
    height: 90px;
    width: auto;
    margin-bottom: 10px;
}

/* Sección Marcas */
.footer-content h3 {
    color: #cddfe9;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 600;
}

.marcas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.marcas div {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-content p {
    margin: 0;
}

.footer-content p a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-content p a:hover {
    color: #cddfe9;
}

/* Sección Recursos */
.recursos-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Sección Social */
.social-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 200px;
}

.social-links a {
    color: #cddfe9;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #ffffff;
    transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */

/* Tablets */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .footer-logo {
        margin-bottom: 20px;
    }

    
    .social-links {
        max-width: 200px;
        margin: 0 auto;
    }
}

/* Móviles */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    
    .footer-logo {
        grid-column: auto;
    }
    
    /* Centrar todas las secciones en móvil */
    .marcas {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .recursos-list {
        align-items: center;
    }
    
    .social-links {
        margin: 0 auto;
    }
    
    .footer-content h3 {
        margin-bottom: 15px;
    }
}

/* Móviles pequeños */
@media (max-width: 480px) {
    footer {
        padding: 25px 0;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-logo img {
        height: 70px;
    }
    
    .marcas {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 200px;
    }
    
    .marcas div {
        align-items: center;
    }
    
    .social-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        max-width: 220px;
    }
    
    .social-links a {
        font-size: 1.3rem;
    }
    
    .footer-content p a {
        font-size: 0.85rem;
    }
    
    .footer-content h3 {
        font-size: 1rem;
    }
}