.footer-clinic {
    background: #f5f5f5;
    font-family: 'Poppins', sans-serif;
}

/* CONTENEDOR PRINCIPAL */
.footer-container {
    width: 100%;
    display: flex;
    justify-content: space-around;
    gap: 50px;
    flex-wrap: wrap;
    padding: 50px 8%;
    text-align: center;
}

/* BLOQUES */
.footer-box {
    flex: 1;
    min-width: 260px;
    text-align: center;
}

/* TITULOS */
.footer-box h3 {
    color: #2971ac;
    font-size: 23px !important;
    margin: 0 0 10px;
    font-weight: 600;
}

/* DESCRIPCION */
.footer-description {
    text-align: justify;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

/* TEXTO Y CONTACTO */
.footer-box p {
    margin-bottom: 12px;
    color: #333;
    font-size: 0.95rem;
}

/* ICONOS */
.footer-box i {
    color: #2971ac;
    margin-right: 8px;
    vertical-align: middle;
}

/* REDES SOCIALES */
.footer-social a {
    display: inline-block;
    margin-right: 14px;
    color: #2971ac;
    font-size: 18px;
    transition: 0.25s;
}

.footer-social a:hover {
    color: #01bce7;
    transform: translateY(-2px);
}

/* PARTE AZUL INFERIOR */
.footer-bottom {
    background: #2971ac;
    text-align: center;
    color: white;
    padding: 20px;
    font-size: 0.95rem;
}

.footer-bottom p {
    margin-bottom: 8px;
}

.footer-legal a {
    color: white;
    text-decoration: none;
    margin: 0 8px;
    font-size: 0.9rem;
}

.footer-legal a:hover {
    text-decoration: underline;
}

/* RESPONSIVE */
@media(max-width:900px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
        padding: 40px 20px;
        text-align: center;
    }

    .footer-box p {
        margin-bottom: 10px;
    }

    .footer-social a {
        margin: 0 10px;
    }
}
