* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

@font-face {
  font-family: 'Holyday';
  src: url('../fonts/holyday.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Aegan';
  src: url('../fonts/aegan.ttf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

body {
  height: 100%;
  width: 100%;
  position: relative;
}

/* all similar content styling codes */
section {
  padding: 0;
  width: 100%;
  position: relative;
  background: #fafafa;
  margin: 0;
  display: flex;
  justify-content: center;
  height: 100dvh;
}

.max-width {
  padding: 0;
  width: 420px;
  background: #fafafa;
  margin: 0;
  position: relative;
  max-width: 100%;
}

.container .max-width {
  display: flex;
}

.container .max-width::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 0;
  background-image: url(../../assets/img/slide/1.jpg);
  background-size: cover;
}

.oso {
  position: absolute;
  width: 100%;
  height: 70%;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 0;
  left: auto;
  right: auto;
  margin: auto 0;

  & img {
    width: 100%;
    height: 100%;
    position: relative;
  }
}

.listbutton {
  position: absolute;
  width: 100%;
  z-index: 3;
  bottom: 16%;
  display: flex;
  justify-content: space-around;
}

.title-text {
  position: absolute;
  width: 100%;
  z-index: 3;
  bottom: 3% !important;
  display: flex;
  justify-content: center;
}

/* estilo general de cada item */
.listbutton .callview {
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  padding: 1em;
  position: relative;
  z-index: 1;
}

.img-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 0;
}

.text-wrapper {
  position: relative;
  line-height: 1;
}

.text-wrapper h1 {
  position: relative;
  font-family: 'Holyday', sans-serif;
  font-size: 5em;
  color: #555;
  font-weight: 400;
  line-height: 1;
  padding-top: 10px;

}
.text-wrapper h1::after{
    content: "DÍAS";
    position: absolute;
    width: 100%;
    height: 5px;
    left: 0;
    right: 0;
    margin: 0 auto;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    bottom: 0;
    letter-spacing: 2px;
    color: #555;
  }

.listbutton .callview .text-wrapper p {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-size: 12PX;
  letter-spacing: 3px;
  color: #555;
}

.listbutton .callview:nth-child(2) {
  position: relative;
  top: -4em;
}

/* texto */
.listbutton .callview p {
  margin-bottom: 2px;
  font-weight: bold;
  font-size: 12px;
}

.img-wrapper {
  position: relative;
  width: 75px;
  height: 75px;
  top: -18px;
}

.location{
  font-size: 0.7em; 
  text-decoration: underline; 
  font-family: 'Aegan';
  color: #333;
}

/***curve ***/
.svg-container {
  margin-bottom: -15px;
  /* Ajusta para que el texto "abrace" el círculo */
  z-index: 2;
}

.confirm {
  position: absolute;
  z-index: 3;
  right: 0;
  top: 33%;
  background: #999;
  border-radius: 50%;
  padding: 0.5em;
}

.confirm .circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.confirm .circle h3 {
  color: #111;
  font-family: "Poppins", sans-serif;
  font-size: 0.89em;
  font-weight: normal;
}

/********************************/
.card-qr {
  padding: 20px;
  display: flex;
  justify-content: center;
}

.form-asistencia {
  width: 100%;
  max-width: 350px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.form-group label {
  font-size: 14px;
  margin-bottom: 5px;
  color: #555;
    font-family: "Poppins", sans-serif;
}

.form-group input,
.form-group select {
  height: 45px;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 0 12px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #212121;
  outline: none;
  box-shadow: 0 0 0 3px rgba(14, 13, 13, 0.15);
}

.btn-enviar {
  width: 100%;
  height: 45px;
  background: linear-gradient(135deg, #444, #333);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-enviar:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.btn-enviar:active {
  transform: scale(0.98);
}
/************************************/
.form-message {
    font-size: 13px;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
    text-align: center;
    animation: fadeIn 0.3s ease;
}

.form-message.success {
    background: #e6fffa;
    color: #0c7a5a;
}

.form-message.error {
    background: #ffe6e6;
    color: #a94442;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}
/******************************/
.overlay-success {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.overlay-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    max-width: 300px;
    animation: scaleIn 0.3s ease;
}

.overlay-card h2 {
    margin-bottom: 10px;
}

.overlay-card button {
    margin-top: 15px;
    padding: 10px 20px;
    border: none;
    background: #111;
    color: white;
    border-radius: 10px;
    cursor: pointer;
}

@keyframes scaleIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
/**********************************/
.svg-container svg {
  overflow: visible;
  /* Para que el texto no se corte */
}

.gps {
  background: none !important;
}

.svg-container text {}

.svg-text {
  font-family: "Poppins", sans-serif;
  /* Cambia por tu fuente */
  font-weight: bold;
  font-size: 15px;
  fill: #555;
  /* Color de tu texto */
  letter-spacing: 3px;
}

.title-text .svg-text {
  letter-spacing: 2px;
}



/* Contenedor principal */
.menu-opc {
  width: 100%;
  padding: 20px 0;
}

.myVerticalSwiper {
  width: 100%;
  height: 110px;
  /* Altura fija solicitada */
  overflow: hidden;
  transform: rotate(-1.75deg);
}

.swiper-slide {
  display: flex;
  align-items: center;
  /* Centrado vertical */
  justify-content: center;
  /* Centrado horizontal */
  text-align: center;
}

.swiper-slide h1 {
  margin: 0;
  font-size: 1.8rem;
  color: #333;
}



.menu-share-bottom .view {
  /*background-color: #dddee9;*/
}

.gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  right: 0;
  bottom: 0;
  margin: auto;
  /* background-color: #111; */
  z-index: 2;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right,
      #ffd200,
      #f7971e);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to bottom,
      #e52427,
      #e524279c,
      #e5242773);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  display: flex;
}

.dates {

    display: flex;
    flex-direction: column;
    position: absolute;
    width: 80%;
    top: 0;
    margin: auto;
    left: 0;
    right: 0;
    z-index: 2;
    bottom: 0;
    height: 100%;
    align-items: center;
    justify-content: center;
    padding-top: 4em;

  & ol {
    border-top: 1px solid #fff;
    list-style: none;
    text-align: center;
    padding-top: 0.5em;
    width: 85%;
  }

  & ul {
      list-style: none;
      grid-gap: 10px;
      display: grid;
      grid-template-columns: 36% 20% 30%;
      width: 80%;
      margin: 0 auto;
  }

}

.dates ul>li {
  text-align: center;
  & h2 {
    font-family: 'Aegan';
    font-size: 1.2em;
    font-weight: bold;
  }

}

.dates ol>li {

  & h2 {
    font-family: 'Aegan';
    font-size: 1.1em;
    font-weight: bold;
  }

}

#tiempo{
      position: absolute;
    right: -85%;
    top: 25%;
    bottom: auto;
    margin: auto 0;
    left: auto;
    height: 20px;
    font-family: "Poppins", sans-serif;
    opacity: 0.75;
    font-size: 0.8em;
}

legend {
  width: 70%;
  background: #fff;
  padding: 4% 3%;
  margin: 0 auto;
  border-radius: 50px;
  box-shadow: 0px 3px 15px rgb(0 0 0 / 15%);
}

.pulsingButton {
  text-align: center;
  white-space: nowrap;
  display: block;
  box-shadow: 0 0 0 0 rgb(129 142 200);
  border-radius: 10px;
  background-color: #0000;
  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  color: #ffffff;
  transition: all 300ms ease-in-out;
  margin: 0 !important;
  width: 10px;
  letter-spacing: 0.5px;
  height: 10px;
  position: absolute;
  bottom: 0;
  /* transform: translate(0%, 154%); */
  z-index: -1;
  left: 0;
  right: 0;
  top: -10px;
  margin: auto !important;
}

/* Hover animated */
a.pulsingButton:hover {
  -webkit-animation: none;
  -moz-animation: none;
  -ms-animation: none;
  animation: none;
  color: #ffffff;
}

/* Animation */
@-webkit-keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}

@-moz-keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}

