/* --- FOOTER MODERNO --- */
#footer {
    background: linear-gradient(180deg, #2d3436 0%, #1a1a1a 100%);
    padding: 60px 0 40px 0;
    color: #adb5bd;
}

/* Tarjeta contenedora de cada sección */
.footer-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px 15px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Estilo especial para la tarjeta de logo */
.footer-logo-card {
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Círculos flotantes para los iconos */
.icon-circle-footer {
    width: 45px;
    height: 45px;
    background: #A30B14;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(163, 11, 20, 0.3);
}

/* Títulos y textos dentro del footer */
#footer h6 {
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

#footer p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0;
}

#footer a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

#footer a:hover {
    color: #ff4d4d;
}

/* Estilos para los enlaces dentro de las tarjetas */
.footer-link {
    color: #adb5bd; /* El mismo gris del footer */
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-link:hover {
    color: #ffffff; /* Se ilumina al pasar el mouse */
    text-decoration: none;
}

.footer-link i {
    font-size: 1.1rem;
}

/* Color oficial de WhatsApp solo para ese icono */
.text-success {
    color: #25D366 !important;
}

.contact-item {
    width: 100%;
}

/* Responsividad extra */
@media (max-width: 768px) {
    .footer-card {
        padding: 20px;
        margin-bottom: 10px;
    }
    
    #footer {
        padding: 40px 0;
    }
}