@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --morado1: #28163c;
  --morado2: #f1eaf2;
  --morado3: #d1bfd3;
  --gris1: #f1eaf2;
  --gris2: #efeded;
  --amarillo: #ffc937;
  --rojo: #8b153f;
  --tipografiadelgada: "Lato";
  --tipografiagruesa: "Libre Baskerville";
}
body {
  font-family: var(--tipografiadelgada);
  font-size: 16px;
  line-height: 24px;
  color: #333;
}
.ancho {
  max-width: 1200px;
  margin: auto;
  /* border: 1px red solid; */
}
.contenedormorado {
  background-color: var(--morado1);
  color: white;
}
.contenedor_redes {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 25px;
  padding: 5px;
}
.contenedor_redes a {
  text-decoration: none;
  color: var(--rojo);
  background-color: white;
  border-radius: 50%;
  width: 27px;
  height: 27px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.amarillo {
  color: var(--amarrillo);
}
.morado {
  color: var(--morado1);
}
.rojo {
  color: var(--rojo);
}
.blanco {
  color: white;
}
.negritas {
  font-weight: bold;
}
/* menu */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
  gap: 10px;
}
.cabecera {
  width: 300px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}
nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-grow: 1;
}
nav ul {
  width: 100%;
  list-style: none;
  margin: 0;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 5px;
}
nav ul li a {
  color: white;
  text-decoration: none;
  display: inline-block;
}
nav ul li a:hover {
  color: var(--amarillo);
}
.btn_rojo {
  background-color: var(--rojo);
  text-decoration: none;
  color: white;
  padding: 10px 30px;
  border-radius: 10px;
  display: inline-block;
  transition: all 0.5s;
}
.btn_rojo:hover {
  color: var(--amarillo);
}
.btn_morado {
  background-color: var(--morado1);
  text-decoration: none;
  color: white;
  font-size: 16px;
  padding: 10px 30px;
  border-radius: 10px;
  display: inline-block;
  transition: all 0.5s;
}
.btn_morado:hover {
  color: var(--amarillo);
}
.btn_amarillo {
  background-color: var(--amarillo);
  text-decoration: none;
  color: var(--rojo);
  padding: 10px 30px;
  border-radius: 10px;
  display: inline-block;
  transition: all 0.5s;
  font-size: 16px;
  font-weight: bold;
}
.btn_amarillo:hover {
  background-color: var(--morado1);
  color: white;
}
.sub {
  padding-left: 10px;
}
.desplegable {
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: var(--morado1);
  max-width: 170px;
  padding-left: 15px;
  padding-bottom: 10px;
}
.desplegable li {
  padding-top: 5px;
  padding-bottom: 5px;
  display: inline-block;
  border-bottom: 1px dotted white;
  width: 90%;
}
.desplegable li:last-child {
  border-bottom: none;
}
.submenu:hover .desplegable {
  display: flex;
  position: absolute;
  z-index: 99999999 !important;
}
#iconomenu {
  display: none;
  color: var(--amarillo);
  font-size: 25px;
  padding: 10px;
}
/* slide fotos */
.rslides {
  position: relative;
  list-style: none;
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0;
}
.rslides li {
  backface-visibility: hidden;
  position: absolute;
  z-index: -100;
  display: none;
  width: 100%;
  left: 0;
  top: 0;
}
.rslides li:first-child {
  position: relative;
  display: block;
  float: left;
}
.rslides img {
  display: block;
  float: left;
  width: 100%;
  height: 450px;
  object-fit: cover;
  border: 0;
}
.slide_fotos {
  position: relative;
}
.contenedor_info_slide {
  position: absolute;
  z-index: 100;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
  color: white;
  width: 80%;
  padding: 20px;
}
.titulo_grande {
  font-size: 40px;
  font-family: var(--tipografiagruesa);
  line-height: 45px;
  max-width: 600px;
}
.subtitulo {
  font-size: 25px;
  font-weight: 600;
  color: var(--amarillo);
}
.whatsapp {
  text-decoration: none;
  background-color: #1bb50e;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 35px;
  position: fixed;
  z-index: 10;
  top: 45%;
  box-shadow: 0px 0px 10px #555;
  right: 15px;
}
#subir {
  font-size: 35px;
  color: var(--rojo);
  text-shadow: 0px 0px 3px #555;
  position: fixed;
  z-index: 101;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
}
.contenedor_curvas {
  background-image: url(/imagenes/fondo_morado_curvas.jpg);
  background-size: cover;
  padding: 25px 10px;
}
.contenedorlineas {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 15px;
}
.contenedorlineas article {
  width: 33.33%;
  min-height: 100px;
  border-right: 1px white solid;
  padding-right: 10px;
}
.contenedorlineas article:last-child {
  border-right: 0px;
}
.contenedor_iconos {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  max-width: 250px;
  margin: auto;
}
.contenedor_iconos i {
  padding-left: 10px;
}
.textoamarrillo {
  color: var(--amarillo);
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
}
.margen {
  padding: 10px;
}
.margenabajo {
  display: inline-block;
  margin-bottom: 5px;
}
.margenizquierda {
  padding-left: 10px;
}
.fondo_cuadros {
  background-image: url(/imagenes/fondo_gris_cuadrados.jpg);
  padding: 10px;
}
.titulosecciones {
  font-family: var(--tipografiagruesa);
  font-size: 35px;
  line-height: 45px;
}
.textorojo {
  color: var(--rojo);
  font-size: 18px;
}
.textoamarillo {
  color: var(--amarillo);
  font-size: 20px;
}
.lineaamarilla {
  background-color: var(--amarillo);
  border: 0px;
  height: 5px;
  width: 50px;
  margin-right: 10px;
}
.linearoja {
  background-color: var(--rojo);
  border: 0px;
  height: 5px;
  width: 50px;
  margin-right: 10px;
}
.cont_rojo {
  color: var(--rojo);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.lineamarilla {
  background-color: var(--amarillo);
  height: 2px;
  border: 0px;
  margin-top: 20px;
}
.lineamarilla2 {
  background-color: var(--amarillo);
  height: 10px;
  width: 150px;
  border: 0px;
  margin-top: 10px;
}
.foto_oferta {
  width: 100%;
  border-radius: 10px;
}
.foto_noticias {
  width: 100%;
  border-radius: 10px;
}
.centrar {
  text-align: center;
  font-size: 22px;
}
.foto_te_ofrecemos {
  max-width: 50%;
}
.contenedor_universidad2 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
  padding: 10px;
}
.contenedor_universidad2 .uno {
  width: 48%;
}
.fondo_circulo {
  background-image: url(/imagenes/fondo_figura_morado.svg);
  background-position: center center;
  background-size: cover;
}
.contenedor_universidad {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding: 10px;
}
.contenedor_universidad article {
  max-width: 50%;
}
.foto_te_ofrecemos img {
  width: 100%;
}
.contenedor_30 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  padding: 20px;
}
.iconos_rojos {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  max-width: 300px;
}
.mas {
  font-size: 18px;
  max-width: 150px;
}
.contenedor_universidad article ul {
  list-style: none;
  margin-left: 20px;
}
.contenedor_universidad article ul li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}
.contenedor_universidad article ul li a {
  transition: all 0.5s;
}
.contenedor_universidad article ul li a:hover {
  color: var(--amarillo);
}
.info_instalaciones {
  background-image: url(/imagenes/fondo_morado.svg);
  background-size: cover;
  padding: 20px;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.contenedor_titulos {
  padding: 15px;
}
.contenedor_instalaciones {
  display: flex;
  justify-content: center;
  align-items: stretch;
}
.contenedor_video {
  width: 50%;
}
.contenedor_video figure {
  position: relative;
  color: white;
  overflow: hidden;
}
.contenedor_video figure .fotovideo {
  width: 100%;
  min-height: 500px;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: all 0.5s;
}
.contenedor_video figure:hover .fotovideo {
  transform: scale(1.1);
}
.contenedor_video figcaption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.info_instalaciones hr {
  background-color: var(--amarillo);
}
.info_instalaciones ul {
  list-style: none;
  margin-left: 20px;
  column-count: 2;
}
.info_instalaciones ul li {
  padding-bottom: 5px;
}
.vinetas {
  font-size: 20px;
  color: var(--amarillo);
  padding-right: 15px;
}
.experiencia {
  font-size: 40px;
  line-height: 55px;
  font-family: var(--tipografiagruesa);
  color: var(--amarillo);
}
.texto1 {
  font-size: 20px;
  font-family: var(--tipografiagruesa);
}
.texto2 {
  font-size: 20px;
  color: var(--amarillo);
  font-family: var(--tipografiagruesa);
  text-align: center;
  margin-bottom: 10px;
}
/* modal */
.btn_modal {
  cursor: pointer;
}
.mascara {
  display: none;
  position: fixed;
  z-index: 2000;
  padding: 100px 10px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  transition: all 0.5s;
  background-color: rgba(0, 0, 0, 0.8);
}
.contenidomodal {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  max-width: 900px;
}
.estructuramodal {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.cerrarmodal {
  cursor: pointer;
  color: red;
  font-size: 26px;
  transition: all 0.5s;
}
.cerrarmodal:hover {
  color: #000000;
}
#video {
  margin-top: 10px;
  width: 100%;
}
#contenedoryoutube {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%; /*nos da la proporcion de 16X9*/
  position: relative;
}
#contenedoryoutube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.icono {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px !important;
  filter: drop-shadow(0px 0px 5px #333);
}
.iconofecha {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  padding-top: 30px;
}
.iconofecha i {
  font-size: 20px;
}
.iconofecha span {
  font-weight: bold;
}
.rojonoticia {
  background-color: var(--rojo);
  padding: 5px 30px;
  color: white;
  position: absolute;
  top: 0px;
  right: 0px;
}
.fotos_noticias {
  height: 210px !important;
  overflow: hidden;
}
.fotos_noticias img {
  width: 100%;
  height: 100% !important;
  display: block;
  object-fit: cover;
}
footer {
  background-color: var(--morado1);
  padding: 15px;
  line-height: 30px;
}
.contenedor_abajo {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
  flex-wrap: wrap;
}
footer figure {
  max-width: 230px;
}
footer figure img {
  width: 100%;
}
.elementosfooter {
  max-width: 300px;
  text-align: left;
}
footer .amarillo2 {
  color: var(--amarillo) !important;
  display: inline-block;
  padding-bottom: 10px;
}
.telefonoscontenedor {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
footer article {
  width: 300px;
}
.iconocirculo {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: white;
  color: var(--rojo);
  display: flex !important;
  flex-direction: row;
  justify-content: center !important;
  align-items: center !important;
}
.redesabajo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  padding-top: 10px;
}
.textochico {
  font-size: 14px;
}
.fondo_rojo2 {
  background-color: var(--rojo);
  color: white;
  width: 100%;
  text-align: center;
  padding: 2px;
}
.fondo_secciones h1 {
  font-size: 30px;
}
.fondo_secciones figure {
  width: 100%;
  position: relative;
  font-family: var(--tipografiagruesa);
}
.fondo_secciones figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  min-height: 250px;
}
.fondo_secciones figure .arribaseccion {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}
.arribaseccion h1 {
  text-align: center;
  line-height: 45px;
}
.lineasecciones {
  height: 8px;
  background-color: var(--amarillo);
  width: 90px;
  border: 0;
}
.morado_bajo {
  background-color: var(--morado2);
  padding: 15px;
}
.contenedor_valores {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.contenedor_valores figure {
  width: 48%;
}
.contenedor_valores figure img {
  width: 100%;
}
.listaacordeon {
  width: 48%;
}
.linearoja2 {
  height: 3px;
  background-color: var(--rojo);
  border: 0;
  margin-top: 10px;
}
.contenedor_mision {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.mision {
  background-image: url(/imagenes/fondo_logo_blanco.svg);
  background-repeat: no-repeat;
  background-position: center center;
  max-width: 45%;
  padding: 10px;
}
.contenedor_mision figure {
  width: 500px;
}
.contenedor_mision figure img {
  width: 100%;
}
.contenedordecargar {
  max-width: 1200px;
  margin: auto;
  padding-left: 20px;
  text-align: left;
}
.contenedor_convenios {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}
.contenedor_convenios article {
  width: 50%;
}
#contenedor2 {
  width: 50%;
  height: 400px;
}
.foto2 {
  border-radius: 10px;
  height: 300px !important;
  object-fit: cover;
}
.contenedor_requisitos ul {
  list-style: none;
  margin-left: 20px;
  column-count: 2;
}
.contenedor_requisitos ul li {
  padding-bottom: 10px;
}
.contenedor_requisitos ul li span {
  padding-left: 10px;
}
.contenedor_requisitos h3 {
  text-align: center;
  font-size: 20px;
}
.textonegro {
  font-size: 20px;
}
/* tabs */
.tab_container {
  border-radius: 0px 0px 10px 10px;
  border-top: none;
  overflow: hidden;
  width: 100%;
  background: #fff;
}
.tab_content {
  font-size: 16px;
  padding: 15px;
}
ul.tabs {
  list-style: none;
  margin: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
ul.tabs li {
  border: 2px solid white;
  background: var(--morado3);
  border-radius: 10px 10px 0px 0px;
  width: 50%;
  text-align: center;
}
ul.tabs li a {
  text-decoration: none;
  color: white;
  display: block;
  padding: 10px;
}
ul.tabs li a:hover {
  background: #c0a6c3;
  border-radius: 10px 10px 0px 0px;
}

html ul.tabs li.active {
  border-radius: 10px 10px 0px 0px;
  background: var(--rojo);
  color: white;
}
html ul.tabs li.active a:hover {
  border-radius: 10px 10px 0px 0px;
  background: var(--rojo);
  color: white;
}
.especialidades {
  text-align: center;
  font-size: 30px !important;
}
.planestudios {
  border: 2px var(--rojo) solid;
  border-radius: 15px;
}
.contenedorbachillerato {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  gap: 30px;
}
.contenedorbachillerato article {
  width: 50%;
}
.contenedorbachillerato figure {
  width: 40%;
}
.contenedorbachillerato figure img {
  width: 100%;
}
.contenedorbachillerato ul {
  list-style: none;
  margin-left: 20px;
}
.contenedorbachillerato ul li {
  padding-bottom: 15px;
}
.contenedorbachillerato i {
  font-size: 20px;
  color: var(--rojo);
}
.estructura {
  display: flex;
  justify-content: space-evenly;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px;
}
.estructura2 {
  border-radius: 10px;
  border: 2px var(--rojo) solid;
  display: flex;
  justify-content: space-evenly;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px;
  padding: 20px;
}
.contenedorsemestres {
  width: 45%;
  min-height: 500px;
  border-radius: 10px;
  background-image: url(/imagenes/fondo_libros.svg);
  background-size: cover;
  background-position: center center;
  padding: 15px;
}
.contenedorsemestres ul li {
  line-height: 30px;
  font-weight: bold;
}
.contenedorbachillerato article {
  padding: 10px;
}
.contenedorbachillerato .plan {
  background-color: var(--morado1);
  color: white;
  font-size: 16px;
  text-align: center;
  border-radius: 10px;
  padding: 5px 30px;
}
.dias {
  background-color: var(--morado1);
  color: white;
  font-size: 16px;
  font-weight: bold;
  max-width: 300px;
  text-align: center;
}
.contenedor_licenciaturas {
  padding: 15px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  flex-wrap: wrap;
}
.contenedor_licenciaturas article {
  background-image: url(/imagenes/fondo_birrete.svg);
  background-size: cover;
  background-position: center center;
  padding: 15px;
  width: 300px;
  min-height: 300px;
  border-radius: 15px;
}
.contenedor_licenciaturas article figure img {
  width: 100%;
  height: 155px;
  object-fit: cover;
  border-radius: 15px;
}
.contenedor_licenciaturas article h3 {
  text-align: center;
  padding: 15px 5px;
}
.contenedorposgrados {
  padding: 15px;
}
.iconostres {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 10px;
}
.iconostres {
  text-align: center;
}
.botones {
  width: 100%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.listavalores {
  column-count: 2;
}
.cajanoticias {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.contenedorpaginacion {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.contenedorpaginacion a {
  text-decoration: none;
  padding: 10px;
  border-radius: 5px;
  border: 2px var(--rojo) solid;
}
.slidenoticia {
  position: relative;
}
.tituloslidenoticia {
  color: white;
  font-family: var(--tipografiagruesa);
  font-size: 35px;
  line-height: 45px;
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  text-align:center;
  text-shadow: 0px 0px 5px #555;
  transform: translate(-50%, -50%);
}
.contenedornoticia {
  border: 2px var(--rojo) solid;
  padding: 15px;
  border-radius: 12px;
}
.contenedornoticia img {
  max-width: 500px;
  border-radius: 15px;
  margin: 10px;
  box-shadow: 0px 0px 10px #ccc;
  object-fit: cover!important;
  border: 10px white solid;
}
.contenedornoticia ul {
  margin-left: 40px;
}
/* formulario */

/* formulario css */
.elementosformulario h2 {
  padding-left: 15px;
}
#elementos_formulario h2 {
  padding-bottom: 20px;
  line-height: 30px;
}
#elementos_formulario input {
  border-radius: 5px;
  border: 1px #d3d3d3 solid;
  padding: 10px;
  width: 95%;
  font-size: 16px;
}
#elementos_formulario {
  margin-top: 20px;
  padding: 15px;
}
form .derecha {
  width: 50%;
}
form .izquierda {
  width: 50%;
}
form {
  width: 100%;
  line-height: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  font-size: 16px;
}
input {
  margin-bottom: 10px;
}
select {
  border-radius: 5px;
  border: 1px #d3d3d3 solid;
  padding-left: 10px;
  height: 35px;
  width: 95%;
  color: var(--negro);
  margin-bottom: 10px;
  font-size: 16px;
  background-color: white;
}
textarea {
  font-family: helvetica;
  border-radius: 5px;
  resize: none;
  border: 1px #d3d3d3 solid;
  background-color: white;
  padding: 10px;
  width: 100%;
  height: 230px;
  font-size: 16px;
}
button {
  font-size: 16px;
  width: 100%;
  padding: 10px;
  background-color: var(--rojo);
  color: white;
  border: 0;
  margin-top: 15px;
  border-radius: 8px;
  cursor: pointer;
}
#codigo {
  color: var(--rojo);
  font-weight: bold;
}
#seguridad {
  padding: 10px 5px 0px 5px;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: nowrap;
}
#seguridad img {
  display: inline-block;
}
#seguridad #security_code {
  max-width: 80px;
}
.capt {
  width: 100px !important;
}
.margenizquiedo {
  margin-left: 20px;
}
.justificar {
  text-align: justify;
}
.logoarriba {
  max-width: 170px;
}
/* acordeon */
.acordeon {
  width: 100%;
  margin: auto;
}
.acordeon_titulo {
  color: #666;
  padding: 20px;
  font-size: 14px;
  height: 20px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.acordeon_contenido {
  display: none;
  margin: 0;
  background: rgba(255, 255, 255, 0.5);
  padding: 1em 1em 1.5em;
}
.icono1,
.icono2,
.icono3,
.icono4 {
  font-size: 20px;
  transform: rotate(0deg);
  transition: all 0.5s;
  color: var(--rojo);
}
.rotar {
  transform: rotate(180deg);
}
#masinfo {
  display: none;
}
#masinfo2 {
  display: none;
}
.espacio {
  padding: 20px 10px;
}
#abririnfo {
  cursor: pointer;
  display: inline-block;
  padding: 10px 30px;
}

.contenedorpaginacion a.active{
  background-color:var(--rojo);
  color: var(--amarillo);
}

.tile{
  position: relative;
}