/*
@import url('https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');
*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.css");
html {
  font-family: Alfa Slab One;
  font-size: 16px;
}
small {
  font-size: 14px;
}
.price-text-euro br {
  display: none;
}
body {
  font-style: normal;
  text-decoration: none;
  text-transform: none;
  letter-spacing: normal;
  line-height: 1.15;
  color: var(--dl-color-gray-black);
  background-color: var(--dl-color-gray-white);
}
.container-half {
  min-height: 40vh;
  height: auto;
}
.container-container {
  min-height: 100vh;
}
.row {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-evenly;
}

/*
*
POP-UP
*
*/
.modalPop {
  display: block; /* Oculto por defecto */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.5s;
}

.modal-content {
  color: rgba(51, 92, 152, 1);
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  width: 75%;
  max-width: 800px;
  margin: 25% auto;
  animation: scaleIn 0.5s;
  position: relative;
}

.modal-content p {
  font-size: 2vw;
  line-height: 1.5;
  font-family: "Lato";
  margin: 1% 0;
}
.modal-content h1 {
  font-size: 3vw;
  margin: 5% 0;
  animation: none;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.7);
  }
  to {
    transform: scale(1);
  }
}

@keyframes scaleOut {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(0.7);
  }
}

/*
  *
   navbar
  *
  */
.container-navs {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 8vh;
  display: flex;
  position: sticky;
  position: -webkit-sticky;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.08);
  align-items: center;
  border-color: transparent;
  z-index: 1;
  background-color: white;
  justify-content: space-between;
  z-index: 99;
}
.navbar-toggler {
  padding-left: 3vw;
  margin-left: 5px;
  background-color: #ffffff;
  cursor: pointer;
  display: flex;
  height: 6vh;
  align-content: center;
  width: 12vw;
  justify-items: center;
  justify-self: flex-start;
  display: none;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.navbar-toggler span,
.navbar-toggler span:before,
.navbar-toggler span:after {
  width: 28px;
  height: 3px;
  background-color: #000;
  display: block;
  transition: .3s;
  display: none;
}
.navbar-toggler span:before {
  content: "";
  transform: translateY(-9px);
}
.navbar-toggler span:after {
  content: "";
  transform: translateY(6px);
}
.navbar-toggler.toggler-open span {
  background-color: transparent;
}
.navbar-toggler.toggler-open span:before {
  transform: translateY(0px) rotate(45deg);
}
.navbar-toggler.toggler-open span:after {
  transform: translateY(-3px) rotate(-45deg);
}
.navbar-right {
  height: 100%;
  display: flex;
  justify-content: right;
  align-items: center;
  flex-direction: inherit;
}
.container-logo {
  height: 100%;
  width: auto;
  display: flex;
  position: relative;
  align-items: center;
  border-color: transparent;
}
.container-nav-links {
  /* visibility: hidden; */
  display: block;
  width: auto;
  height: 100%;
  display: flex;
  position: relative;
  align-items: center;
  margin-left: 1vw;
}
.container-text-main:hover,
.container-text:hover {
  font-size: 1.15vw;
  transition: .5s;
  cursor: pointer;
  color: rgba(51, 92, 152, 1);
}
.container-text-main {
  color: rgba(51, 92, 152, 1);
  height: auto;
  font-size: 1.1vw;
  align-self: auto;
  text-align: left;
  font-family: Alfa Slab One;
  font-weight: 700;
  line-height: normal;
  font-stretch: normal;
  margin-right: 10%;
  margin-bottom: 0;
  text-decoration: none;
  -webkit-transition: font-size .5s;
}
.container-text {
  height: auto;
  font-size: 1.1vw;
  align-self: auto;
  text-align: left;
  font-family: Alfa Slab One;
  font-weight: 100;
  line-height: normal;
  font-stretch: normal;
  margin-right: 10%;
  margin-bottom: 0;
  white-space: nowrap;
  text-decoration: none;
  -webkit-transition: font-size .5s;
}
.container-search-box {
  width: 20vw;
  height: 100%;
  display: flex;
  position: relative;
  align-items: center;
  flex-shrink: 0;
  border-color: transparent;
  justify-content: flex-end;
}
.container-search-box a {
  display: flex;
  height: -webkit-fill-available;
  align-items: center;
  justify-content: center;
}
.container-search-box svg {
  height: 25%;
  width: auto;
  margin-right: 1vw;
  -webkit-transition: height .5s;
}
.container-search-box svg:hover {
  height: 40%;
  transition: .5s;
  cursor: pointer;
}
/*
*
CAROUSEL
*
*/
.fa-xmark:before {
  content: "\f00d";
}
.container-carousel {
  width: 100%;
  height: 92vh;
  display: flex;
  position: relative;
  align-self: auto;
  align-items: flex-start;
  flex-shrink: 1;
}

#mySlider {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 92vh;

  background-image: url("public/playground_assets/fondo_4k.png");
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center;
}
#sliderPrev {
  position: relative;
  float: left;
  left: 50px;
}

#sliderNext {
  position: relative;
  float: right;
  right: 50px;
}
.indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  height: 4vh;
  left: 10vw;
  width: 80vw;
  top: 80vh;
}
.indicator {
  margin: 4px;
  height: 20px;
  border: solid white 2px;
  border-radius: 50%;
  width: 20px;
}
.selected {
  background-color: white;
}
.carrousel-arrow {
  height: 8vh;
  align-self: center;
  justify-self: left;
  font-size: 8vh;
  color: white;
}
.carrousel-arrow:hover {
  color: rgba(51, 92, 152, 1);
}
.carousel-textbox {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  border-color: transparent;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-transform: uppercase;
}
#sliderNav {
  width: 100%;
  position: absolute;
  top: 40vh;
  font-size: 42px;
}
#sliderNav:hover {
  cursor: pointer;
}
.singleSlide {
  color: white;
  background-size: cover;
  height: 92vh;
  position: absolute;
  left: 100%;
  width: 100%;
  top: 0px;
  background-image: url("public/playground_assets/fondo_4k.png");
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center;
}
.slide3 {
  display: flex !important;
  justify-content: end !important;
}