@-ms-keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}

.error-doc {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  grid-gap: 30px;
  margin-top: auto !important;
}

.returnIni {
  width: 75%;
  background: #7e5a8a;
  padding: 5%;
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 1.25em;
}

.log_2 {
  width: 100%;
}

.confirmm {
  padding-top: 0 !important;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  grid-gap: 30px;
  margin-top: auto !important;
}

.confirmm .profile h4 {
  margin-top: 0;
}

/*************************/
.view video {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  z-index: 1;
  object-fit: contain;
}

.stage {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 100%;
  width: 100%;
  overflow-y: hidden;
  z-index: 1;
  overflow-x: hidden;
}

.mariposa {
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 200px;
  height: 200px;
  opacity: 0;
  /* start at 0 so they don't appear while loading */
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
  animation: fly 6s infinite linear;
  animation-delay: 0.125s;
}

.mariposa:nth-child(2) {
  animation-delay: 0.4s;
}

.mariposa:nth-child(2) .mariposa-turn {
  animation-delay: 0.75s;
}

.mariposa:nth-child(2) .mariposa-turn .mariposa-flutter {
  transform: scale(0.7) rotateX(65deg);
}

.mariposa:nth-child(3) {
  animation-delay: 0.75s;
}

.mariposa:nth-child(3) .mariposa-turn {
  animation-delay: 1.25s;
}

