.redes-sociales-section {
    background-color: #d1e9fc;
}
.footer-school-section {
    background-color: #50a6fc;
    color: #d1e9fc !important;
}

.footer-school-section h4{
    font-size: 1.8em;
}

.footer-school-section h6{
    font-size: 1.4em;
}
.academics-section {
   background-color: #1f8dfb;
}

footer a {
    text-decoration: none;
}

footer a::after {
    content: "🐦";
    margin-left: 0.5em;
    font-size: 1em;
    vertical-align: middle;
    display: inline-block;
    animation: bird-move 1s infinite alternate ease-in-out;
}

@keyframes bird-move {
    0% { transform: translateX(0); }
    100% { transform: translateX(20px); }
}

footer li {
    font-size: 1.2em;
}

.footer-school-section a,
.footer-school-section h4,
.footer-school-section h6,
.footer-school-section li,
.footer-school-section small{
    color: #d1e9fc !important;
}

.footer-badge {
    display: inline-block;
    min-width: 120px;   /* Ajusta este valor según lo que necesites */
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

footer .footer-badge.bg-primary {
    background-color: #84bef9 !important;
    color: #fff !important;
}

footer .footer-badge.bg-warning {
    background-color: #f9e6aa !important;
    color: #393d41 !important;
}

.footer-badge.bg-primary:hover {
    background-color: #1f8dfb !important; /* Un azul más intenso */
    color: #fff !important;
    transition: background 0.2s;
}

.footer-badge.bg-warning:hover {
    background-color: #f9cc43 !important; /* Un amarillo más intenso */
    color: #393d41 !important;
    transition: background 0.2s;
}

.footer-contact-list {
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(80,165,250,0.07);
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 0.7em;
    padding: 0.5em 0;
    font-size: 1em;
    border-bottom: 1px solid rgba(255,255,255,0.18);
}

.footer-contact-list li:last-child {
    border-bottom: none;
}

.footer-contact-list i {
    font-size: 1em;
    color: #fff;
    background: #50a5fa;
    border-radius: 50%;
    padding: 0.35em;
    min-width: 2em;
    text-align: center;
}