.carousel-text-main-W {
  color: rgba(255, 255, 255, 1);
  height: auto;
  position: relative;
  font-size: 64px;
  align-self: auto;
  font-style: Regular;
  text-align: left;
  font-family: Alfa Slab One;
  font-weight: 400;
  line-height: normal;
  font-stretch: normal;
  text-decoration: none;
  animation: anim-lineUp 2s ease-out;
}
.carousel-text-main-B {
  color: rgba(51, 92, 152, 1);
  height: auto;
  position: relative;
  font-size: 100px;
  align-self: auto;
  font-style: Semi Bold;
  text-align: left;
  font-family: Alfa Slab One;
  font-weight: 400;
  line-height: normal;
  font-stretch: normal;
  text-decoration: none;
  padding-right: 1vh;
  animation: anim-lineUp 2s ease-out;
}
.carousel-text-B {
  color: rgba(51, 92, 152, 1);
  height: auto;
  position: relative;
  font-size: 20px;
  align-self: auto;
  font-style: Semi Bold;
  text-align: left;
  font-family: Alfa Slab One;
  font-weight: 700;
  line-height: normal;
  font-stretch: normal;
  text-decoration: none;
  animation: anim-lineUp 2s ease-out;
}
.carousel-text-W {
  color: rgba(255, 255, 255, 1);
  height: auto;
  position: relative;
  font-size: 20px;
  align-self: auto;
  font-style: Semi Bold;
  text-align: left;
  font-family: Alfa Slab One;
  font-weight: 700;
  line-height: normal;
  font-stretch: normal;
  text-decoration: none;
  animation: anim-lineUp 2s ease-out;
}
.carousel-button {
  color: white;
  background-color: #335c98;
  width: 25vw;
  height: 10vh;
  font-size: 3vh;
  font-family: "Lato";
  font-weight: bolder;
  margin-top: 5vh;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  border-radius: 18px;
  cursor: pointer;
  -webkit-transition: all 200ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -moz-transition: all 200ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -ms-transition: all 200ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -o-transition: all 200ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  transition: all 200ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
}
.carousel-button:hover,
.carousel-button:focus {
  box-shadow: inset 0 0 0 2em #162843;
}
.modal {
  opacity: 0;
  z-index: -2;
  animation: hide .25s;
  transform: scale(0);
  height: 100vh;
  width: 100vw;
  position: fixed;
}
.open {
  opacity: 1;
  z-index: 2;
  transform: scale(1);
  height: 100vh;
  width: 100vw;
  position: fixed;
}
@keyframes hide {
  from {
    z-index: 2;
    transform: scale(1);
    opacity: 1;
  }
  to {
    z-index: -2;
    transform: scale(0);
    opacity: 0;
  }
}
@keyframes show {
  from {
    z-index: -1;
    transform: scale(0);
    opacity: 0;
  }
  to {
    z-index: 2;
    transform: scale(1);
    opacity: 1;
  }
}
.carousel-modal {
  position: fixed;
  background-color: #335c98;
  color: white;
  width: 80vw;
  height: 80vh;
  z-index: 10;
  margin: auto;
  right: 0;
  left: 0;
  bottom: 0;
  top: 0;
  display: flex;
  flex-direction: row;
}
.carousel-modal i {
  position: absolute;
  right: 0;
  margin-right: 1%;
  margin-top: 1%;
  font-size: 2vmax;
  cursor: pointer;
}
.modal-img {
  height: 100%;
  width: 50%;
  padding: 2%;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center;
}
.modal-column-text {
  padding: 2%;
  display: flex;
  width: 50%;
  height: auto;
  flex-direction: column;
}
#modal-title {
  font-size: 4vmax;
}
#modal-subtitle {
  font-size: 1.6vmax;
  text-align: justify;
  margin-top: 5%;
  height: 90%;
  overflow: auto;
}
.carousel-overlay {
  justify-content: center;
  align-content: center;
  flex-direction: column;
  display: flex;
  width: 50vw;
  padding-left: 120px;
  height: 100%;
  box-sizing: border-box;
  line-height: 4vh;
  letter-spacing: .1rem;
  /*text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
*/
}
.carousel-slide-title {
  font-size: 2.9vmax;
  padding-bottom: 6vh;
}
.carousel-slide-subtitle {
  font-size: 1.3vmax;
  font-family: "Lato";
  font-weight: bolder;
}

/*
 *
 hexagons
 *
 */
.container-hexagon {
  padding: 1%;
  width: 100%;
  height: 92vh;
  display: flex;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  border-color: transparent;
  background-color: rgba(245, 245, 245, 1);
  flex-direction: column;
}
.container-hexup {
  width: 100%;
  height: 46vh;
  display: flex;
  padding: 0;
  position: relative;
  flex-direction: row;
  justify-content: center;
  background-color: transparent;
  right: 4%;
}
.container-hexdown {
  left: 5.7%;
  width: 100%;
  height: 46vh;
  display: flex;
  padding: 0;
  position: relative;
  flex-direction: row;
  top: -8%;
  justify-content: center;
  background-color: transparent;
}
.container-hex-blue {
  color: rgba(255, 255, 255, 1);
  width: 20vw;
  height: 46vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
  background-color: transparent;
  transition: transform 1s;
}
.container-hex {
  color: rgba(51, 92, 152, 1);
  width: 20vw;
  height: 46vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
  background-color: transparent;
  margin-right: 1%;
  margin-left: 1%;
  transition: transform 1s;
}
.container-hex-blue:hover,
.container-hex:hover {
  -ms-transform: scale(1.1); /* IE 9 */
  -webkit-transform: scale(1.1); /* Safari 3-8 */
  transform: scale(1.1);
  cursor: pointer;
}
.hex-text-main {
  height: auto;
  font-size: 1.5vw;
  font-style: normal;
  text-align: justify;
  font-family: Alfa Slab One;
}
.hex-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 10% 0 10%;
}
.hex-icon {
  width: 3vw;
  height: auto;
  position: relative;
  border-color: transparent;
  margin-left: 2%;
}
.hex-text {
  max-width: 90%;
  height: auto;
  font-size: 1vw;
  font-style: normal;
  text-align: center;
  font-family: "Lato";
  font-weight: 600;
  z-index: 99;
  padding: 0 11% 0 11%;
  margin-top: 3%;
}

.hex-polygon {
  filter: drop-shadow(0 1rem 1rem rgba(0, 0, 0, 0.2));
  width: 20vw;
  height: 46vh;
  position: absolute;
}
/*
*
HEXAGON MOBILE
*
*/
.hex-mobile {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
}
.hex-mobile span {
  font-size: 26px;
}
.hex-list-mobile {
  list-style: none;
  perspective: 900;
  padding: 3px;
  margin: 0;
  display: none;
  flex-direction: column;
}
ul.hex-list-mobile li {
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0;
  margin-bottom: 10px;
  background-color: #335c98;
  color: #fff;
  padding: 6px;
  min-height: 12vh;
  justify-content: center;
  border-radius: 10px;
  filter: drop-shadow(0 1rem 1rem rgba(0, 0, 0, 0.2));
}
.white {
  background: #fff !important;
  /*border-color: #335C98 !important;
  border: solid 2px;*/
  color: #335c98 !important;
}
ul li.white i {
  background-color: #335c98;
}
ul li.white i:before,
ul li.white i:after {
  background-color: #335c98;
}
ul li:last-of-type {
  padding-bottom: 0;
}
ul li div span {
  font-size: 32px;
  height: 100%;
  display: flex;
  align-items: center;
}
ul li i {
  position: absolute;
  transform: translate(-6px, 0);
  right: 5%;
}
ul li i:before,
ul li i:after {
  content: "";
  position: absolute;
  background-color: #fff;
  width: 3px;
  height: 15px;
}
ul li i:before {
  transform: translate(-5px, 0) rotate(45deg);
}
ul li i:after {
  transform: translate(5px, 0) rotate(-45deg);
}
ul li input[type="checkbox"] {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
}
ul.hex-list-mobile li input[type="checkbox"]:checked ~ p {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  transform: translate(0, 50%);
}
ul.hex-list-mobile li input[type="checkbox"]:checked ~ div i:before {
  transform: translate(5px, 0) rotate(45deg);
}
ul.hex-list-mobile li input[type="checkbox"]:checked ~ div i:after {
  transform: translate(-5px, 0) rotate(-45deg);
}
ul.hex-list-mobile li p {
  padding: 0 5px 0 5px;
  text-align: justify;
  margin-top: 15px;
}
/*
*
PRICING
*
*/
.container-pricing {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  align-items: center;
  background: rgba(51, 92, 152, 1);
  color: white;
}