.mariposa:nth-child(3) .mariposa-turn .mariposa-flutter {
  transform: scale(0.3) rotateX(45deg);
}

.mariposa .mariposa-turn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 150px;
  perspective: 1000px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  left: 0;
  margin: auto;
  transform-origin: 50% 80%;
  /* turn from a natural center */
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation: turn 3s infinite cubic-bezier(0.31, 0.09, 0.77, 1.5);
  transform-style: preserve-3d;
  filter: drop-shadow(50px 30px 10px rgba(0, 0, 0, 0.5));
}

.mariposa-flutter {
  width: 2rem;
  height: 8rem;
  position: relative;
  top: 0;
  margin: 0 auto;
  background: url("../img/gallery/center.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform-style: preserve-3d;
  transform: rotateX(25deg) rotateY(5deg);
}

.mariposa-flutter::before,
.mariposa-flutter::after {
  position: absolute;
  top: 5%;
  margin: auto;
  content: "";
  height: 100%;
  width: 250%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform-style: preserve-3d;
  animation-delay: 0;
}

.mariposa-flutter::before {
  background-image: url("../img/gallery/right.png");
  transform-origin: 0% 50%;
  animation: flutter-r 0.3s infinite ease-out;
  left: 55%;
}

.mariposa-flutter::after {
  background-image: url("../img/gallery/left.png");
  transform-origin: 100% 50%;
  animation: flutter-l 0.3s infinite ease-out;
  right: 55%;
}

@keyframes flutter-r {

  0%,
  100% {
    transform: rotateY(0deg);
  }

  50% {
    transform: rotateY(-40deg);
  }
}

@keyframes flutter-l {

  0%,
  100% {
    transform: rotateY(0deg);
  }

  50% {
    transform: rotateY(40deg);
  }
}

@keyframes turn {

  0%,
  100% {
    transform: translateX(-20%) rotateZ(30deg);
  }

  25% {
    transform: translateX(50%) rotateZ(-30deg);
  }

  50% {
    transform: translateX(-80%) rotateZ(30deg);
  }

  75% {
    transform: translateX(30%) rotateZ(-30deg);
  }
}

@keyframes fly {
  0% {
    opacity: 0;
    transform: translateY(70vh);
  }

  3%,
  99% {
    opacity: 1;
  }

  100% {
    transform: translateY(-70vh);
  }
}


/*************************/
.menu-opc {
  position: relative;
  width: 100%;
  min-height: 450px;
  margin: auto;
  /*border: 4px solid #fff;*/
  z-index: 1;
  border-radius: 10px;
  padding: 0.5em 0;
  backdrop-filter: blur(1px);
  margin-top: 0.5em;
}

.barra {
  background: none;
  transition: all 0.3s ease;
}

.down-scr {
  transition: all 0.3s ease;
  box-shadow: 0px 6px 15px rgb(0 0 0 / 15%);
  backdrop-filter: blur(5px);
  background: linear-gradient(96.88deg, #fff 0, #fffc 124.4%);
}

.solid {
  display: none;
}

.black {
  display: block;
}

.down-scr span {
  background: #111 !important;
}

.menu-opc nav {
  width: 100%;

  position: sticky;

  left: 0;

  top: 0;

  z-index: 3;

  padding: 1.1% 5% 2.5%;

  right: 0;
}

.menu-opc nav>ul {
  list-style: none;

  display: grid;

  grid-template-columns: 1fr;

  align-items: center;

  width: 100%;

  height: 65px;

  position: relative;
}

.menu-opc nav>ul>li {
  display: flex;

  padding: 0;

  justify-content: center;
}

.menu-opc nav>ul>li:nth-child(2n) {
  text-align: center;

  flex-direction: column;

  grid-gap: 7px;

  justify-content: center;

  align-items: end;

  padding: 0;

  cursor: pointer;
}

.menu-opc nav>ul>li>img {
  width: 50%;
}

.menu-opc nav>ul>li>ion-icon {
  font-size: 2em;
}

.menu-opc nav>ul>li>span {
  width: 55%;
  height: 2px;
  background: #fff;
}

.menu-opc nav>ul>li>span:nth-child(2n) {
  width: 33%;
}

.carousel-p {
  width: 100%;

  height: 380px;

  object-fit: cover;

  position: absolute !important;

  top: 0;
}

.carousel-p img {
  width: 100%;

  height: 380px;

  /* object-fit: cover; */

  /* object-position: center; */
}

.profile {
  width: 75%;
  margin: 0 auto;
  padding: 5%;
  /* backdrop-filter: blur(10px); */
  background: #fff;
  box-shadow: 0px 3px 15px rgb(0 0 0 / 15%);
  border-radius: 10px;
}

.foto {
  width: 90%;
  margin: 0 auto;
  text-align: center;
  top: 30px;
  position: relative;
}

.foto img {
  width: 230px;
  height: 230px;
  background: #fff;
  border-radius: 50%;
  padding: 4%;
}

.profile h4 {
  font-family: "Questrial", sans-serif;
  font-size: 1.75em;
  text-align: center;
  font-weight: normal;
  margin: 1.05em 0 0;
}

.card-profile {
  width: 95%;

  background: #fffe;

  margin: 0 auto;

  border-radius: 5px;

  position: absolute;

  bottom: -27%;

  z-index: 2;

  padding: 5% 5% 10%;

  height: 142px;

  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);

  display: flex;

  flex-direction: column;

  justify-content: end;

  grid-gap: 5px;

  left: 0;

  right: 0;

  backdrop-filter: blur(5px);
}

.card-profile span {
  position: absolute;

  width: 250px;

  height: 250px;

  left: 0;

  right: 0;

  top: -219px;

  margin: 0 auto;

  object-fit: cover;
}

.card-profile span>img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: top;
}

