ul{
  padding:0 !important;
}
.tabContenedor{
  width: 100% !important;
  /*height: 100% !important;*/
  overflow: hidden !important;
  background-color: var(--dorado) !important;
  transition: 0.5s !important;
  text-align: center !important;
  margin-top:3rem;
}
.tabContenedor .opciones{
  display: flex !important;
  width: 100% !important;
  height: 4rem !important;
  list-style: none !important;
  background-color: white!important;
  transition: 0.5s !important;
  color:white !important;
}
.tabContenedor .opciones li{
  padding: 1rem !important;
  font-size: 1.1rem !important;
  transition: .5s !important;
  font-family: texto-bold;
}
.tabContenedor .opciones .opcion{
  flex-grow: 1 !important;
  text-align: center !important;
  border: solid 1px white !important;
  background-color: var(--azul)  !important;
  transition: 0.5s !important;
  cursor: pointer !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  color: white !important;
}
.tabContenedor .opciones .opcionActiva{
  background-color: var(--dorado) !important;
  color: white;
  border: none !important;
}
.tabContenedor .contenedor{
  width: 100% !important;
  height: 100% !important;
  transition: 0.5s !important;
}
.tabContenedor .contenedor .cont{
  width: 100% !important;
  height: 100% !important;
  color: black !important;
  display: none !important;
  transition: 0.5s !important;
}
.tabContenedor .contenedor .contActivo{
  display: block !important;
  transition: 0.5s !important;
}
.tabContenedor .contenedor .cont h3{
  text-align: center !important;
  padding:5px;
  border-bottom: solid 1px black !important;
  letter-spacing: 2px !important;
  margin: 10px !important;
  font-size: 2.5rem !important;
  font-weight: 700 !important;
}
.tabContenedor .contenedor .cont p{
  font-weight: 400 !important;
  font-size: 1rem !important;
  color:var(--azul) !important;
  margin: 30px 120px !important;
}

.tira{
  background-color: #26b4a8;
  padding:1rem;
}
.tira .contenedor{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.tira .contenedor a{
  color:white;
  font-weight: 700;
  font-size: 1.5rem;
  transition: .5s;
}
.tira .contenedor a:hover{
  transform: scale(0.9);
}