.pricing-section {
  width: 80%;
  /* max-width: 1200px; */
  padding: 4rem 2rem;
  text-align: -webkit-center;
  z-index: 1;
}
.pricing-subtitle{
  text-align: center;
  width: 90%;
  font-family: 'Lato';
  font-size: 1.5rem;
  margin-bottom: 5vh;
}
.pricing-title {
  font-weight: 100;
  color: white;
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 3rem;
  font-family: "Alfa Slab One";
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.pricing-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  width: 100%;
  min-height: 250px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.pricing-card p, .pricing-card ul { color: #666; }

.price-hex {
  background: #2a5298;
  min-width: 150px;
  min-height: 150px;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.price-amount {
  color: white;
  font-size: 2rem;
  font-weight: 100;
}

.price-title {
  color: #2a5298;
  font-size: 2rem;
  font-weight: 100;
  margin-bottom: 1rem;
  text-align: center;
}
.price-title-online {
  color: #2a5298;
  font-size: 2rem;
  font-weight: 100;
  margin-bottom: 1rem;
  text-align: center;
}

.price-features {
  font-weight: bold;
  font-family: 'Lato';
  color: #666;
  font-size: 0.9rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.price-features{
  list-style: none;
  text-align: start;
}

.price-features li {

  margin-bottom: 0.5rem;
  padding-left: 0.6rem;
  position: relative;
}

.price-features li::before {
  content: "✔";
  position: absolute;
  left: -0.5rem;
  color: #2a5298;
}

.popular-tag {
  position: absolute;
  top: 1rem;
  right: -0.5rem;
  background: #1c7c54;
  color: white;
  padding: 0.25rem 1rem;
  font-size: 0.8rem;
  border-radius: 3px;
  font-weight: 100;
  letter-spacing: .1rem;
  z-index: 2;
}
select{
  color:#666;
  border: #335c98 2px solid;
  border-radius: 10px;
  font-weight: bold;
  font-family: 'Lato';
  padding: 0.5rem;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .master-grid {
    grid-template-columns: 1fr;
  }
.pricing-section{
  width: 100%;
}

}
.container-da {
  width: 15vw;
  height: 75vh;
  display: flex;
  flex-direction: column;
  padding: 0;
  position: relative;
  align-self: auto;
  flex-shrink: 1;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 10px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}
.container-da-main {
  width: 20vw;
  height: 80vh;
  margin: 0 -2%;
  display: flex;
  flex-direction: column;
  padding: 0;
  position: relative;
  align-self: auto;
  flex-shrink: 1;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 10px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.price-polygon {
  width: 100%;
  height: 44%;
  display: flex;
  padding: 0;
  position: relative;
  justify-content: center;
  align-content: center;
  box-sizing: border-box;
  align-items: center;
  flex-shrink: 1;
  border-color: transparent;
  border-style: none;
  border-top-right-radius: 9px;
  border-top-left-radius: 9px;
}
.price-hex-online {
  position: absolute;
  height: 12vw;
  width: 80%;
}
.price-title {
  height: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(51, 92, 152, 1);
  position: relative;
  font-size: 1.8vw;
  font-style: normal;
  text-align: center;
  font-family: Alfa Slab One;
}
.price-title-online {
  height: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(51, 92, 152, 1);
  position: relative;
  font-size: 1.8vw;
  font-style: normal;
  text-align: center;
  font-family: Alfa Slab One;
}
#main-title {
  font-size: 4vw;
}
#sesiones {
  font-size: 1.1vw;
}
.price-details {
  padding: 10px 0;
  width: 100%;
  height: 45%;
  display: flex;
  position: relative;
  align-items: flex-start;
  flex-shrink: 0;
  border-color: transparent;
  justify-content: center;
  border-bottom-right-radius: 9px;
  border-bottom-left-radius: 9px;
  background-color: rgba(60, 123, 187, 1);
}

.price-text-euro {
  color: rgba(255, 255, 255, 1);
  position: relative;
  font-size: 3vw;
  font-family: Alfa Slab One;
}
#main-euro {
  font-size: 5vw;
}
.price-text-details {
  max-width: 80%;
  color: rgba(255, 255, 255, 1);
  position: relative;
  font-size: 1.1vw;
  font-family: "Lato";
  font-weight: 600;
  margin: 0 5% 0 10%;
}
.price-text-details ul li{
  list-style: none;
}
.price-text-details li::before {
  content: "✔";
  position: absolute;
  left: -0.5rem;
  color: #2a5298;
}
#main-text-details {
  font-size: 1.5vw;
}
.price-text-details ul li:not(:last-child) {
  margin-bottom: 5%;
}
.container-popular {
  width: 150px;
  height: 150px !important;
  display: flex;
  align-self: flex-end;
  position: absolute;
  overflow: hidden;
}
.container-polygon11 {
  width: 91px;
  height: 90px;
  position: relative;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.5);
}
.container-text-popular {
  color: #fff;
  top: 15px;
  position: absolute;
  display: block;
  width: 225px;
  padding: 15px 0;
  background-color: #1c7c54;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  font: 100 14px / 1 "Alfa Slab One";
  text-shadow: 0 1px 1px rgb(0 0 0 / 0.2);
  text-transform: uppercase;
  text-align: center;
  transform: rotate(45deg);
}
.price-background {
  justify-content: end;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  position: absolute;
}
.price-background-polygon {
  width: auto;
  height: 100%;
  position: absolute;
}
/*
 *
 PRICING 2
 *
*/
.container-pricing-online {
  width: 100%;
  height: 112vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  box-shadow: 0px 15px 19px 0px rgba(0, 0, 0, 0.25);
  align-items: center;
  flex-shrink: 0;
  justify-content: space-evenly;
  border-color: transparent;
  background-color: white;
  border-radius: 10px;
}
.pricing-online-title {
  color: #3c7bbb;
  height: auto;
  position: relative;
  font-size: 2.8vw;
  align-self: center;
  font-style: normal;
  text-align: justify;
  font-family: Alfa Slab One;
}
.pricing-online-subtitle {
  font-size: 1.2vmax;
  color: #3c7bbb;
  margin: 0 10vw;
  text-align: justify;
  font-family: "Lato";
  font-weight: 600;
  font-weight: bolder;
}
.card-pricing-online {
  width: 20vw;
  height: 75vh;
  display: flex;
  flex-direction: column;
  padding: 0;
  position: relative;
  align-self: auto;
  flex-shrink: 1;
  border-radius: 10px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}
.card-pricing-online .price-title-online {
  color: white;
  letter-spacing: 1px;
}
/*#basico.card-pricing-online {border: 2px solid #3C7BBB;}*/
#basico .price-polygon {
  background-color: #3c7bbb;
}
#basico .price-hex-online {
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  background-color: white;
}
#basico .price-text-euro {
  color: #3c7bbb;
}
#basico .price-details {
  background-color: white;
  color: #3c7bbb;
}
/*#basico .price-text-details{color: #3C7BBB}*/
#basico .price-title-online {
  background-color: #3c7bbb;
}