.card-profile h1 {
  font-family: "Questrial", sans-serif;
  font-size: 1.6em;
  text-align: center;
  font-weight: 400;
  margin: 0.5em 0;
}

.card-profile p {
  font-family: "Roboto";
  font-size: 1em;
  text-align: center;
  font-weight: 500;
}

.container-serv {
  margin-top: 9em;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  padding: 5% 5% 10%;
  box-shadow: 0px 6px 15px rgb(0 0 0 / 15%);
  border-radius: 5px;
  height: fit-content;
  margin-bottom: 4em;
  position: relative;
  z-index: 2;
}

/*********************************/


/*****************************/
.container-serv ul {
  list-style: none;
  width: 100%;
  display: flex;
  margin-bottom: 1.5em;
  position: relative;
  padding: 2% 0;
}

.container-serv ul:after {
  content: "";
  position: absolute;
  bottom: -2.5px;
  width: 95%;
  height: 2px;
  background: #fafafa;
  z-index: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.container-serv ul>li {
  padding: 2% 5%;
  font-size: 1em;
  font-family: "Questrial";
  position: relative;
  flex: 1 1 auto;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.container-serv p {
  font-size: 0.91em;
  font-family: "Questrial";
  line-height: 1.5;
  text-transform: capitalize;
}

.carousel-serve {
  width: 100%;
}

.carousel-serve .card {
  width: 100%;

  background: #fff;

  position: relative;

  margin: auto;

  border-radius: 10px;

  box-shadow: 0px 6px 15px rgb(0 0 0 / 15%);

  cursor: pointer;
}

.carousel-serve .card img {
  width: 100%;

  height: 170px;

  object-fit: cover;

  box-shadow: 0px 6px 15px rgb(0 0 0 / 15%);

  border-radius: 10px;

  cursor: pointer;
}

.carousel-serve .card h3 {
  font-size: 1em;

  font-family: "Questrial";

  font-weight: 500;

  position: absolute;

  bottom: 0;

  width: 100%;

  color: #fafafafa;

  left: 0;

  right: 0;

  margin: 0 auto;

  height: 21%;

  display: flex;

  align-items: center;

  padding: 0 10%;

  letter-spacing: 0;

  background: #212121;
}

.carousel-serve .card .grad {
  position: absolute;

  width: 100%;

  height: 100%;

  border-radius: 10px;

  /* background: linear-gradient(to top, #e9a825, #e9a825, #e9a82500, #e9a8251a, #e9a8250f); */

  bottom: 0;

  /* background: #e9a8253b; */
}

.acordeon {
  position: relative;
}

.acordeon::after {
  content: "";
  position: absolute;
  background: rgb(229 36 39);
  width: 2px;
  height: 95%;
  top: 0;
  left: 3.5px;
  opacity: 0.9;
  bottom: 0;
  right: 0;
  margin: auto 0;
}

.acordeon .item-header {
  width: 100%;
  padding: 3.5% 10%;
  font-size: 1.1em;
  color: #222;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: "Questrial";
  position: relative;
}

.acordeon .item-header::before {
  content: " ";
  text-align: center;
  display: block;
  line-height: 28px;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  left: -8px;
  color: white;
  -webkit-box-shadow: 0 0 0 2px #e52427 inset;
  box-shadow: 0 0 0 2px #e52427 inset;
  border-radius: 50%;
  background: #fff;
  z-index: 1;
  right: 0;
  bottom: 0;
  margin: auto 0;
}

#item3 {
  height: 360px;
  /* ajusta la altura segÃºn tus necesidades */
  padding-left: 0.5em;
  padding-top: 1em;
  padding-bottom: 2em;
}

.acordeon .item-header::after {
  content: " ";
  text-align: center;
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 0;
  left: -2px;
  background: #e52427;
  border-radius: 50%;
  z-index: 1;
  right: 0;
  bottom: 0;
  margin: auto 0;
}

.acordeon .item-contenido {
  /* display: none; */
}

.acordeon .item-contenido ul {
  flex-direction: column !important;

  text-align: left !important;

  justify-content: flex-start !important;

  align-items: flex-start !important;
}

.acordeon .item-contenido ul>li {
  padding: 3% 0 1%;

  text-align: left;

  width: 90%;

  margin-left: auto;

  position: relative;

  text-align: left !important;

  justify-content: flex-start !important;

  align-items: flex-start !important;
}

.acordeon .item-contenido ul>li::after {
  content: "";
  position: absolute;
  width: 6%;
  height: 2px;
  left: -30px;
  background: #e52427;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 0;
  border-radius: 10px;
  opacity: 0.35;
}

.acordeon .item-contenido ul>li>strong {
  font-size: 1em;

  color: #222;
}

.acordeon .item-contenido ul>li>p {
  padding: 1em 0;

  font-weight: normal;

  color: #555;

  font-size: 1em;

  line-height: 1.35;

  padding-left: 1em;

  position: relative;

  /* width: 100%; */
}

.acordeon .item-contenido ul>li>p>span {
  color: #999;

  font-size: 0.85em;

  margin: 0;
}

.acordeon .item-contenido ul>li>p>i {
  position: absolute;

  left: 2px;

  top: 15px;

  bottom: 0;

  right: 0;

  margin: auto 0;

  display: flex;

  align-items: flex-start;

  font-size: 1em;

  color: #999;
}

footer {
  width: 100%;
  position: fixed;
  display: flex;
  margin: 0 auto;
  justify-content: center;
  /* background: #fafafa; */
  bottom: 0;
  z-index: 2;
  left: 0;
  right: 0;
}

footer .max-width::after {
  background-image: none;
}

footer ol {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  text-align: center;
  justify-content: center;
  height: 55px;
  align-items: center;
  position: relative;
}

footer ol li {
  position: relative;
}

footer ol li ::after {
  content: "";
  width: 50px;
  height: 50px;
  background: #0000;
  position: absolute;
  top: 0;
  z-index: -1;
  left: 0;
  border-radius: 100%;
  /* box-shadow: 0px 3px 15px rgb(0 0 0 / 15%); */
}

footer ol li ion-icon {
  margin: 0 auto;
  font-size: 1.7em;
  color: #111;
}

.ena::after {
  transition: all 0.3s ease;
  content: "";
  position: absolute;
  width: 40%;
  height: 3px;
  background: #e52427;
  bottom: -9.5px;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-radius: 5px;
  z-index: 1;
}

/*
.dates {
  width: 100%;
  padding: 2em 0;
  position: relative;
}

.dates h4 {
  font-size: 1.5em;
  text-align: center;
  font-weight: bold;
  font-family: "Questrial", sans-serif;
}
  */

.menu-down {
  /* background-color: #fff; */
  /* box-shadow: 0px 3px 15px rgb(0 0 0 / 15%); */
  position: relative;
  z-index: 1;
}

.card-qr ul {
  font-family: "Questrial", sans-serif;

  display: flex;

  flex-direction: column;
}

.card-qr ul>li {
  font-size: 1.1em;

  margin: 0.55em 0;
}

.menu-down::after {
  content: "Programa";
  position: absolute;
  top: -35px;
  right: 1%;
  background: #818ec8;
  padding: 2% 5%;
  border-radius: 30px;
  color: #fff;
  font-family: "Questrial", sans-serif;
}

.menu-down::before {
  content: "";
  position: absolute;
  top: -15px;
  right: 9%;
  background: #818ec8;
  width: 15px;
  height: 15px;
  transform: rotate(45deg);
}

.container-gallery {
  width: 100%;

  position: relative;
}

.container-gallery ol {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  width: 100%;

  list-style: none;

  grid-gap: 10px;
}

.container-gallery ol>li {
  width: 100%;

  height: 100%;

  display: flex;

  flex-direction: column;

  grid-gap: 7px;

  border: 1px solid #eee;

  border-radius: 10px;

  padding: 10px;
}

.container-gallery ol>li>img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  border-radius: 5px;
}

