.footer {
    background-color: var(--blue);
    color: var(--white);
}

.footer a {
    color: var(--white) !important;
}

.footer__body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 3rem 0;
}

.footer__logo {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    align-content: center;
}

.footer__logo-link {
    display: block;
    width: 10rem;
    aspect-ratio: 16 / 9;
}

.footer__logo-link img {
    object-fit: contain;
    width: 100%;
    height: 100%;
    margin: auto;
}

.footer__branches {
    color: var(--white);
}

.footer__branch {
    font-size: 1rem;
}

.footer__branch > .branch-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer__menu {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__menu-item {
    color: var(--white);
    font-size: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer__menu-link {
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    display: block;
}

.footer__copyright p {
    text-align: center;
    margin: 1rem auto;
    font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
    .footer__body {
        flex-direction: column;
        align-items: center;
        text-align: center; /* NUEVO: Centra todos los textos */
        gap: 2rem;
        margin-top: 1rem; /* Reducimos el margen superior */
        padding: 0 2rem;
    }

    .footer__menu {
        margin: 0;
        padding: 0;
    }

    .footer__copyright {
        padding: 0 1rem;
    }
	
	.footer__branch {
		margin-bottom: 1.5rem;
	}
}

.footer__branch .branch-name {
        text-transform: none;
        text-align: center; /* NUEVO: Centra el nombre de la sede */
    }

    .footer__branch .branch-contact {
        margin-top: 1.5rem;
        gap: 0.5rem;
        align-items: center; /* NUEVO: Centra los iconos/textos de contacto */
    }