/*#oro.card-pricing-online {border: 2px solid #D4AF37;}*/
#oro .price-polygon {
  background-color: #d4af37;
}
#oro .price-hex-online {
  clip-path: circle(43% at 50% 50%);
  background-color: white;
}
#oro .price-text-euro {
  color: #d4af37;
}
#oro .price-details {
  background-color: white;
  color: #d4af37;
}
/*#oro .price-text-details{color: #D4AF37}*/
#oro .price-title-online {
  background-color: #d4af37;
}
/*#diamante.card-pricing-online {border: 2px solid #A1B5D8;}*/
#diamante .price-polygon {
  background-color: #A1B5D8;
}
#diamante .price-hex-online {
  clip-path: polygon(85% 0, 100% 25%, 50% 100%, 0 25%, 15% 0);
  background-color: white;
}
#diamante .price-text-euro {
  color: #A1B5D8;
}
#diamante .price-details {
  background-color: white;
  color: #A1B5D8;
}
/*#diamante .price-text-details{color: #A1B5D8}*/
#diamante .price-title-online {
  background-color: #A1B5D8;
}
/*#premium.card-pricing-online {border: 2px solid #1C7C54;}*/
#premium .price-polygon {
  background-color: #1c7c54;
}
#premium .price-hex-online {
  clip-path: polygon(50% 0%, 76% 25%, 100% 0, 95% 100%, 5% 100%, 0 0, 25% 25%);
  background-color: white;
}
#premium .price-text-euro {
  color: #1c7c54;
}
#premium .price-title-online {
  background-color: #1c7c54;
}
#premium .price-details {
  background-color: white;
  color: #1c7c54;
}
/*#premium .price-text-details{color: #1C7C54}*/
#premium .price-text-details,
#basico .price-text-details,
#diamante .price-text-details,
#oro .price-text-details {
  color: #3c7bbb;
}
/*
*
MASTERCLASS
*
*/
.master-section {
  width: 80%;
  /* max-width: 1200px; */
  padding: 4rem 2rem;
  text-align: -webkit-center;
  z-index: 1;
}
.master-card {
    color: #666;
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.master-card h4{
  color:#3c7bbb;
  margin-bottom: 20px
}

.master-card ul{
  margin-top: 10%;
  color: #666
}
.master-card ul li{
  text-align: left;
  margin: 10px 0;
}
.master-card p,
.master-card ul ,
.master-card h4{

  font-family: 'Lato';
  font-size: clamp(15px, 0.6vw + 9px, 18px);
  font-weight: 600;
  text-align: left;
}
.master-card h4{
  color:rgba(51, 92, 152, 1);
}
.master-title {
margin: 0;
}
.master-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  justify-items: center;
  margin-bottom: 25px;
}
.master-grid-price {

  grid-template-columns: repeat(auto-fit, minmax(200px, 0.25fr));
  place-content: center;
}
.master-grid-main{
  gap:4rem;
}
.master-text-details {
  max-width: 80%;
  color: rgba(255, 255, 255, 1);
  position: relative;
  font-size: 1.1vw;
  font-family: "Lato";
  font-weight: 600;
  margin: 0 5% 0 10%;
}
.master-text-details ul li{
  list-style: none;
}
.master-text-details li::before {
  content: "✔";
  position: absolute;
  left: -0.5rem;
  color: #2a5298;
}
/* 
 *   
  LOCATION 
 *
*/
.container-location {
  width: 100%;
  height: 92vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  align-items: center;
  flex-shrink: 0;
  border-color: transparent;
}
.location-background {
  background: linear-gradient(45deg, rgb(71, 160, 229) 50%, rgb(240, 240, 240) 50.1%);
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.location-title {
  width: 90%;
  text-align: center !important;
  color: rgba(51, 92, 152, 1);
  height: auto;
  position: relative;
  font-size: 2.8vw;
  align-self: center;
  font-style: normal;
  text-align: justify;
  font-family: Alfa Slab One;
  margin-top: 10vh;
}
.location-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}
.container-image1 {
  top: 143px;
  left: 100px;
  width: 750px;
  height: 514px;
  position: relative;
  box-sizing: content-box;
  border-color: rgba(51, 92, 152, 1);
  border-style: solid;
  border-width: 3px;
}
.container-info {
  height: 50vh;
  display: flex;
  padding: 1% 0;
  position: relative;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  align-items: flex-start;
  flex-shrink: 0;
  border-color: transparent;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  background-color: rgba(51, 92, 152, 1);
}
.location-text {
  color: rgba(255, 255, 255, 1);
  height: auto;
  font-size: 1.8vw;
  align-self: flex-start;
  font-style: normal;
  text-align: justify;
  font-family: Alfa Slab One;
  line-height: normal;
  font-stretch: normal;
  margin-right: 0;
  margin-bottom: 5%;
}
.location-text-sub {
  color: rgba(255, 255, 255, 1);
  width: 100%;
  height: auto;
  font-size: 1.1vw;
  font-style: normal;
  text-align: justify;
  font-family: "Lato";
  font-weight: 600;
}
.location-info-sub {
  width: 100%;
  height: auto;
  display: flex;
  padding: 0;
  position: relative;
  justify-content: space-between;
}
.location-map {
  height: 50vh;
  width: 46vw;
  border: none #335c98;
  border-radius: 10px;
  border-width: 5px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}
.container-local {
  display: flex;
  padding: 15px;
  position: relative;
  align-self: stretch;
  align-items: flex-start;
  border-color: transparent;
  margin-bottom: 15px;
  flex-direction: column;
  justify-content: center;
  background-color: rgba(60, 123, 187, 1);
  border-radius: 10px 10px 0 0;
}
.container-phone {
  display: flex;
  padding: 15px;
  position: relative;
  align-self: stretch;
  align-items: flex-start;
  border-color: transparent;
  margin-bottom: 15px;
  flex-direction: column;
  justify-content: center;
}
.container-horario {
  display: flex;
  padding: 15px;
  position: relative;
  align-self: stretch;
  align-items: flex-start;
  border-color: transparent;
  flex-direction: column;
  justify-content: center;
  background-color: rgba(60, 123, 187, 1);
  border-radius: 0 0 10px 10px;
}

/*
*
FOOTER
*
*/
.container-footer {
  width: 100%;
  height: auto;
  display: flex;
  padding: 0;
  position: relative;
  background-color: rgba(51, 91, 152, 1);
}
.container-footer1 {
  width: 100%;
  height: auto;
  display: flex;
  padding: 25px;
  position: relative;
  align-items: center;
  flex-shrink: 0;
  border-color: transparent;
  justify-content: space-between;
}
.container-text168 {
  color: rgba(255, 255, 255, 1);
  height: auto;
  font-size: 0.5vw;
  font-style: normal;
  text-align: left;
  font-family: "Lato";
  font-weight: 600;
  line-height: normal;
  font-stretch: normal;
  margin-bottom: 0;
}
.container-text181 {
  color: rgba(255, 255, 255, 1);
  height: auto;
  font-size: 1vw;
  align-self: auto;
  font-style: normal;
  text-align: center;
  font-family: "Lato";
  font-weight: 600;
  line-height: normal;
  font-stretch: normal;
}
.container-search-box1 {
  display: flex;
  position: relative;
  align-items: center;
  border-color: transparent;
  justify-content: flex-end;
  color: #fff;
}
.container-twitter1 {
  width: 24px;
  height: 24px;
  position: relative;
  border-color: transparent;
  margin-right: 12px;
}
.container-facebook-f1 {
  width: 24px;
  height: 24px;
  position: relative;
  border-color: transparent;
  margin-right: 12px;
}
.container-you-tube1 {
  width: 24px;
  height: 24px;
  position: relative;
  border-color: transparent;
  margin-right: 12px;
}
.container-instagram1 {
  width: 24px;
  height: 24px;
  position: relative;
  border-color: transparent;
}

.reveal {
  transform: translateY(150px);
  opacity: 0;
  transition: 1s all ease;
}
.reveal.active {
  transform: translateY(0);
  opacity: 1;
}
/**********************************************************/
.transition,
ul li i:before,
ul li i:after,
p {
  transition: all 0.25s ease-in-out;
}