.actives {
  margin-top: 0% !important;
  transition: all 0.6s ease !important;
}

.return {
  margin-left: 0% !important;
  transition: all 0.3s ease !important;
}

.return-bottom {
  /* margin-top: 80% !important; */
  transition: all 0.3s ease !important;
  top: 25% !important;
}

.menu-serve {
  position: fixed;
  width: 100vw;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 10;
  transition: all 0.3s ease;
  margin-top: 275%;
  bottom: 0;
  overflow-y: scroll;
}

.menu-serve .menu-opc {
  padding: 25% 5% 0;
}

.menu-opc h1 {
  text-align: center;
  font-size: 2.15em;
  font-family: 'Holyday', sans-serif;
  font-weight: normal;
}

.menu-serve .menu-opc h2 {
  position: relative;
  z-index: 3;
  color: #fff;
  font-size: 2.2em;
  font-family: "Roboto";
  margin-bottom: 0.1em;
  text-transform: capitalize;
}

.menu-serve .menu-opc p {
  position: relative;

  z-index: 3;

  color: #fff;

  font-size: 1em;

  font-family: "Roboto";

  text-transform: none;
}

.container-list {
  width: 95%;
  position: relative;
  top: -10em;
  z-index: 3;
  margin: 0 auto;
  padding: 5%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 6px 15px rgb(0 0 0 / 15%);
}

