/* General */
body {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}

/* Cabecera */
.cabecera__logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Contenido: Títulos */
.contenido__titulos {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}

/* Contenido: Información */
.contenido__info {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}
.contenido__info-local {
    display: flex;
    flex-flow: column;
    gap: 2rem;
}
.contenido__info-local .container {
	display: flex;
    flex-flow: column;
    gap: 1rem;
}
.contenido__info-local-icon {
	display: flex;
    flex-flow: row;
    gap: 1rem;
    align-items: center;
}
.correos {
	display: flex;
    flex-flow: row wrap;
    gap: 0.5rem;
    align-items: center;
}

/* Celular */
@media(max-width: 768px) {

}