.flipIn,
ul li,
h1 {
  animation: anim-lineUp 2s ease-out;
}
/*
*
CARD
*
*/
.introduccion {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #3c7bbb;
}
.introduccion h1 {
  font-size: 2.2rem;
  letter-spacing: normal;
  margin-top: 5%;
  margin-bottom: 2%;
  font-weight: 100;
}
.introduccion p {
  width: 80%;
  color: #ffe;
  font-size: 1.8rem;
  line-height: normal;
  font-weight: 100;
  font-family: "Lato";
  margin-bottom: 5%;
}
.container-calendario {
  min-height: 80vh;
  margin: 1% 5%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.container-calendario h2 {
  text-align: center;
  color: #3c7bbb;
  font-weight: 100;
  width: 100%;
  margin-top: 5%;
  margin-bottom: 5%;
  letter-spacing: 1px;
  font-size: 2rem;
}
.adaptacion {
  background-color: #47a0e5;
}
.volumen {
  background-color: #048a81;
}
.hipertrofia {
  background-color: #ff674d;
}
.definicion {
  background-color: #ffc857;
}

.card {
  min-width: 390px;
  min-height: 200px;
  display: flex;
  height: 20%;
  width: 20%;
  background-color: #f3f3f3;
  margin: 2% 0% 0% 2%;
  flex-direction: column;
  border-radius: 10px;
  justify-content: space-between;
  padding-bottom: 5px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}
.card:hover {
  -ms-transform: scale(1.1); /* IE 9 */
  -webkit-transform: scale(1.1); /* Safari 3-8 */
  transform: scale(1.1);
  cursor: pointer;
  transition: .5s;
}
.card-title-section {
  padding: 3% 0;
  color: white;
  letter-spacing: 0.03em;
  height: 30%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-start-end-radius: 10px;
  border-start-start-radius: 10px;
}
.card-title-section span {
  align-content: center;
  margin: 0% 3%;
  width: 50%;
}
.card-title {
  font-size: 1.4rem;
}
.card-subtitle {
  font-size: calc(1.4rem * 0.8);
  text-align: right;
}
.card-title-type {
  display: flex;
  flex-direction: row;
  margin: 0% 2% 0% 0%;
  align-items: center;
}
.card-middle {
  color: rgba(51, 92, 152, 1);
  display: flex;
  flex-direction: column;
}
.card-name {
  text-align: center;
  font-size: 2.4rem;
}
.card-subname {
  margin-top: 3%;
  text-align: center;
  font-size: 1.3rem;
  font-family: "Lato";
}
.card-bottom {
  color: rgba(51, 92, 152, 1);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 15%;
  text-align: center;
  margin-bottom: 1%;
}
.card-bottom span {
  font-size: 1.2rem;
  margin-right: 5%;
  font-family: "Lato";
}
.rating {
  min-width: 25px;
  min-height: 25px;
  height: 75%;
  margin: 0 1%;
  width: 5%;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid rgba(51, 92, 152, 1);
}
.rating-checked {
  background-color: rgba(51, 92, 152, 1);
}
.container-rutina {
  min-height: 80vh;
  padding: 1% 5%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  background-color: #3c7bbb;
}
table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
}

th,
td {
  padding: 1rem;
  text-align: left;
}
td {
  font-size: 1.4rem;
  border-left: #ccc solid 1px;
}
td:first-child td {
  border-left: none; /* Para que no haya bordes superiores */
}
td:nth-child(2) {
  border-left: #ccc solid 1px;
  border-radius: #ccc solid 1px;
}
td:nth-child(3) {
  column-count: 2;
  ;
}

th {
  background-color: #0056b3; /* Azul más oscuro para el encabezado */
  color: #fff;
  font-size: 2rem;
}
tr {
  font-family: "Lato";
}
tr:nth-child(even) {
  background-color: #f2f2f2; /* Color alterno para filas */
}

tr:nth-child(odd) {
  background-color: #fff;
}

textarea {
  width: 100%;
  padding: 0.5rem;
  border-radius: 5px;
  border: 1px solid #ccc;
}

ul {
  padding-left: 1.5rem;
  column-fill: balance;
}

li {
  margin-bottom: 0.5rem;
}
ol {
  padding: 0;
}
/*ul li:nth-of-type(1) {
  animation-delay: 0.5s;
}
ul li:nth-of-type(2) {
  animation-delay: 0.75s;
}
ul li:nth-of-type(3) {
  animation-delay: 1s;
}*/