.container-list div {
  width: 100%;
  background-color: #fff;
  margin: 2% auto;
  border: 1px solid #fafafa;
  position: relative;
}

.container-list div::after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  font-weight: 600;
  font-size: 1.5em;
  z-index: 10;
  margin: auto;
  left: auto;
  display: flex;
  align-items: center;
  opacity: 0.35;
}

.container-list div>ul {
  list-style: none;
  display: grid;
  grid-template-columns: 30% 70%;
  padding: 0;
  margin: 0;
}

.container-list div>ul>li {
  padding: 0;

  display: flex;

  align-items: center;
}

.container-list div>ul>li>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 0px 0px 10px;
}

.container-list div>ul>li>h3 {
  font-size: 1.05em;
  font-family: "Questrial";
  text-align: left;
  font-weight: normal;
  padding: 0 5%;
  color: #333;
}

.close {
  position: absolute;
  width: 50px;
  height: 50px;
  right: 5%;
  top: 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

.menu-share-bottom .close {
  z-index: 10;

  top: 1%;

  padding-top: 1em;
}

.rights2 ion-icon {
  color: #111 !important;
}

.close ion-icon {
  color: #111;

  font-size: 2em;
}

.menu-share {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 10;
  transition: all 0.6s ease;
  margin-left: 100%;
}

#ajust {
  background: linear-gradient(to bottom, #e9a825, #e9a825e6, #e9a82547);
}

.menu-share-bottom {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 10;
  transition: all 0.3s ease;
  /* margin-top: 0; */
  z-index: 3;
  bottom: 0;
  max-width: 420px;
  margin: 0 auto;
}

.return-bottom::after {
  content: "";
  position: absolute;
  width: 100%;
  top: -100%;
  height: 100%;
  background: #1111114f;
  bottom: 0;
  margin: 0;
  left: 0;
  right: 0;
  z-index: 0;
  backdrop-filter: blur(3px);
}

#bio-info {
  font-size: 1.1em;
  font-family: "Questrial";
  text-align: justify;
  color: #555;
  font-weight: normal;
  line-height: 1.2;
}

