/* --- FOOTER EDOGO --- */
.main-footer { 
    background-color: #323232; 
    padding: 80px 0; 
    color: #ccc;
}

.footer-section-bootstrap h3 { 
    color: #ffa200; 
    text-transform: uppercase; 
    font-weight: 900;
    margin-bottom: 25px; 
    font-size: 1.5rem;
}

.footer-section-bootstrap p {
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.6;
}

.social-links-edogo { 
    margin-top: 15px; 
}

.social-links-edogo a { 
    color: #fff; 
    border: 2px solid #ffa200; 
    padding: 8px 20px; 
    border-radius: 50px; /* Más redondeado para combinar con tus botones */
    text-decoration: none; 
    font-weight: bold;
    font-size: 0.9rem;
    transition: 0.3s;
}

.social-links-edogo a:hover { 
    background-color: #ffa200;
    color: #323232;
    transform: translateY(-3px);
}








@media (max-width: 767px) {
    .main-footer {
        padding: 60px 0;
    }

    .footer-section-bootstrap {
        margin-bottom: 40px;
    }

    .footer-section-bootstrap:last-child {
        margin-bottom: 0;
    }
    
    .social-links-edogo {
        flex-direction: row; /* Mantener horizontal o cambiar a col si prefieres */
        justify-content: center;
    }
}