@keyframes flipdown {
  0% {
    opacity: 0;
    transform-origin: top center;
    transform: rotateX(-90deg);
  }
  5% {
    opacity: 1;
  }
  80% {
    transform: rotateX(8deg);
  }
  83% {
    transform: rotateX(6deg);
  }
  92% {
    transform: rotateX(-3deg);
  }
  100% {
    transform-origin: top center;
    transform: rotateX(0deg);
  }
}
/* lineup class and keyframes */
.lineUp {
  animation: 2s anim-lineUp ease-out infinite;
}
@keyframes anim-lineUp {
  0% {
    opacity: 0;
    transform: translateY(80%);
  }
  20% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    transform: translateY(0%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
/**********************************************************/

@media (min-width: 2000px) {
.container-pricing{
  min-height: auto;
}
   
  .carousel-text-main-B {
    font-size: 7vw;
  }
  .carousel-text-main-W {
    font-size: 4vw;
  }
}
@media (max-width: 1000px) {
  .price-text-details {
    font-size: 1.7vw;
  }
  #main-text-details {
    font-size: 2vw;
  }
  #sesiones {
    font-size: 1.7vw;
  }
}
@media (max-width: 991px) {
  .price-background{
    display: none;
  }
  small {
    display: flex;
    font-size: 10px;
    justify-content: center;
  }
  .price-text-euro br {
    display: block;
  }
  .carousel-text-main-B {
    font-size: 75px;
  }
  .carousel-text-main-W {
    font-size: 48px;
  }
  #slide2 {
    background-image: url(public/playground_assets/fondo3_mobile.jpg) !important;
  }
  .navbar-toggler {
    display: block;
  }
  .navbar-toggler span,
  .navbar-toggler span:before,
  .navbar-toggler span:after {
    display: block;
  }
  .container-search-box {
    display: none;
  }

  .container-nav-links {
    visibility: visible;
    position: absolute;
    width: 100%;
    height: 0vh;
    top: 8vh;
    flex-direction: column;
    justify-content: space-evenly;
    border-top: 1px solid #444;
    border-bottom: 1px solid #444;
    background-color: rgb(255 255 255 / 90%);
    overflow: hidden;
    transition: .3s;
  }
  .container-nav-links span.container-text {
    width: 100%;
    text-align: center;
    font-size: 1.7rem;
    margin-top: 1vh;
  }
  .container-nav-links span.container-text-main {
    width: 100%;
    text-align: center;
    font-size: 2rem;
  }
  .open {
    display: flex;
    max-height: 100vh;
    height: 48vh;
    /*animation: show 1s;*/
  }
  #sliderPrev {
    left: 5px;
  }
  #sliderNext {
    right: 5px;
  }
  .carrousel-arrow {
    font-size: 5vh;
  }
  .carousel-overlay {
    width: 80vw;
    padding-left: 40px;
  }
  .carousel-slide-subtitle {
    font-size: 24px;
  }
  .carousel-slide-title {
    font-size: 30px;
  }
  .carousel-button {
    width: 35vw;
  }
  .carousel-text-main-B {
    font-size: 50px;
  }
  .carousel-text-main-W {
    font-size: 32px;
  }
  .container-hexagon {
    padding: 5vh 2vw;
    height: auto;
  }
  .container-hexdown,
  .container-hexup {
    display: none;
  }
  .hex-list-mobile {
    display: flex;
    height: 100%;
    justify-content: space-evenly;
  }
  .hex-icon {
    width: auto;
    height: 48px;
    margin-right: 2%;
  }
  .container-pricing {
    flex-direction: column;
    height: auto;
    padding: 5vh 0;
  }
  .container-pricing h2 {
    font-size: 2.8vmax;
    margin: 0 4% 3% 4%;
  }
  .pricing-title {

    font-size: 3.8vmax;
    margin-bottom: 5vh;
    letter-spacing: 0.03em;
  }
  .row {
    flex-direction: column;
    align-items: center;
  }
  .container-da {
    margin: 2vh 0;
    width: 90vw;
    height: 150px;
    flex-direction: row;
  }
  .container-da-main {
    margin: 1vh 0;
    width: 95vw;
    height: 175px;
    flex-direction: row;
  }
  .pricing-card {
    max-width: 80%;
    min-height: 150px;
  }

  .pricing-grid{
    grid-template-columns: 1fr;
  }
  .master-card h4{
    text-align: center;
  }
  .master-grid{
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .master-grid-price{
    display: flex;
    gap: 0.5rem;
  }
  .master-grid-price .pricing-card{
    padding: 1.5rem 0.2rem;
  }
  .master-grid-main{
    gap: 2rem;
  }
  .master-section{
    width: 100%;
  }
  .pricing-subtitle{
    font-size: 1rem;
    text-align: justify;
    width: 100%;
  }
  .price-hex {
    max-height: 100%;
  }

  .price-polygon {
    width: 33vw;
    height: auto;
    border-radius: 10px 0 0 10px;
  }
  .price-title {
    color: rgba(51, 92, 152, 1);
    position: relative;
    justify-content: center;
    font-size: 20px;
    z-index: 1;
  }
  .price-title-online {
    color: rgba(51, 92, 152, 1);
    height: 20px;
    width: 60vw !important;
    position: absolute;
    right: 0;
    top: 10px;
    justify-content: left;
    font-size: 20px;
    z-index: 1;
  }

  .price-details {
    width: 66vw;
    height: 100%;
    align-items: flex-start;
    justify-content: start;
    background-color: rgba(255, 255, 255, 1);
    color: rgba(51, 92, 152, 1);
    padding-top: 35px;
  }
  .price-text-euro {
    font-size: 35px;
  }
  .price-text-details {
    color: rgba(51, 92, 152, 1);
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 3vh;
  }
  .price-text-details ul li:not(:last-child) {
    margin-bottom: 5%;
  }

  #long {
    font-size: 12px;
  }
  #sesiones {
    font-size: 18px;
  }
  #main-title {
    font-size: 24px;
    height: 24px;
  }
  #main-details {
    padding-top: 45px;
  }
  #main-text-details {
    font-size: 18px;
  }
  #main-euro {
    font-size: 40px;
  }
  .container-popular {
    width: 50px;
    height: 50px !important;
    right: 0;
    top: 0%;
    justify-content: center;
  }
  .container-text-popular {
    height: 25px;
    top: 4px;
    right: -194%;
    padding: 7px 0;
    font: 100 5px / 1 "Alfa Slab One";
  }
  .container-text-popular span {
    position: relative;
    font-size: 7px;
    top: 5px;
  }

  .container-pricing-online {
    height: auto;
    padding: 5vh 0;
    flex-direction: column;
    box-shadow: none;
  }
  .pricing-online-title {
    font-size: 3.8vmax;
  }
  .pricing-online-subtitle {
    font-size: 2.2vmax;
    margin: 5vh 5vw;
  }
  .price-hex-online{
    height: 110px;
  }
  .card-pricing-online {
    margin: 3vh 0;
    width: 90vw;
    min-height: 150px;
    height: auto;
    flex-direction: row;
  }
  #basico .price-title-online,
  #oro .price-title-online,
  #diamante .price-title-online,
  #premium .price-title-online {
    font-size: 18px;
    background-color: white;
    font-weight: 100;
  }
  #premium .price-hex,
  #diamante .price-hex {
    max-height: 150px;
    min-width: 80px;
    height: -webkit-fill-available;
  }
  .card-pricing-online .price-title-online {
    color: #335c98;
  }
  .container-location {
    height: auto;
    padding: 5vh 0;
  }
  .location-content {
    flex-direction: column;
  }
  .location-text {
    font-size: 24px;
  }
  .location-text-sub {
    font-size: 15px;
  }
  .location-title {
    font-size: 5vmax;
  }
  .location-map {
    margin-top: 5vh;
    height: 40vh;
    width: 95vw;
  }
  .container-info {
    margin: 5vh 0;
    height: auto;
    width: 90vw;
  }

  .container-footer {
    height: 20vh;
  }
  .container-footer1 {
    padding: 0 2vw;
  }
  .container-text168,
  .container-text181 {
    font-size: 1vmax;
  }

  .modal-content {
    width: 80%;
  }
  .modal-content p {
    font-size: 4vw;
  }
  .modal-content h1 {
    font-size: 5vw;
  }
  .card {
    margin: 5% 0;
    min-height: 250px;
    min-width: 300px;
    width: 90%;
    padding-bottom: 1%;
  }
  .card-title {
    font-size: 1.1rem;
  }
  .card-subtitle {
    font-size: calc(1.1rem * 0.8);
  }

  .card-subname {
    font-size: calc(2rem * 0.6);
  }
  .rating {
    width: auto;
    min-width: 25px;
    min-height: 25px;
  }
}
@media (max-width: 600px) {
  .price-title {
    font-size: 24px;
  }
  .price-title-online {
    font-size: 16px;
  }
  .price-hex-online{
    height: 70px;
  }
  .price-text-euro {
    font-size: 20px;
  }
  .price-features{
    text-align: center;
  }
  ul.price-features{
    text-align: start !important;
    align-self: flex-start !important;
  }
  /*  .price-text-details {font-size: 11px; }*/
  #long {
    font-size: 12px;
    column-count: 1;
  }
  #main-euro {
    font-size: 25px;
  }
  #sesiones {
    font-size: 13px;
  }
  .card {
    min-height: 200px;
  }
  .card-name {
    font-size: 2rem;
  }
  .container-calendario {
    margin: 5% 0;
  }
  .container-rutina {
    padding: 0;
  }
  .introduccion h1 {
    margin: 30px 0;
  }
  .introduccion p {
    font-size: 1.1rem;
  }
  #tabla-rutina {
    width: 90%;
    margin: 5% 0;
  }
  #tabla-rutina th {
    font-size: 1rem;
  }
  #tabla-rutina td {
    font-size: 0.8rem;
    padding: 10px 5px;
  }
  td:nth-child(3) {
    column-count: 1;
  }
}
@media (max-width: 500px) {
  .carousel-text-main-B {
    font-size: 70px;
    right: 20px;
  }
  .carousel-text-main-W {
    font-size: 32px;
    left: 50%;
  }
  .carousel-textbox p {
    display: flex;
    flex-direction: column;
  }
  .carousel-button {
    width: 80vw;
  }
  #slide2 {
    padding-right: 0px !important;
    justify-content: unset !important;
  }
  .price-hex {
    min-width: 0;
    min-height: 0;
    height: 100px;
    width: 100px;
  }
}

/*****************************************************************************
 */

@-webkit-keyframes slideIn {
  100% {
    left: 0;
  }
}

@keyframes slideIn {
  100% {
    left: 0;
  }
}

.slideInRight {
  left: -100%;
  -webkit-animation: slideIn 1s forwards;
  animation: slideIn 1s forwards;
}

.slideInLeft {
  left: 100%;
  -webkit-animation: slideIn 1s forwards;
  animation: slideIn 1s forwards;
}

@-webkit-keyframes slideOutLeft {
  100% {
    left: -100%;
  }
}