.view {
  width: 100%;
  margin: 0 auto;
  height: 100%;
  /* background: #ffffff9e; */
  position: relative;
  bottom: 0;
  right: 0;
  border-radius: 10px 0 0 0;
  z-index: 1;
}

.cards {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  margin: auto 0;
  height: 90%;
  top: 0;
  bottom: 0;
  text-align: center;
}

.cards .title {
  font-size: 2.25em;
  font-family: 'Holyday';
  color: #888;
  padding-bottom: 0.5em;
}

.cards .icons {
  padding: 1em 0;
  width: 120px;
  height: 120px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  margin: 0 auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cards .subtitle {
  font-size: 1em;
  font-family: 'Aegan';
  font-weight: 600;
  letter-spacing: 2px;
  padding-top: 1em;
}
.card-share {
  padding: 15% 10% 3%;
}
.location strong{
    font-size: 1.45em;
    font-family: 'Roboto';
    font-weight: bolder;
    letter-spacing: 0.5px;
}

.card-share ol {
  list-style: none;

  /* display: grid; */

  /* grid-template-columns: 1fr; */
}

.card-share ol>li {}

.card-share ol>li {
  display: grid;

  grid-template-columns: 15% 85%;

  margin: 2em 0;

  align-items: center;
}

.card-qr {
  width: 90%;

  margin: 0 auto;

  padding: 0 10%;
}

.card-qr img {
  width: 100%;
}

.card-share ol>li>ion-icon {
  font-size: 1.5em;
  color: #333;
  width: 100%;
}

.card-share ol>li>p {
  font-size: 1.25em;

  font-family: "Questrial";

  line-height: 1.4;
}

.menu-share {
  background: none;
}

.menu-share .container {
  background: none;
}

.menu-share .max-width {
  background: none;
}

.menu-share .close {
  top: 1%;

  z-index: 10;
}

.menu-share .close ion-icon {
  color: #111;

  font-size: 2.5em;
}

.menu-serve .menu-opc img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 380px;
}

/*********/
.preview-box {
  position: fixed;
  top: 0;
  left: 0;
  /* transform: translate(-50%, -50%) scale(0.9); */
  background: #fff;
  max-width: 420px;
  width: 100%;
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  border-radius: 3px;
  padding: 0 5px 5px 5px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
  z-index: 10;
  right: 0;
  bottom: 0;
  margin: auto;
  height: fit-content;
}

.preview-box.show {
  opacity: 1;
  pointer-events: auto;
  /* transform: translate(-50%, -50%) scale(1); */
  transition: all 0.3s ease;
}