@keyframes slideOutLeft {
  100% {
    left: -100%;
  }
}

.slideOutLeft {
  -webkit-animation: slideOutLeft 1s forwards;
  animation: slideOutLeft 1s forwards;
}

@-webkit-keyframes slideOutRight {
  100% {
    left: 100%;
  }
}

@keyframes slideOutRight {
  100% {
    left: 100%;
  }
}

.slideOutRight {
  -webkit-animation: slideOutRight 1s forwards;
  animation: slideOutRight 1s forwards;
}
.intro {
  background: #fff;
  padding: 60px 30px;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.5;
  text-align: center;
}
.intro h1 {
  font-size: 18pt;
  padding-bottom: 15px;
}
.intro p {
  font-size: 14px;
}

.action {
  text-align: center;
  display: block;
  margin-top: 20px;
}

a.btn {
  text-decoration: none;
  color: #666;
  border: 2px solid #666;
  padding: 10px 15px;
  display: inline-block;
  margin-left: 5px;
}
a.btn:hover {
  background: #666;
  color: #fff;
  transition: .3s;
  -webkit-transition: .3s;
}
.btn:before {
  font-family: FontAwesome;
  font-weight: normal;
  margin-right: 10px;
}
.github:before {
  content: "\f09b";
}
.down:before {
  content: "\f019";
}
.back:before {
  content: "\f112";
}
.credit {
  background: #fff;
  padding: 12px;
  font-size: 9pt;
  text-align: center;
  color: #333;
  margin-top: 40px;
}
.credit span:before {
  font-family: FontAwesome;
  color: #e41b17;
  content: "\f004";
}
.credit a {
  color: #333;
  text-decoration: none;
}
.credit a:hover {
  color: #1dbf73;
}
.credit a:hover:after {
  font-family: FontAwesome;
  content: "\f08e";
  font-size: 9pt;
  position: absolute;
  margin: 3px;
}
main {
  background: #fff;
  padding: 20px;
}

article li {
  color: #444;
  font-size: 15px;
  margin-left: 33px;
  line-height: 1.5;
  padding: 5px;
}
article h1,
article h2,
article h3,
article h4,
article p {
  padding: 14px;
  color: #333;
}
article p {
  font-size: 15px;
  line-height: 1.5;
}

@media only screen and (min-width: 720px) {
  main {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    padding: 24px;
  }
}

.set-overlayer,
.set-glass,
.set-sticky {
  cursor: pointer;
  height: 45px;
  line-height: 45px;
  padding: 0 15px;
  color: #333;
  font-size: 16px;
}
.set-overlayer:after,
.set-glass:after,
.to-active:after,
.set-sticky:after {
  font-family: FontAwesome;
  font-size: 18pt;
  position: relative;
  float: right;
}
.set-overlayer:after,
.set-glass:after,
.set-sticky:after {
  content: "\f204";
  transition: .6s;
}

.to-active:after {
  content: "\f205";
  color: #008080;
  transition: .6s;
}
.set-overlayer,
.set-glass,
.set-sticky,
.source,
.theme-tray {
  margin: 10px;
  background: #f2f2f2;
  border-radius: 5px;
  border: 2px solid #f1f1f1;
  box-sizing: border-box;
}
/* Syntax Highlighter*/

pre.prettyprint {
  padding: 15px !important;
  margin: 10px;
  border: 0 !important;
  background: #f2f2f2;
  overflow: auto;
}

.source {
  white-space: pre;
  overflow: auto;
  max-height: 400px;
}
code {
  border: 1px solid #ddd;
  padding: 2px;
  border-radius: 2px;
}
/*****************************************************************************
 */


/* === 0. Introducción Servicios (Página Servicios) === */
.intro-servicios {
  justify-items: center;
    text-align: center;
    padding: 4rem 2rem 2rem 2rem;
    background-color: #f9f9f9;
    color: #000000;
}
.intro-servicios .pricing-title {
    color: #3c7bbb !important; 
    font-family: 'Alfa Slab One', sans-serif;
    font-size: clamp(1.8rem, 3.8vmax, 2.8rem);
}
.intro-servicios .pricing-subtitle {
    color: #595959 !important;
    font-family: 'Lato', sans-serif;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-size: clamp(1rem, 2.5vmax, 1.2rem);
}

/* === 2. Entrenamientos Personales (Verde) (Página Servicios) === */
.container-pricing.personal {
    background: #32A94C;
}
.container-pricing.personal .price-hex {
    background-color: #32A94C;
}
.container-pricing.personal .popular-tag {
    background-color: #335C98FF;
}
.container-pricing.personal .price-amount {
    color: #FFF;
}
.container-pricing.personal .price-title {
    color: #32A94C;
}
.container-pricing.personal .price-features li::before {
    color: #32A94C;
}

/* === 3. Masterclass (Premium Tema Oscuro) (Página Servicios) === */
.container-pricing.masterclass {
    background-color: #222222;
    color: #F0F0F0;
    background-image: none;
    padding-bottom: 4rem;
}
.container-pricing.masterclass .pricing-title {
     color: #F0F0F0 !important;
     font-family: 'Alfa Slab One', sans-serif;
     font-size: clamp(1.8rem, 3.8vmax, 2.8rem);
}
.container-pricing.masterclass .pricing-subtitle {
     color: #F0F0F0 !important;
     font-family: 'Lato', sans-serif;
     font-size: clamp(1rem, 2.5vmax, 1.2rem);
}
.container-pricing.masterclass .pricing-subtitle strong {
     color: #FFD700;
}
.container-pricing.masterclass .master-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}
.container-pricing.masterclass .master-card h3,
.container-pricing.masterclass .master-card h4,
.container-pricing.masterclass .master-card p,
.container-pricing.masterclass .master-card li {
    color: #F0F0F0 !important;
    font-family: 'Lato', sans-serif;
}
.container-pricing.masterclass .master-card h3 {
     color: #FFD700 !important;
     font-family: 'Alfa Slab One', sans-serif;
     margin-bottom: 0.5rem;
}
.container-pricing.masterclass .master-card h4 {
    font-weight: bold;
    margin-bottom: 1rem;
}
.container-pricing.masterclass .master-card p {
    line-height: 1.5;
    flex-grow: 1;
}
.container-pricing.masterclass .master-text-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.container-pricing.masterclass .master-text-details li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}
.container-pricing.masterclass .master-text-details li::before {
    content: "✔";
    color: #FFD700;
    position: absolute;
    left: 0;
    top: 0;
}
.container-pricing.masterclass .master-grid-price {
    margin-top: 3rem;
}
.container-pricing.masterclass .pricing-card {
     background-color: transparent;
     border: 1px solid rgba(255, 255, 255, 0.1);
}
.container-pricing.masterclass .price-hex {
    background-color: #F0F0F0;
    border: none;
}
.container-pricing.masterclass .price-amount {
    color: #222222;
    font-family: 'Alfa Slab One', sans-serif;
}
.container-pricing.masterclass .pricing-card .price-title {
     color: #F0F0F0 !important;
     font-family: 'Lato', sans-serif;
}

/* === 4. Rediseño Tarifas Online (Página Servicios) === */
.container-pricing-online-redesign {
    background-color: #3C7BBB;
    padding: 4rem 2rem;
    text-align: center;
    color: #FFFFFF;
}
.container-pricing-online-redesign .pricing-online-title {
    color: #FFFFFF;
    font-family: 'Alfa Slab One', sans-serif;
    font-size: clamp(1.8rem, 3.8vmax, 2.8rem);
    margin-bottom: 1.5rem;
}
.container-pricing-online-redesign .pricing-online-subtitle {
    color: #F2F5F9;
    font-family: 'Lato', sans-serif;
    font-size: clamp(1rem, 2.5vmax, 1.2rem);
    max-width: 800px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}