.preview-box .details {
  padding: 13px 15px 13px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.preview-box .details .title {
  display: flex;
  font-size: 18px;
  font-weight: 400;
  font-family: "Roboto";
  margin: 0;
  letter-spacing: 0;
  text-transform: capitalize;
  padding: 0;
}

.preview-box .details .title::before {
  display: none;
}

.preview-box .details .title p {
  font-weight: 500;
  margin: 0;
}

.preview-box .details .icon {
  color: #007bff;
  font-style: 22px;
  cursor: pointer;
}

.preview-box .image-box {
  width: 100%;
  display: flex;
}

.image-box img {
  width: 100%;
  border-radius: 0 0 3px 3px;
  height: 100%;
  object-fit: cover;
}

.shadow {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 5;
  display: none;
  background: rgb(0 0 0 / 69%);
}

.shadow.show {
  display: block;
}

.menu-share-bottom .card-share {
  padding: 12% 1% 0;
  overflow-y: inherit;
}

.menu-share-bottom .card-share ol {
  display: grid;

  grid-template-columns: 1fr 1fr 1fr;

  margin-top: 0.75em;
}

.menu-share-bottom .card-share ol>li {
  display: flex;
  flex-direction: column;
  grid-gap: 7.5px;
  margin: 1.25em 0;
  justify-content: center;
  align-items: center;
  color: #111;
}

.menu-share-bottom .card-share ol>li>p {
  font-size: 0.9em;
  text-align: center;
}

.card-qr p {
  font-size: 1em;
  text-align: center;
  color: #111;
  font-weight: normal;
  font-family: "Questrial", sans-serif;
  margin-top: 3.5em;
}

.card-share img {
  width: 50%;
  text-align: center;
  margin-bottom: 1.5em;
}

.menu-share::after {
  content: attr(data-label);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: auto;
  text-align: center;
  z-index: 4;
  color: #666;
  font-family: "Roboto";
  font-size: 0.75em;
  background: #fff;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.legend {
  text-align: center;
  font-family: "Roboto";
  display: flex;
  flex-direction: column;
  grid-gap: 15px;
}

.legend h4 {}

.menu-share-bottom .card-share p {
  font-size: 1.1em;
  font-family: "Questrial";
}

/*********/
@media (max-width: 780px) {
  .container {
    /* height: auto; */
  }

  .menu-share .container {
    height: 100vh;
  }
}

@media (max-width: 520px) {
  .barra {
    position: fixed !important;
  }

  .menu-opc h1 {
    font-size: 2.2em;
    line-height: 1.15;
    font-weight: 400;
    color: #444;
    letter-spacing: 1.05px;
  }

  .foto img {
    width: 190px;
    height: 190px;
  }

  .profile h4 {
    font-size: 1.25em;
    margin: 0.75em 0 0;
  }

  .dates h4 {
    font-size: 1.25em;
  }

  .legend {
    grid-gap: 10px;
  }

  .legend h4 {
    font-size: 14px;
  }

  .menu-down::after {
    font-size: 13px;
  }

  .menu-opc {
    margin-top: 0.5em;
  }
}

@media (max-width: 380px) {
  .cards .subtitle {
    font-size: 0.8em;
  }

  .listbutton .callview:nth-child(2) {
    top: -2.95em;
  }  

  .confirm .circle {
    width: 60px;
    height: 60px;
  }

  .confirm .circle h3 {
    font-size: 0.6em;
  }

  .cards .title {
    font-size: 1.5em;
  }

  .listbutton {
    bottom: 14%;
  }

  .oso {
    height: 72%;
  }

  .dates {
    width: 68%;
  }

  .return-bottom {
    top: 17% !important;
  }

  .dates ol>li {
    & h2 {
      font-size: 0.9em;
    }
  }

  .dates ul>li {
    & h2 {
      font-size: 0.9em;
    }
  }


  .title-text {
    bottom: 2% !important;
  }

  .text-wrapper h1 {
    font-size: 4em;
  }

  .listbutton .callview p {
    font-size: 10px;
  }

  .img-wrapper {
    width: 65px;
    height: 65px;
  }

  .menu-opc {
    margin-top: 0em;
    padding: 0;
  }

  .menu-opc h1 {
    font-size: 2em;
  }
}