.container-pricing-online-redesign .row {
    gap: 2rem;
    justify-content: center;
}
.online-card-redesign {
    background: #FFFFFF;
    color: #595959; 
    border-radius: 10px;
    padding: 1.5rem;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: none;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.15);
    flex-basis: 280px; 
    flex-grow: 1;
    max-width: 300px;
}
.online-title-redesign {
    color: #335C98;
    font-family: 'Alfa Slab One', sans-serif;
    font-size: 1.5rem;
    height: 2.5rem; 
    margin-bottom: 1rem;
}
.online-shape-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 150px; 
    margin-bottom: 1.5rem;
}
.online-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #3C7BBB;
    filter: none;
}
.online-price-redesign {
    position: relative;
    z-index: 2;
    color: #FFFFFF; 
    font-family: 'Alfa Slab One', sans-serif;
    font-size: 2.2rem;
}
.online-price-redesign small {
    font-size: 1rem;
    display: block;
}
.shape-basico {
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}
.shape-oro {
    clip-path: circle(43% at 50% 50%);
}
.shape-diamante {
    clip-path: polygon(85% 0, 100% 25%, 50% 100%, 0 25%, 15% 0);
}
.shape-premium {
    clip-path: polygon(50% 0%, 76% 25%, 100% 0, 95% 100%, 5% 100%, 0 0, 25% 25%);
}
.online-details-redesign {
    font-family: 'Lato', sans-serif;
    color: #595959;
    font-size: 0.9rem;
    text-align: left;
    width: 100%;
    flex-grow: 1;
}
.online-details-redesign ul {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}
.online-details-redesign li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}
.online-details-redesign li::before {
    content: "✔";
    color: #595959;
    position: absolute;
    left: 0;
    top: 0;
}
@media (max-width: 991px) {
  .container-pricing-online-redesign .row {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .online-card-redesign {
     width: 90vw;
     max-width: 400px;
     min-height: auto;
     flex-basis: auto;
  }
}

/* === 6. Sección Hero Grid Servicios (Landing Page) - LAYOUT CORREGIDO === */

/* Contenedor principal de la sección */
.services-hero-section {
    padding: 4rem 2rem;
    background-color: #f9f9f9; 
}

/* Título de la sección */
.services-hero-title-box {
    text-align: center;
    margin-bottom: 3rem; 
}
.services-hero-title {
    font-family: 'Alfa Slab One', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem); 
    color: #3c7bbb;
    margin-bottom: 1rem;
    font-weight: 400; 
}
.services-hero-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.3rem); 
    color: #595959;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* El grid (al 80% y centrado) */
.services-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr; 
    width: 80%;
    margin: 0 auto;
    gap: 2rem;
}

/* Las "Tarjetas" (cuadrantes) */
.services-quadrant {
    position: relative;
    display: flex; 
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease, filter 0.4s ease;
    border-radius: 15px;
    overflow: hidden; 
    min-height: 350px; /* Aumentamos altura mínima */
}
.services-quadrant:hover {
    transform: scale(1.03);
    filter: brightness(1.1);
}
.quad-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 1;
    transition: opacity 0.3s ease;
}
.services-quadrant:hover .quad-overlay {
    opacity: 0.9; 
}

/* Contenido de las tarjetas (Layout "Masteanor") */
.quad-content {
    position: relative;
    z-index: 2;
    color: #FFFFFF;
    text-align: center;
    padding: 2.5rem; 
    display: flex;
    flex-direction: column;
    /* --- CAMBIO: Alinear todo al centro horizontalmente --- */
    align-items: center;
    /* --- CAMBIO: Espacio entre elementos --- */
    justify-content: space-between; 
    width: 100%;
}
.quad-header {
    display: flex;
    align-items: center;
    /* --- CAMBIO: Centrado --- */
    justify-content: center;
    gap: 1.5rem;
    /* --- CAMBIO: Ancho 100% --- */
    width: 100%;
    margin-bottom: 1.5rem;
}
.quad-icon-hex {
    position: absolute;
    left: 10%;
    min-width: 70px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    font-size: 1.8rem;
    flex-shrink: 0; 
}
.quad-content h3 {
    font-family: 'Alfa Slab One', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: #FFFFFF;
    text-shadow: 0px 2px 5px rgba(0,0,0,0.6);
    font-weight: 400; 
    text-align: left; 
}
.quad-content p {
    font-family: 'Lato', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.1rem); 
    line-height: 1.5;
    color: #F0F0F0;
    text-shadow: 0px 1px 4px rgba(0,0,0,0.5);
    /* --- CAMBIO: Quitamos flex-grow --- */
    /* flex-grow: 1; */
    margin-top: 1rem;
    margin-bottom: 2rem;
    text-align: center;
    padding: 0 5%;
}
.quad-cta {
    font-family: 'Lato', sans-serif;
    font-weight: bold;
    color: #333;
    background-color: #FFFFFF;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    width: 80%; 
    box-sizing: border-box; 
    /* --- CAMBIO: Quitado align-self --- */
    /* align-self: center; */
   
}
.quad-cta:hover {
    background-color: #f0f0f0;
}

/* === Color-Coding del Hero Grid (COLORES SÓLIDOS) === */
.quad-acceso .quad-overlay { background-color: #2a5298; }
.quad-acceso .quad-icon-hex { background-color: #FFFFFF; color: #2a5298; }
.quad-acceso .quad-cta:hover { background-color: #f0f0f0; color: #2a5298; }

.quad-personal .quad-overlay { background-color: #048A81; }
.quad-personal .quad-icon-hex { background-color: #FFFFFF; color: #048A81; }
.quad-personal .quad-cta:hover { background-color: #f0f0f0; color: #048A81; }

.quad-online .quad-overlay { background-color: #3C7BBB; }
.quad-online .quad-icon-hex { background-color: #FFFFFF; color: #3C7BBB; }
.quad-online .quad-cta:hover { background-color: #f0f0f0; color: #3C7BBB; }

.quad-masterclass .quad-overlay { background-color: #222222; }
.quad-masterclass .quad-content h3 { color: #FFD700; }
.quad-masterclass .quad-icon-hex { background-color: #FFD700; color: #222222; }
.quad-masterclass .quad-content p { color: #F0F0F0; }
.quad-masterclass .quad-cta {
    background-color: #FFD700;
    color: #222222;
}
.quad-masterclass .quad-cta:hover {
    background-color: #f0c900;
}

/* Media Query para móvil */
@media (max-width: 768px) {
  .quad-icon-hex {
    position: relative;
    left: 0;
}
    .services-hero-section {
        padding: 3rem 1rem;
    }
    .services-hero-grid {
        grid-template-columns: 1fr; 
        grid-template-rows: auto;
        width: 90%; 
        min-height: auto;
        gap: 1.5rem; 
    }
    .services-quadrant {
        min-height: 250px;
    }
    .quad-header {
        /* Mantiene el layout horizontal */
        flex-direction: row; 
        justify-content: center; /* Centra el header en móvil */
        gap: 1rem;
        margin-bottom: 1rem;
    }
    .quad-content h3 {
        /* El título ahora se centra en móvil */
        text-align: center; 
    }
    .quad-content p {
        flex-grow: 0; 
        margin-top: 0.5rem;
        margin-bottom: 1.5rem;
    }
    .quad-cta {
        margin-top: auto; /* Asegura que el botón sigue al final */
    }
}