/* Fuentes Avenir (formato .ttc - TrueType Collection) */
@font-face {
  font-family: "Avenir";
  src: url("../fonts/satya-font/Avenir-Next-Condensed.ttc") format("truetype-collection");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Avenir";
  src: url("../fonts/satya-font/Avenir-Next.ttc") format("truetype-collection");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Avenir";
  src: url("../fonts/satya-font/Avenir.ttc") format("truetype-collection");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Fuentes Raleway (Variable Fonts) */
@font-face {
  font-family: "Raleway";
  src: url("../fonts/satya-font/Raleway-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 100 900;  /* Rango completo para fuente variable */
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
  src: url("../fonts/satya-font/Raleway-Italic-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 100 900;  /* Rango completo para fuente variable */
  font-style: italic;
  font-display: swap;
}
:root {

  /**
   * coloress
   */

  --white: #ffffff;
  --black: hsl(0, 0%, 0%);
  --light-brown: rgb( 132, 130, 115);
  --light-browm-2: #d8b593;
  --light-brown-3: #C7b19e;
  --maria-color: #f5f5f5;
  --katya-cons-color: #BEA392;
  --gali-color: #A2AB96;
  --regina-ivanna-color: #3f3d32;
  --danyfer-karina-color: #F6ECE5;
  --beto-color: #717076;

  --c1: #C7b19e;
  --c2: #d8b593;
  --c3: #edd9c5;
  --c4: #f3e6d7;
  --c5: #f4f0e7;
  --c6: #838170;
  --c7: #a77867;
  --c8: #442315;
  --c9: #3f3d32;
  --background:  rgb(244, 240, 231);

  /**
   * tipografia
   */

  --ff-Avenir: "Avenir", sans-serif;
  --ff-Raleway: "Raleway", sans-serif;

  --headline-lg: 5rem;
  --headline-md: 3rem;
  --headline-sm: 2rem;
  --title-lg: 1.8rem;
  --title-md: 1.5rem;
  --title-sm: 1.4rem;

  --fw-500: 500;
  --fw-700: 700;



  --section-padding: 120px;



  --shadow-1: 0px 2px 20px hsla(209, 36%, 72%, 0.2);
  --shadow-2: 0 4px 16px hsla(0, 0%, 0%, 0.06);



  --radius-circle: 50%;
  --radius-12: 12px;
  --radius-6: 6px;
  --radius-4: 4px;

  /**
   * transition
   */

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --transition-3: 1s ease;
  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.05, 0.83, 0.52, 0.97);

}


*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--ff-Avenir);
}

li {
  list-style: none;
}

a,
img,
time,
input,
button,
ion-icon {
  display: block;
}
h1,
h2,
h3,
h4 {
   letter-spacing: -0.1rem;
}
a {
  color: inherit;
  text-decoration: none;
}

img {
  height: auto;
}

input,
button {
  background: none;
  border: none;
  font: inherit;
}

input {
  width: 100%;
  outline: none;
}

button {
  cursor: pointer;
}

ion-icon {
  pointer-events: none;
}

address {
  font-style: normal;
}

html {
  font-size: 10px;
  font-family: var(--ff-Avenir);
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  font-size: 1.6rem;
  color: var(--independece);
  line-height: 1.8;
  font-family: var(--ff-Avenir);
}

body.loaded {
  overflow-y: visible;
}

body.nav-active {
  overflow: hidden;
}




.container {
  padding-inline: 16px;
  z-index: 1;
}

.headline-lg {
  font-size: var(--headline-lg);
  color: var(--white);
  font-weight: var(--fw-500);
  line-height: 1.2;
}

.headline-md {
  font-size: var(--headline-md);
  font-weight: var(--fw-700);
}

.headline-lg,
.headline-md {
  font-family: var(--ff-oswald);
}

.headline-md,
.headline-sm {
  line-height: 1.3;
}

.headline-md,
.headline-sm {
  color: var(--midnight-green);
}

.headline-sm {
  font-size: var(--headline-sm);
}

.title-lg {
  font-size: var(--title-lg);
}

.title-md {
  font-size: var(--title-md);
}

.title-sm {
  font-size: var(--title-sm);
}

.social-list {
  display: flex;
}

.section {
  padding-block: var(--section-padding);
}

.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  content: "";
  position: absolute;
}

.btn {
  background-color: var(--verdigris);
  color: var(--white);
  font-weight: var(--fw-700);
  padding: 12px 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-6);
  overflow: hidden;
}

.btn::before {
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--eerie-black);
  border-radius: var(--radius-6);
  transition: var(--transition-2);
  z-index: -1;
}

.btn:is(:hover, :focus-visible)::before {
  transform: translateX(100%);
}

.w-100 {
  width: 100%;
}

.grid-list {
  display: grid;
  gap: 40px 28px;
}

.text-center {
  text-align: center;
}

[data-reveal] {
  opacity: 0;
  transition: var(--transition-2);
}

[data-reveal].revealed {
  opacity: 1;
}

[data-reveal="bottom"] {
  transform: translateY(50px);
}

[data-reveal="bottom"].revealed {
  transform: translateY(0);
}

[data-reveal="left"] {
  transform: translateX(-50px);
}

[data-reveal="right"] {
  transform: translateX(50px);
}

[data-reveal="left"].revealed,
[data-reveal="right"].revealed {
  transform: translateX(0);
}





/*-----------------------------------*\
  #PRELOADER
\*-----------------------------------*/

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--light-brown);
  display: grid;
  place-items: center;
  z-index: 6;
  transition: var(--transition-1);
}

.preloader.loaded {
  visibility: hidden;
  opacity: 0;
}

.preloader .circle {
  width: 50px;
  height: 50px;
  border: 4px solid var(--white);
  border-radius: var(--radius-circle);
  border-block-start-color: transparent;
  animation: rotate360 1s ease infinite;
}

@keyframes rotate360 {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(1turn);
  }
}





/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header .btn {
  display: none;
}
.header-mobile {
  display: none;
  width: 100%;
  position: fixed;
  bottom: -50px;
  left: 0;
  background-color: #f5f5f5;
  align-items: center;
  height: 50px;
  box-shadow: 0 0 12px #32323269;
  max-width: 100%;
  z-index: 1000;
  grid-template-columns: repeat(4, 1fr);
  transition: all 0.5s ease;
}
.header-mobile.active {
  bottom: 0;
}
.logo-mobile{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 30px;
}
.cls-nm{
  fill: var(--white);
}
.header-mobile a{
  font-size: 32px;
  color: #2e2e2e;
}
.hmobile{
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-log{
  gap: 3px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}


.navbar-mob{
  display: none;
}
.header {
  /* position: absolute; */
  top: 0;
  left: 0;
  width: 100%;
  /* padding-block: 16px; */
  z-index: 4;
  background-color: var(--c2);
}

.header.active {
  position: fixed;
  background-color: var(--c2);
  animation: headerActive 0.5s ease forwards;
}

@keyframes headerActive {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  box-shadow: 0 0 12px #32323269;
  max-width: 100%;
  padding-inline: 46px;
}

.nav-open-btn {
  color: var(--black);
  font-size: 4rem;
}

.navbar,
.overlay {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
}

.navbar {
  left: 300px;
  max-width: 100%;
  background-color: #f3e6d7eb;
  z-index: 15;
  transition: 0.25s var(--cubic-in);
  visibility: hidden;
}

.navbar.active {
  transform: translateX(-300px);
  visibility: visible;
  transition: 0.5s var(--cubic-out);
}

.navbar-top {
  position: relative;
  display: flex;
  justify-content: center;
  height: 60px;
  padding: 10px;
  border-bottom: 1px solid #442315;
}
.logo svg{
  height: 30px;
}
.cls-logo{
  fill: #442315;
}
.nav-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  color: var(--white);
  font-size: 2.8rem;
}

.navbar-list {
  margin-block-end: 30px;
  border-block-end: 1px solid var(--white_a10);
}


.log-nav-mobile{
padding-left: 25px;
padding-bottom: 14px;
padding-top: 50px;
  font-size: 1.6rem;
  font-family: var(--ff-Raleway);
  color: #545454;
  display: flex;
  gap: 10px;
}
.navbar-link {
  color: var(--c8);
  padding: 10px 24px;
  font-weight: 300;
  transition: all 500ms ease;
}

.navbar-link:hover {
  color: var(--regina-ivanna-color);
}

.container-profile-menu {
  display: flex;

}
.cls-logo-d{
  fill: #fff;
}
.login-bolsa-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: auto;
  margin-right: unset;
  gap: unset;
}

.login-bolsa-navbar img {
  width: 20px;
}

.bolsa-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
}

.bolsa-container p {
  font-size: 12px;
}

.social-list {
  justify-content: center;
  gap: 20px;
  color: var(--black);
  font-size: 1.8rem;
}

.overlay {
  right: -100%;
  background-color: var(--black);
  opacity: 0.3;
  visibility: hidden;
  transition: var(--transition-2);
  z-index: 2;
}

.overlay.active {
  transform: translateX(-100%);
  visibility: visible;
}

/*-----------------------------------*\
  #BODY
\*-----------------------------------*/

.slide{
  width: 300px;
  height: 250px;
  overflow:hidden;
  display: flex;
  align-items: baseline;
  border-radius: 20px;
}
.sli1{
  width: 280px;
  height: 450px;
  overflow: hidden;
  border-radius: 20px;
}
.slide img{
  width: 100%;
}
.slider-container-global {
  margin-top: 50px;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}
/**
*SWIPER INDEX
*/

.swiper-container {
  width: 100%;
  padding: 10px 0;
  overflow: hidden;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: flex !important;
  justify-content: center !important;
}
.swiper-wrapper {
  display: flex;
}

.card-coach-index {
  /* Tus estilos actuales para las cards */
  height: 100%;
}

/* Estilos para las flechas de navegación */
.swiper-button-prev, 
.swiper-button-next {
  cursor: pointer;
  user-select: none;
  color: #000; /* Ajusta el color según tu diseño */
  font-size: 24px;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 767px) {
  .swiper-container {
    width: 80%;
    margin: 0 auto;
  }
}
.swiper-button-prev::after, .swiper-rtl .swiper-button-next::after {
  content: 'prev';
  color: var(--c8);
}
/* * {
  outline: solid 1px red;
} */

.swiper-slide .card{
  width: 240px;
  height: 350px;
  padding: 50px 0px;
}
.packages-slider .swiper-button-next::after{
  color: var(--c6);
}
.packages-slider .swiper-button-prev::after{
  color: var(--c6);
}
.slider-container {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.texto-uppercase {
  text-transform: uppercase;
}

.above-header {
  background-color: var(--regina-ivanna-color);
  padding-block: 5px;
}

.above-header>p {
  text-align: center;
  color: #fff;
}

.hero-banner {
  background-position: center;
  height: 100dvh;
  display: flex; 
  align-items: center;
  position: relative;
}
.bg-b{
  position: absolute;
  width: 100%;
  height: 100%;
/*  background-color: #00000057; */
  z-index: 0;
}
.hero-banner .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-banner-container {
  height: 70px;
}

.hero-banner img {
  width: 150px;
  margin: 0 auto;
}
.hero-log{
  width: 3rem;
}
.cls-log{
  fill: var(--white);
}
.hero-banner h1 {
  color: var(--white);
  font-size: 60px;
  line-height: 55px;
  font-weight: 300;
}

.hero-banner-elements {
  text-align: center;
}

.hero-banner-text-alt {
  font-family: var(--ff-higuen);
}

.reservar-btn-banner {
  color: var(--white);
  font-size: 18px;
  font-family: var(--ff-Raleway);
  font-weight: 500;
  display: flex;
  align-items: center;
  width: fit-content;
  margin-inline: auto;
  margin-top: 30px;
  transition: all 500ms ease;
}

.reservar-btn-banner:hover {
  color: var(--c9);
}

.explora-section{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-block: 15vh;
}
.loto-explora{
  width: 50px;
  margin-bottom: 30px;
}
.cls-loto-explora{
  fill: var(--c8);
}
.explora-section h3{
  text-align: center;
  font-size: 2.5rem;
  color: var(--c8);
  font-family: var(--ff-Raleway);
  line-height: 1.2;
  font-weight: 600;
}
.explora-section a{
  margin-top: 60px;
  font-size: 1.2rem;
  font-family: var(--ff-Raleway);
  font-weight: 600;
  transition: all 0.5s ease;
}
.explora-section a:hover, .explora-section a:focus{
  color: var(--c9);
}
.descripcion-section {
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 700px;
  overflow: hidden;
  position: relative;
}

.descripcion-section .container {
  width: 800px;
  position: absolute;
}

.descripcion-section img {
  width: 150px;
  margin: 0 auto;
}

.descripcion-section p {
  color: #fff;
  font-style: italic;
  text-align: center;
  font-size: 28px;
  line-height: 33px;
  font-weight: 300;
}

.descripcion-section p:last-of-type {
  font-style: normal;
  margin-top: 30px;
  font-size: 20px;
}

.desciplinas-section {
  background-color: rgb(196, 179, 162);
  position: relative;
}

.desciplinas-section .swiper-button-next::after{
  color: var(--c9);
}
.desciplinas-section .swiper-button-prev::after{
  color: var(--c9);
}
/**disciplina slide */
.card-disciplina{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.desciplinas-section h2{
  text-align: center;
  font-size: 3.2rem;
  font-weight: 600;
  font-family: var(--ff-Raleway);
  color: var(--c9);
  margin-bottom: 20px;
}
.card-disciplina h4{
  font-size: 2rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--c9);
  margin-bottom: 10px;
}
.card-disciplina-img{
  width: 250px;
  height: 340px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-disciplina-img img{
  width: fit-content;
  max-width: 120%;
  position: absolute;
}
.card-disciplina span{
  color: var(--c9);
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  margin-top: 20px;
}

.nombres-disciplinas {
  background-color: var(--maria-color);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.video {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video .text-video-container {
  position: absolute;
  top: 85%;
  left: 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.text-video-container p {
  font-size: 20px;
  color: #fff;
}

.nombres-disciplinas-container {
  position: relative;
}

.nombres-disciplinas-container h2 {
  font-weight: 500;
  font-size: 30px;
  margin-bottom: 70px;
}

.nombres-disciplinas-container ul {
  color: var(--light-brown-3);
  font-size: 50px;
}

.nombres-disciplinas-container ul li {
  width: fit-content;
  /* position: absolute; */
  font-family: var(--ff-higuen);
  margin: -20px auto;
  padding: 0;
  cursor: pointer;
  transition: all 500ms ease;
}

span {
  font-family: var(--ff-higuen);
}

.nombres-disciplinas-container ul li:hover {
  color: var(--light-brown);
  font-size: 55px;
  margin-block: -20px;
}

.nombres-disciplinas-container a {
  margin-top: 70px;
  font-size: 12px;
  font-style: italic;
  text-decoration: underline;
  color: var(--light-brown);
  font-weight: 700;
}

.coaches-section {
  margin-top: -1px;
  background-color: var(--background);
}

.coaches-section h2 {
  color: var(--c8);
  text-align: center;
  font-family: var(--ff-Raleway);
  font-weight: 600;
  font-size: 35px;
}

.active-video {
  color: var(--light-brown);
  font-size: 55px;
  margin-block: -20px;
}

.coaches-section h2 span {
  margin-left: 5px;
  font-size: 45px;
}

.coaches-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
  position: relative;
}
.swiper-button-next::after, .swiper-rtl .swiper-button-prev::after {
  content: 'next';
  color: var(--c8);
}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset,10px);
  right: auto;
  color: var(--c8);
}
.flecha-slider {
  color: var(--c8);
  font-size: 100px;
  cursor: pointer;
}

/*.  slide coaches */

.a-link{
  margin-top: 60px;
  font-size: 1.3rem;
  font-family: var(--ff-Raleway);
  font-weight: 600;
  transition: all 0.5s ease;
  text-align: center;
  color: var(--c8);
}
.a-link:hover, .a-link:focus{
  color: var(--c9);
}


.card-coach-index{
  position: relative;
  width: 250px;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-coach-index img{
  width: max-content;
  max-width: 150%;
  position: absolute;
}
.descrip-coach-index{
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  background-color: rgb(237, 231, 218);
  width: 100%;
  height: 130px;
  color: var(--c8);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
  color: var(--c8);
}
.descrip-coach-index h3{
  font-size: 1.8rem;
  font-weight: 700;
  font-family: var(--ff-Raleway);
}
.descrip-coach-index p{
  font-family: var(--ff-Raleway);
  font-size: 1.2rem;
  line-height: 1.1;
  text-align: center;
  letter-spacing: normal;
}
.card-coach-index a{
  position: absolute;
  z-index: 1;
  background-color: rgb(237, 231, 218);
  left: 5%;
  top: 51%;
  width: fit-content;
  padding: 6px 14px; 
  line-height: 1;
  border-radius: 15px;
  font-weight: 500;
  font-size: 2.3rem;
  color: var(--c8);

}

.slide p {
  position: absolute;
  top: 65%;
  left: 10%;
  color: #fff;
  font-family: var(--ff-higuen);
  font-size: 40px;
  font-weight: 400;
}

.coaches-slider-discipline {
  text-align: center;
  color: #fff;
  border: 1px solid #fff;
  width: fit-content;
  margin-inline: auto;
  margin-top: 60px;
  font-size: 30px;
  padding: 0 60px;
  border-radius: 10px;
}

.slider::-webkit-scrollbar {
  display: none;
  height: 100px;
}
 /*
.slider img {
 width: 300px;
}*/

.membresias-section {
  background-color: rgb(235, 219, 201);
}

.membresias-section h2 {
  text-align: center;
  font-size: 35px;
  font-weight: 600;
  font-family: var(--ff-Raleway);
  color: var(--c6);
}

.membresias-section h2 span {
  font-weight: 700;
}

.card {
  background-color: rgb(244, 240, 231);
  color: var(--c6);
  width: 320px;
  height: 370px;
  padding: 50px 70px;
  position: relative;
  border-radius: 20px;
  text-align: center;
  overflow: hidden;
}

.tipo-card {
  font-family: var(--ff-higuen);
  font-size: 35px;
  color: var(--light-brown-3);
  line-height: 1;
}

.numero-clases-card {
  font-size: 10rem;
  font-weight: 500;
  line-height: 0.8;
}

.clases-card {
  font-family: var(--ff-Raleway);
  font-weight: 500;
  font-size: 3.5rem;
  line-height: 1;
}
.coust{
  width: 100%;
  position: absolute;
  background: var(--c6);
  left: 0;
  bottom: 0;
  height: 140px;
  margin-top: 40px;
  color: var(--white);
}
.precio-card {
  font-weight: 400;
  font-size: 45px;
  color: var(--white);
  line-height: 1.4;
  margin-top: 23px;
}
.precio-card small{
  font-size: 1.6rem;
}

.vigencia-card {
  font-weight: 400;
  font-size: 12px;
}

.card a {
  width: fit-content;
  padding: 5px 20px;
  background-color: rgb(244, 240, 231);
  color: var(--c6);
  border-radius: 5px;
  font-size: 1.1rem;
  margin-inline: auto;
  transition: all 500ms ease;
}

.card a:hover {
  background-color: var(--c4);
}

.cards-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 70px;
}

.ver-mas-paquetes-btn {
  text-align: center;
  margin-top: 100px;
  background-color: var(--light-brown-3);
  width: fit-content;
  margin-inline: auto;
  padding: 10px 30px;
  border-radius: 5px;
  color: #fff;
  transition: all 500ms ease;
}

.ver-mas-paquetes-btn:hover {
  background-color: var(--light-browm-2);
}

.membresias-section .container {
  position: relative;
}

.icono-wa {
  width: 110px;
  position: fixed;
  top: 70%;
  left: 91%;
  filter: drop-shadow(0 5px 5px var(--gali-color));
}

.preguntas-section {
  background-color: var(--background);
}

.preguntas-container h2 {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 500;
  color: var(--c6);
}

.preguntas-container {
  margin-top: 50px;
  background: rgb(232, 226, 213);
  padding-block: 20px;
  border-radius: 20px;
  
}
.preguntas-division{
  width: 100%;
  height: 15px;
  border-bottom: 1px solid var(--c6);
  margin-bottom: 15px;
}
/* accordion */
.accordion {
  color: var(--c6);
  cursor: pointer;
  padding: 10px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 650px;
  margin-inline: auto;
  margin-top: 5px;
  font-size: 20px;
}

.accordion > p {
  text-align: center;
}

.active

/* , .accordion:hover */
  {
  border-bottom: none;
  font-weight: 500;
}

.panel {
  width: 650px;
  margin-inline: auto;
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.1s ease-out;
  color: var(--light-brown);
  border-bottom: solid var(--c6) 1px;
}

.ayuda-btn {
  background: var(--c6);
  width: fit-content;
  margin-inline: auto;
  margin-top: 70px;
  color: var(--white);
  padding: 0px 30px;
  border-radius: 7px;
  transition: all 500ms ease;
}

.ayuda-btn:hover {
  background-color: var(--c9);
  color: #fff;
}

.logo-container {
  width: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-container svg{
  width: 150px;
}

.terminos-container {
  color: #fff;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
}

.terminos-container a {
  font-size: 12px;
}
.powered-icons-container {
  display: flex;
  justify-content: end;
  align-items: end;
  flex-direction: column;
}
.powered-container {
  margin-left: -15%;
}


.powered-container p {
 display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  gap: 3px;
}
.powered-container svg{
  height: 0.99rem;
}

.icons-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icons-container svg {
  height: 15px;
}

.texto-footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


/*-----------------------------------*\
  #CLASSES PAGE
\*-----------------------------------*/

.class-section .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.texto-clases-container {
  width: 50%;
}

.video-clases-container {
  width: 50%;
  position: relative;
}

.video-clases-container>video:first-of-type {
  width: 100%;
}

.texto-video-clases-container {
  width: 50%;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.texto-clases-container h2 {
  font-size: 80px;
  font-weight: 500;
}

.texto-clases-container p {
  width: 90%;
  font-size: 25px;
  line-height: 25px;
}

.texto-clases-container a {
  width: fit-content;
  margin-top: 50px;
  font-style: italic;
  font-size: 15px;
  text-decoration: underline;
}

.barre-class {
  background-color: var(--danyfer-karina-color);
  color: var(--light-brown);
}

.yoga-class {
  background-color: var(--maria-color);
  color: var(--light-brown);
}

.pilates-class {
  background-color: var(--light-brown-3);
  color: var(--danyfer-karina-color);
}

.ballet-class {
  background-color: var(--danyfer-karina-color);
  color: var(--light-brown);
}

.sculpt-class {
  background-color: var(--maria-color);
  color: var(--light-brown);
}

/*---------*/
.cla1{
  margin-top: 100px;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cla2{
  text-transform: uppercase;
  font-size: 2.2rem;
  color: var(--c9);
}
.cla3{
  font-family: var(--ff-Raleway);
  color: var(--c9);
  font-weight: 500;
  font-size: 3.6rem;
  line-height: 1;
}
.loto-clases{
  margin-top: 10px;
  width: 50px;
}
.cls-loto-clases{
  fill: var(--c9);
}
.cla4{
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin-bottom: 100px;
  gap: 10px;
}
.cla5{
  width: 100%;
  border-radius: 15px;
  background: rgb(234, 227, 212);
  overflow: hidden;
  margin-bottom: 100px;
}
.cla6{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-block: 35px;
  padding-inline: 30px;
  color: var(--c8);
  height: 200px;
}
.cla6 h2{
  font-family: var(--ff-Raleway);
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.1;
}
.cla6 p{
  text-align: center;
  font-family: var(--ff-Raleway);
  line-height: 1.2;
  font-size: 1.6rem;
  font-weight: 400;
}
.cla7{
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cla8{
  width: 100%;
  position: absolute;
}

/*-----------------------------------*\
  #PACKS PAGE
\*-----------------------------------*/

.main-paquetes {
  background-color: rgb(232, 226, 213);
}

.main-section-paquetes h1 {
  text-align: center;
  font-family: var(--ff-Raleway);
  font-size: 50px;
  font-weight: 500;
  color: var(--c9);
}
.loto{
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 89px;
}
.loto img{
  width: 55px;
}
.inputs-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}

.inputs-container select {
  width: 100%;
  background-color: rgb(244, 240, 231);
  border: none;
  padding: 10px 15px;
  font-size: 15px;
  border-radius: 5px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("../images/svg/down.svg");
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: calc(100% - 12px) center;
  padding-right: 24px;
  outline: none;
}

.membresias-paquetes {
  margin-top: -50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);

}

.membresias-paquetes .cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

/* .inputs-container select:: */

.buscar-input-container {
  width: 100%;
  position: relative;
}

.buscar-input-container img {
  width: 20px;
  position: absolute;
  top: 15%;
  left: 85%;
}

.inputs-container input {
  background-color: rgb(244, 240, 231);
  border: none;
  border-radius: 5px;
  padding: 5px 15px;
}

.inputs-container input::placeholder {
  color: black;
  font-family: var(--ff-neue);
}

.membresias-paquetes .card:hover {
 background-color: rgb(234, 230, 221);
  color: var(--c9);
}

.membresias-paquetes .card {
  transition: all 300ms ease;
}

.membresias-paquetes .card:hover .tipo-card {
   color: var(--c9);
}

.membresias-paquetes .card:hover .numero-clases-card {
   color: var(--c9);
}



.active-tab {
  color: var(--light-brown);
}

/*-----------------------------------*\
  #ABOUT US PAGE
\*-----------------------------------*/

.banner-about-us-section {
  background-image: url("../images/contacto.jpg");
  width: 100%;
  height: 100vh;
  background-size: 110%;
  background-position: center;
}

.logo-banner-about-us-container {
  width: 350px;
  margin: 0 auto;
}

.reserva-btn-about-us {
  color: #fff;
  border: 1px solid #fff;
  border-radius: 7px;
  width: fit-content;
  padding: 1px 30px;
  margin: 0 auto;
  margin-top: -100px;
  transition: all 500ms ease;
}

.reserva-btn-about-us:hover {
  background-color: #fff;
  color: #000;
}

.banner-about-us-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.descripcion-aboutus-section {
  background-color: var(--maria-color);
}

.logo-descripcion-aboutus-container {
  width: 150px;
  margin: 0 auto;
}

.descripcion-aboutus-section p {
  color: var(--light-brown);
  margin: 0 auto;
  width: 800px;
  font-style: italic;
  text-align: center;
  font-size: 28px;
  line-height: 33px;
  margin-top: -30px;
}

.descripcion-aboutus-section p:last-of-type {
  font-style: normal;
  margin-top: 30px;
  font-size: 20px;
}

.text-side {
  background-color: var(--light-brown-3);
  color: #fff;
}

.training-for-life-section {
  display: flex;
  height: 100vh;
}

.text-side {
  width: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-side h3 {
  font-size: 30px;
  font-weight: 500;
}

.text-side h3 span {
  font-weight: 500;
}

.text-side p {
  width: 90%;
  margin-inline: auto;
  font-size: 18px;
  line-height: 23px;
  font-style: italic;
}

.image-side {
  background-image: url("../images/aboutus.png");
  width: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover  ;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.image-side p {
  font-weight: 500;
  color: #fff;
  font-size: 50px;
}

.bottom-image-side {
  background-color: var(--light-brown);
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
}
.ab0{
  margin-top: 100px;
  margin-bottom: 40px;
  margin-inline: 10vw;
}
.ab1{
  display: flex;
  flex-direction: column;
}
.ab1 span{
  color: var(--c8);
  text-transform: uppercase;
  font-family: var(--ff-Raleway);
  font-size: 2.8rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.ab1 svg{
  width: 50vw;
}
.ab2{
  margin-top: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0;
}
.ab3{
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
}
.ab4{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ab5{
  margin-block: 30px;
}
.ab5 h2{
  text-align: center;
  line-height: 1.1;
  font-size: 4.4rem;
  color: var(--c9);
  font-family: var(--ff-Raleway);
  font-weight: 500;
}
.ab5 p{
  text-align: center;
  color: var(--c9);
  font-family: var(--ff-Raleway);
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 500;
  margin-block: 20px;
}
.ab6{
  text-align: center;
  font-family: var(--ff-Raleway);
  font-weight: 400;
  margin-top: 20px;
}
.ab7{
  background: rgb(222, 212, 192);
   padding-top: 60px;
  padding-bottom: 120px;
  padding-inline: 10vw;
}
.ab8{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.ab9{
      width: 100%;
    border-radius: 15px;
    overflow: hidden;
}
.ab10{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ab11{
  margin-block: 60px;
}
.ab11 h2{
  text-align: center;
  font-size: 4.4rem;
  color: var(--c9);
  font-family: var(--ff-Raleway);
  font-weight: 500;
}
.ab11 p{
  text-align: center;
  color: var(--c9);
  font-family: var(--ff-Raleway);
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 500;
  margin-block: 20px;
}
/*-----------------------------------*\
  #CONTACT PAGE
\*-----------------------------------*/

.main-section-contacto {
  background-image: url("../images/contacto.jpg");
  width: 100%;
  height: 100vh;
  background-size: 110%;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
}

.general-form-container {
  width: 500px;
  margin: 0 auto;
}

.logo-form-container {
  background-color: var(--light-brown);
  width: 100%;
  position: relative;
  height: 50px;
  border-radius: 10px 10px 0 0;
}

.logo-form-container img {
  width: 90px;
  margin: 0 auto;
  position: absolute;
  top: -40%;
  left: 50%;
  margin-left: -10%;
}

.form-container {
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  padding: 50px 20px;
}
.contacto-logo{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  margin-top: 60px;
}
.contacto-logo svg{
  width: 200px;
}
.cls-logo-contacto{
  fill: var(--c8);
}
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

form input {
  width: 100%;
  border: 1px solid black;
  padding: 5px 10px;
  border-radius: 5px;
}

form .submit-btn {
  background-color: var(--light-brown);
  border: none;
  width: fit-content;
  margin: 0 auto;
  margin-top: 10px;
  padding: 0px 15px;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  transition: all 500ms ease;
}

form .submit-btn:hover {
  background-color: var(--katya-cons-color);
}

form textarea {
  resize: none;
  border: 1px solid black;
  padding: 5px 10px;
  border-radius: 5px;
  height: 140px;
}

.map-section {
  position: relative;
}

.map-section iframe {
  width: 100%;
  height: 70vh;
}

.map-section-bottom {
  width: 100%;
  height: 9px;
  background-color: var(--regina-ivanna-color);
  position: absolute;
  bottom: 0;
}
.cm0{
  box-shadow: 0 15px 12px 1px #0000004d; 
  border-radius: 15px; 
  overflow: hidden; 
  padding: 0
}
.cm1{
  padding: 20px 20px 120px 20px; 
  position: relative;
}
.cm2{
  text-align: center;
  margin-bottom: 20px;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.2; 
  color: var(--c8); 
  letter-spacing: 0px;
}
.cm3{
  height: 84px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  width: 100%; 
  background: rgb(217, 199, 181);
  position: absolute;
  bottom: 0;
  left: 0;
}
.cm4{
  margin-top: 0;
  color: var(--c9); 
  background: rgb(255, 253, 247); 
  padding: 0px 35px;
}

/*-----------------------------------*\
  #COACHES PAGE
\*-----------------------------------*/

.tittle-coaches{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--c9);
  margin-block: 60px;
}
.tittle-coaches h3{
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 2rem;
}
.tittle-coaches h2{
  line-height: 1;
  font-size: 3.6rem;
  font-weight: 400;
  margin-top: 10px;
}

.coach .image-side {
  width: 50%;
  background-image: none;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: baseline;
}

.coach .image-side>img {
  height: 100%;
}

.coach .text-side {
  text-align: start;
  padding: 40px;
}

.coach1 .text-side {
  background-color: var(--maria-color);
  color: var(--light-brown-3);
}

.coach .text-side h3 {
  width: 90%;
  margin: 0 auto;
  font-size: 80px;
  font-weight: 400;
}

.coach .text-side p {
  font-style: normal;
  width: 80%;
  text-align: start;
  font-size: 25px;
  margin: 0 0 0 5%;
}

.coach .text-side a:first-of-type {
  font-style: normal;
  width: fit-content;
  text-align: start;
  font-size: 15px;
  margin: 30px 0 0 5%;
  font-style: italic;
  text-decoration: underline;
}


.coach1 .discipline-coach {
  border: 1px solid var(--light-brown-3);
  width: fit-content;
  padding: 0px 60px;
  border-radius: 5px;
  font-size: 25px;
  font-weight: 400;
  margin-left: 60%;
  margin-top: 40px;
  white-space: nowrap;
  text-decoration: none;
}

.coach2 .discipline-coach {
  border: 1px solid var(--danyfer-karina-color);
  width: fit-content;
  padding: 0px 60px;
  border-radius: 5px;
  font-size: 25px;
  font-weight: 400;
  margin-left: 60%;
  margin-top: 40px;
  white-space: nowrap;
  text-decoration: none;
}

.section-coaches{
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
  justify-items: center;
}

/*-----------------------------------*\
  #LOGIN PAGE
\*-----------------------------------*/

.login-main-section {
  background-image: url("../img/fondo_login@3x.png");
  width: 100%;
  min-height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
}

.login-main-section {
  display: flex;
  align-items: center;
}

.login-form {
  background-color: rgb(255, 253, 248);
  width: 500px;
  overflow: hidden;
  position: relative;
  text-align: center;
  padding-inline: 20px;
  border-radius: 10px;
}

.login-form>img {
  width: 200px;
  margin-inline: auto;
  margin-block: -50px;
}

.login-form>h2 {
  color: var(--c8);
  font-family: var(--ff-Raleway);
  font-weight: 500;
  font-size: 3.4rem;
}

.registro-mensaje {
  font-size: 12px;
  margin-top: -15px;
  color: var(--beto-color);
}

.registro-mensaje>span {
  font-family: var(--ff-neue);
  text-decoration: underline;
  display: inline-block;
}

.login-form label {
  text-align: left;
  color: var(--beto-color);
  font-size: 15px;
  margin-left: 15px;
  margin-bottom: -10px;
}

.olv-contra {
  font-size: 12px;
  text-decoration: underline;
  margin-block: 20px;
}
.div-footer-session{
  background: rgb(222, 206, 190);
  display: flex;
  height: 80px;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.login-submit-btn {
  width: fit-content;
  background-color: rgb(255, 253, 248);
  border: none;
  font-size: 1.7rem;
  font-weight: 500;
  cursor: pointer;
  margin-inline: auto;
  color: rgb(130, 118, 108);
  border-radius: 8px;
  padding: 5px 30px;
  transition: all 500ms ease;
}

.login-submit-btn:hover {
  background-color: rgb(227, 224, 219);
}

.btn-code {
  margin-bottom: 0;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-left: 10px;
  width: 88px;
  padding: 10px;
}

/*-----------------------------------*\
  #RESERVA PAGE
\*-----------------------------------*/

.reserva-main-section {
  width: 100%;
  /* height: 200vh; */
  background-size: cover;
  padding-block: 60px;
  position: relative;
}

.reserva-main-section>.container>img {
  width: 250px;
  margin: 0 auto;
}

.reserva-main-section h1 {
  color: #fff;
  font-family: var(--ff-Raleway);
  text-align: center;
  font-size: 6.5rem;
  font-weight: 500;
  margin-top: -70px;
}
.lotoreserva{
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
.lotoreserva img{
  width: 60px;
}
.white-container {
  margin-top: 20px;
  padding: 30px 50px;
  border-radius: 20px;
  margin-bottom: 200px;
}

.my-account-link {
  color: var(--c8);
  display: flex;
  justify-content: right;
  font-weight: 400;
  font-size: 1.3rem;
}

.my-account-link a {
  width: fit-content;
}
.mess{
  line-height: 3;
  font-size: 2rem;
  font-family: var(--ff-Raleway);
  font-weight: 500;
  color: var(--c9);
}

.first-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}
.hint-flex{
  width: 100%;
}

.first-flex h2 {
  font-size: 33px;
  line-height: 1;
  text-align: center;
  font-weight: 500;
  font-family: var(--ff-Raleway);
  color: var(--c9);
}

.inputs-reserva-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.inputs-reserva-container select {
  width: 170px;
  font-size: 15px;
  background-color: #fff;
  border: 1px solid var(--beto-color);
  padding: 12px 15px;
  font-size: 15px;
  border-radius: 5px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("../images/svg/flecha-abajo.svg");
  background-color: var(--maria-color);
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: calc(100% - 12px) center;
  padding-right: 24px;
  outline: none;
}

.icono-reserva {
  width: 35px;
}

.aforo-icono {
  width: 20px;
}

.clase-en-curso-punto {
  width: 13px;
}

.second-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.icono-texto-reserva {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2px;
}

.calendar-icon-text img {
  width: 25px;
}

.calendar-icon-text {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.third-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  margin-top: 10px;
}

.third-flex>p {
  font-size: 23px;
}

.slider-calendar-container {
  display: flex;
  justify-content: center;
  align-items: last baseline;
  gap: 20px;
}

.flecha-slider-calendar {
  font-size: 40px;
  color: var(--c9);
}

.slider-items-container {
  width: 900px;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 70px;
  overflow-x: scroll;
  position: relative;
}
.bg-sd{
  width: 1000px;
  background-color: rgb(237, 231, 218);
  z-index: 0;
  height: 45px;
  position: absolute;
  bottom: 10px;
  border-radius: 15px;
}


.slider-items-container::-webkit-scrollbar {
  display: none;
}

.day-slider {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 20px;
  z-index: 1;
}

.calendar-slider-number {
  width: 95px;
  height: 40px;
  font-size: 33px;
  color: var(--c9);
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  cursor: pointer;
  transition: all 500ms ease;
}

.active-day {
  background-color: rgb(226, 217, 200);
  
}

.clases-section-container {
  margin-top: 40px;
}
.class-card{
  margin-block: 20px;
  height: 180px;
  background-color: rgb(226, 217, 200);
  border-radius: 20px;
  overflow: hidden;
}


.fecha-clase-container p {
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}
.clase-img-container{
  width: 40%;
  height: 180px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;

}
.clase-img-container img{
  width: 150px;
  position: absolute;
}
.disci-clase{
  position: absolute;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(237, 231, 218);
}
.disci-clase h3{
  font-size: 1.3rem;
  font-family: var(--ff-Raleway);
  color: var(--c8);
  text-align: center;
}

.coache-clase{
  position: absolute;
  left: 10px;
  bottom: 35%;
  z-index: 1;
  font-family: var(--ff-Raleway);
  font-size: 1.2rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 15px;
  background-color: rgb(237, 231, 218);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 90%;
}


.reservas-list{
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0;
}


.img-clase-container {
  width: 130px;
  height: 130px;
  border-radius: 10px;
  overflow: hidden;
}
.img-clase-container img {
  width: 100%;
}
.clase-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.first-flex-clase {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.ffs{
position: absolute;
  bottom: 0;
  width: 100%;
  height: 50px;
  background: var(--background);
}

.detalles-clase-container {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: -10px;
  position: relative;
}

.detalles-disciplina {
  cursor: pointer;
}

.detalles-clase-disciplina-container {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: -10px;
  position: relative;
}

.detalles-clase-container>p,
.detalles-clase-disciplina-container>p {
  font-size: 10px;
  font-weight: 500;
  color: var(--c8);
  text-transform: uppercase;
}

.iconos-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}

.aforo-container {
  display: flex;
  align-items: center;
}

.second-flex-clase {
  position: relative;
  padding: 15px;
  width: 60%;
  height: 180px;
}
.clase-horario{
  margin-top: 5px;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 500;
  color: #000;
}

.dura-clases{
  font-size: 1.1rem;
  color: #717076;
  font-weight: 400;
  
}
.clase-aforo{
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: -4px;
  font-weight: 500;
}
.clase-aforo svg{
  height: 1.2rem;
}
.clase-aforo span{
  color: #545454;
  font-size: 1.2rem;
  font-family: var(--ff-Raleway);
}
.cls-aforo{
  fill: #545454;
}
.nombrecoach-horarioclase {
  display: flex;
  gap: 70px;
  align-items: baseline;
}

.nombrecoach-horarioclase * {
  font-weight: 500;
  font-size: 1.2rem;
}

.nombrecoach-horarioclase h4 {
  margin-top: -10px;
  color: var(--beto-color);
  font-weight: 300;
}

.detalles-clase-container>img,
.detalles-clase-disciplina-container>img {
  width: 8px;
}

.nombre-coach>p {
  color: var(--light-brown);
  font-size: 30px;
  font-weight: 500;
  width: 100px;
}

.aforo-container {
  gap: 5px;
  color: var(--beto-color);
}

.aforo-container p {
  font-weight: 300;
}

.aforo-container img {
  width: 18px;
}

.disciplina-clase-container>p {
  color: var(--c9);
  margin-bottom: -10px;
  
}

.disciplina-clase-container>h3 {
  color: var(--c9);
  text-transform: capitalize;
  font-family: var(--ff-Raleway);
 margin-bottom: 15px;
  font-weight: 600;
}
.btn-reservar-clase-container{
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: end;
}
.btn-reservar-clase-container a {
  background-color: rgb(132, 130, 115);
  padding: 1px 15px;
  width: auto;
  color: #fff;
  font-family: var(--ff-Raleway);
  font-weight: 600;
  font-size: 1.2rem;
  border-radius: 6px;
  transition: all 500ms ease;
}

.btn-reservar-clase-container a:hover {
  background-color: var(--c9);
}

.logo-sencia-fin-reserva {
  width: 100px;
  margin-inline: auto;
  margin-top: -20px;
  margin-bottom: -50px;
}

.texto-fecha-din {
  font-family: var(--ff-neue);
  text-transform: uppercase;
}

.text-day-slider {
  text-transform: capitalize;
}

.detalles-clase-container {
  cursor: pointer;
  position: relative;
}

.header-details-container {
  position: relative;
  border-bottom: 1px solid var(--beto-color);
  padding-block: 5px;
}

.header-details-container h2 {
  text-align: center;
  font-weight: 500;
  font-size: 20px;
}

.header-details-container p {
  font-size: 20px;
  font-weight: 500;
  position: absolute;
  top: 15%;
  left: 90%;
  cursor: pointer;
}

.foto-coach-details-modal {
  width: 100%;
}

.nombre-coach-details-modal {
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  color: var(--light-brown);
}

.texto-coach-details-modal {
  font-size: 15px;
  text-align: center;
  line-height: 18px;
  font-weight: 300;
}

.contenido-modal-coach-container {
  padding: 20px;
}
.conf-rese{
  text-align: center;
  font-family: var(--ff-Raleway);
  color: var(--c6);
  font-size: 2.3rem;
  font-weight: 500;
}
  .class-confirm-fecha{
    width: 100%;
    height: 90px;
    background: rgb(232, 226, 213);
    border-radius: 15px;
    display: flex;
    overflow: hidden;
  } 

  .cc-horario{
    background-color: rgb(132, 130, 115);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40%;
  }
  .cc-horario h3{
    color: #fff;
    font-size: 1.1rem;
    font-weight: 300;
    text-align: center;
  }

  .cc-fecha{
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
  }

  .select-mat{
    margin-top: 30px;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .info-mat{
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-inline: 5%;
    margin-bottom: 70px;
    gap: 20px;
  }
  .mat-reser{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
   
  }
  .mat-reser p{
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--c9);
    font-family: var(--ff-Raleway);
  }
  .mat-res2{
    position: relative;
  }
  .mat-res2 span{
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.3rem;
  }
  .mat-res span{
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.3rem;
  }
  .mat-reser svg{
    height: 17px;
  }
  .cls-reser{
    fill: var(--c6);
  }


  .mat-dispo{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  .mat-dispo p{
     font-size: 1.4rem;
      font-weight: 600;
      color: var(--c9);
      font-family: var(--ff-Raleway);
  }
.mat-dispo svg{
    height: 17px;
  }
  .cls-dispo{
    fill: var(--c2);
  }

  .mat-pad{
    background: rgb(255, 251, 243);;
    box-shadow: 4px 5px 5px -2px #5050504d;
    border-radius: 10px;
    width: 100%;
    max-width: 500px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
  }

  .instructo{
    height: 200px;
    width: 4%;
    background-color: var(--c8);
  }
  .mat-elegir{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    width: 90%;
    gap: 13%;
  }
  .mat-res{
    background: var(--c2);
    position: relative;
  }
  .mat-res:hover, .mat-res:focus{
    background-color: var(--c8);
  }

  .mat-res-reservado{
    background-color: var(--c6);
  }

  .reformer{
    width: 100%;
    max-width: 500px;
    position: relative;
  }
  .select-reformer{
    width: 100%;
    position: absolute;
    z-index: 1;
    height: 100%;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 10px;
  }

  .select-reformer > :nth-child(1) { grid-column: 1; grid-row: 1; }
  .select-reformer > :nth-child(2) { grid-column: 1; grid-row: 2; }
  .select-reformer > :nth-child(3) { grid-column: 1; grid-row: 3; }
  .select-reformer > :nth-child(4) { grid-column: 1; grid-row: 4; }
  .select-reformer > :nth-child(5) { grid-column: 1; grid-row: 5; }

  .select-reformer > :nth-child(6) { grid-column: 2; grid-row: 1; }
  .select-reformer > :nth-child(7) { grid-column: 2; grid-row: 2; }
  .select-reformer > :nth-child(8) { grid-column: 2; grid-row: 3; }

  .select-reformer > :nth-child(6) svg{ 
     transform: rotate(180deg); 
    }
    .select-reformer > :nth-child(7) svg{ 
     transform: rotate(180deg); 
    }
   .select-reformer > :nth-child(8) svg{ 
     transform: rotate(180deg); 
    }

 

  .select-reformer li{

  }
  .reformer-select{
    width: 90%;
  }
  .notediv{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
  }
  .noteres{
    border: 1px solid var(--c9);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 15px;
    line-height: 1;
    font-size: 1.3rem;
    gap: 4px;
    color: var(--c9);
  }
  .cls-reformer{
    fill: var(--c2);
  }

  .cls-reformer:hover, .cls-reformer:focus{
    fill: var(--c8);
  }
  .cls-reformer-reservado{
    fill: var(--c6);
  }
  .reformer-back{
    position: relative;
    z-index: 0;
    width: 100%;
    filter: drop-shadow(4px 5px 5px #5050504d);
  }
  .cls-tapete{
    fill: rgb(255, 251, 243);
  }
  





  .confirmation-section {
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 200px;
    display: none;
  }

  .confirmation-section h2 {
    text-align: center;
    font-size: 25px;
    font-weight: 500;
  }

  .confirmation-section .elemento-clase {
    border-bottom: none;
  }

  .confirmation-section .fecha-clase-container {
    margin-bottom: -20px;
  }

  .confirmation-btns {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 20px;
  }

  .cancelar-confirmacion-reserva-btn, .confirmar-reserva-btn {
    cursor: pointer;
    text-align: center;
    background-color: var(--light-brown);
    padding: 2px 20px;
    border-radius: 5px;
    color: #fff;
    transition: all 500ms ease;
  }

  .cancelar-confirmacion-reserva-btn {
    background-color: #fff;
    border: 1px solid var(--light-brown);
    color: var(--light-brown);
  }

  .confirmar-reserva-btn:hover {
    background-color: var(--regina-ivanna-color);
  }

  .cancelar-confirmacion-reserva-btn:hover {
    background-color: var(--light-brown);
    color: #fff;
  } 

  .nota-cancelar-clase {
    text-align: justify;
    line-height: 15px;
    font-size: 13px;
    margin-top: 20px;
    color: var(--beto-color);
  }

  .nota-cancelar-clase span {
    font-family: var(--ff-neue);
    color: var(--light-brown);
    font-weight: bold;
  }

/*-----------------------------------*\
  #CLASS ONLINE
\*-----------------------------------*/
.inicio-online{
  position: relative;
  left: 0;
  transition: all 0.5s ease;
}
.eleccion-online{
  display: none;
  height: 100vh;
  overflow: auto;
  min-height: 100vh;
  position: relative;
  left: 100vw;
  transition: all 0.5s ease;

}
.class-online-select{
  display: none;
  left: 100vw;
  min-height: 100vh;
  transition: all 0.5s ease;
}
.inicio-online-active{
  left: -100vw;
}
.eleccion-online-active{
  left: 0;
}
.class-online-select-active{
  left: 0;
}
.on1{
  margin-block: 60px;
}
.on2{
  display: flex;
  align-items: center;
  justify-content: center;
}
.on2 h2{
  background: rgb(222, 212, 192);
  border-radius: 15px;
  padding: 5px 15px;
  font-size: 3.3rem;
  font-family: var(--ff-Raleway);
  font-weight: 500;
  line-height: 1;
  color: var(--c9);
}
.on3{
  margin-block: 80px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.on4{
  background: rgb(234, 227, 212);
  border-radius: 15px;
  height: 220px;
  overflow: hidden;
  transition: all 0.5s ease;
}
.on4:hover, .on4:focus{
  box-shadow: 1px 8px 12px #878787;
}
.on5{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
}
.on5 h3{
  font-size: 2.4rem;
  color: var(--c8);
  font-family: var(--ff-Raleway);
  line-height: 1;
  font-weight: 600;
}
.on6{
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.on7{
 width: 100%;
 position: absolute;
 bottom: 24px;
}


.on8{
  background: rgb(216, 198, 179);
 
}
.on9{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  overflow: auto;
  width: fit-content;
}
.on10{
  background: var(--white);
  border-radius: 20px;
  padding: 10px;
  display: flex;
  gap: 20px;
  height: 130px;
  width: 280px;
}
.on11{
  width: 40%;
  height: 100%;
  border-radius: 20px 0px 0px 20px;
  overflow: hidden;
}
.on12{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.on12b{
  width: 60%;
  position: relative;
}
.on12b h3{
  font-size: 2rem;
  font-family: var(--c9);
  text-align: center;
  font-weight: 400;
}
.on12b p{
  line-height: 1;
  text-align: justify;
  font-size: 1.1rem;
  color: var(--c9);
  font-family: var(--ff-Raleway);
}
.on13{
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  bottom: 0;
}
.on14{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.on15{
  color: #dfaf63;
  font-size: 1.1rem;
}
.on15b{
  color: #c1c1c1;
  font-size: 1.1rem;
}
.on13 span{
  font-size: 1rem;
}
.on16{
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin-top: 40px;
}
.on17{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-block: 30px;
}

.on18{
  border-radius: 25px;
  overflow: hidden;
  width: 70%;
  position: relative;
  transition: all 0.5s ease;
}
.on17:hover .on18, .on17:focus .on18{
 width: 80%;
}
.on19{
  width: 100%;
}
.on20 h3{
  color: var(--c9);
  font-weight: 500;
  font-size: 2.1rem;
  font-family: var(--ff-Raleway);
}

/*----------------------*/
.on21{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  
}
.searclass::placeholder{
  text-align: center;
  color: #000;
  font-family: var(--ff-Raleway);
}

/*-----class card-------*/
.show-class{
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
}
.class-online{
  margin-block: 20px;
  border-radius: 20px;
  padding: 10px;
}
.class-online-sel{
  margin-block: 20px;
  border-radius: 20px;
  padding: 10px;
}
.class-online:hover, .class-online:focus{
  background: rgb(231, 226, 215);
}
.preview-class-vid{
  width: 100%;
  height: 55vw;
  max-height: 500px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}
.preview-class-vid video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.btnplay{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.btnplay svg{
  width: 40px;
}
.cls-boton-online{
  fill: #ffffffab;
}
/* Estados para iOS */
.btnplay.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Específico para iOS */
@supports (-webkit-touch-callout: none) {
    .preview-class-vid {
        -webkit-tap-highlight-color: transparent;
    }
   
    
    #videoClase {
        -webkit-transform: translateZ(0); /* Force hardware acceleration */
    }
}

.descripcion-online{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.info-on{
  margin-top: 15px;
}
.info-on h3{
  font-family: var(--ff-Raleway);
  line-height: 1;
  color: var(--c8);
  font-size: 2.4rem;
  font-weight: 600;
}
.inf-class{
  display: flex;
  align-items: center;
  gap: 6px;
}
.inf-class p{
  font-weight: 500;
  font-size: 1.5rem;
}
.time-on{
  display: flex;
  align-items: center;
  gap: 3px;
  font-family: var(--ff-Raleway);
  color: var(--c9);
  font-size: 1.3rem;
}
.time-on svg{
  height: 1.3rem;
}
.time-svg{
  fill: #717076;
}
.like-online{
  height: fit-content;
}
.like-online svg{
  width: 1.6rem;
}
.like-btn {
    background: none;
}

.heart-icon {
    transition: transform 0.2s ease;
}

.like-btn:hover .heart-icon {
    transform: scale(1.1);
}

/*-------------profile class-----*/

.online-section{
  margin-bottom: 60px;
}
.co1{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
}
.button-online-class{
  display: flex;
  background: rgb(132, 130, 115);
  width: 100%;
  height: 40px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-transform: uppercase;
  gap: 6px;
  font-size: 1.4rem;
}
.button-online-class span{
  line-height: 1;
  margin-top: 3px;
}
.button-online-class .heart-icon{
  width: 15px;
}
.button-online-class .heart-icon path{
  fill: var(--white);
}
.complete-class{
  width: 15px;
  height: 15px;
  border: 1px solid var(--white);
  border-radius: 50%;
}
.compleet{
  background: green;
  border: none;
}
.progress{
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 7%;
}
.progress-bar{
  background: #7fff658a;
  height: 100%;
}
.co2{
  padding: 10px;
}
.co2 p{
  line-height: 1.1;
  text-align: justify;
  color: #2e2e2e;
  font-family: var(--ff-Raleway);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 15px;
}
.co2 span{
  font-size: 1.5rem;
  font-weight: 500;
  text-transform: uppercase;
}
.co3{
  background: rgb(231, 226, 213);
  border-radius: 15px 15px 0 0;
  padding: 15px;
}
.co4{
  border-bottom: 1px solid var(--black) ;
  margin-bottom: 50px;
}
.co4 p{
  font-size: 1.4rem;
  padding: 0px 0 10px 10px;
  font-family: var(--ff-Raleway);
}
.co5{
  display: flex;
  gap: 11px;
  height: 95px;
  max-height: 200px;
  border-radius: 15px;
  margin-bottom: 40px;
}
.co5:hover, .co5:focus{
  background: rgb(224, 219, 207);
}
.co6{
  width: 60%;
  max-width: 400px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}
.co7{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.co8{
  width: 60%;
}
.co8 h3{
  font-family: var(--ff-Raleway);
  font-weight: 500;
  color: var(--c8);
  line-height: 1;
  margin-top: 5px;
}
.co8 p{
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1;
  color: var(--c9);
  display: -webkit-box;
    -webkit-line-clamp: 4;    
    -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cautivo{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  backdrop-filter: blur(4px);
  background: #ffffff82;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
}
.cau1{
  padding: 10px;
  background: #fff;
  border-radius: 15px;
  width: 80%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cau1 h2{
  font-size: 2rem;
  text-align: center;
  font-family: var(--ff-Raleway);
  font-weight: 600;
  color: var(--c9);
}
.cau1 p{
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.2;
  font-weight: 500;
  color: var(--c9);
  margin-top: 10px;
}
.cau1 a{
  text-align: center;
  background: var(--c1);
  border-radius: 10px;
  color: var(--white);
  font-size: 1.4rem;
  margin-top: 30px;
  width: 100%;
  max-width: 300px;
}
.cau1 a:hover,.cau1 a:focus{
  background-color: var(--c2);
}
/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/


.footer {
  background-color: var(--c2);
  position: relative;
  max-height: 500px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .footer .container {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  margin-top: -15%;
  margin-left: -40%;
} */

.footer video {
  width: 100%;
  margin-top: -120px;
}

.footer-top {
  display: grid;
  gap: 40px;
  padding-block-end: 60px;
}

.footer-brand {
  background-color: var(--ming);
  padding: 32px;
  border-radius: var(--radius-6);
}

.footer .logo {
  margin-block-end: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-block-start: 12px;
}

.contact-item .item-icon {
  font-size: 4rem;
}

.contact-link {
  display: inline;
  transition: var(--transition-1);
}

.contact-link:is(:hover, :focus-visible) {
  color: var(--verdigris);
}

.footer-list-title {
  color: var(--white);
  font-weight: var(--fw-700);
  margin-block-end: 20px;
}

.footer .text {
  opacity: 0.7;
}

.footer .address {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-block-start: 20px;
}

.footer .address ion-icon {
  font-size: 4rem;
  flex-shrink: 0;
}

.footer-link {
  margin-block-start: 8px;
  transition: var(--transition-1);
}

.footer-link:is(:hover, :focus-visible) {
  color: var(--verdigris);
}

.footer-form .input-field {
  color: var(--white);
  border: 1px solid var(--white_a20);
  border-radius: var(--radius-4);
  padding: 8px 20px;
}

.footer-form .input-field::placeholder {
  color: inherit;
}

.footer-form .btn {
  width: 100%;
  justify-content: center;
  margin-block: 12px 28px;
}

.footer-bottom {
  padding-block: 32px;
  border-block-start: 1px solid var(--white_a20);
}

.footer-bottom .social-list {
  justify-content: flex-start;
  gap: 8px;
  margin-block-start: 16px;
}

.footer-bottom .social-link {
  font-size: 1.4rem;
  padding: 12px;
  background-color: var(--white_a10);
  border-radius: var(--radius-circle);
  transition: var(--transition-1);
}

.footer-bottom .social-link:is(:hover, :focus-visible) {
  background-color: var(--verdigris);
}







/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 50px;
  right: 10px;

  z-index: 3;
}

.back-top-btn img {
  width: 70px;
  filter: drop-shadow(0 5px 5px var(--beto-color));
}

.back-top-btn:is(:hover, :focus-visible) {
  background-color: var(--eerie-black);
}

.back-top-btn.active {
  transform: translateY(-10px);
  opacity: 1;
}





/*-----------------------------------*\
  #MEDIA 
\*-----------------------------------*/
@media (max-width: 767px){
  .header{
    display: none;
  }
  .navbar-mob{
    display: block;
  }
  .header-mobile{
    display: grid;
  }
}
@media (min-width: 499px){
  .reservas-list{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 767px) {
  .reservas-list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .class-card{
    height: 230px;
  }
  .clase-img-container{
    height: 230px;
  }
  .my-account-link{
    font-size: 1.6rem;
  }
  .cc-horario h3 {
    font-size: 2rem;
  }
  .info-mat {
    gap: 20%;
  }
  .mat-dispo p {
    font-size: 1.9rem;
  }
  .mat-reser p {
    font-size: 1.9rem;
  }
  .explora-section h3 {
    font-size: 4.5rem;
  }
  .explora-section a {
    font-size: 1.6rem;
  }
  .a-link {
     font-size: 1.6rem;
  }
  .cla4{
    grid-template-columns: repeat(2, 1fr);
  }
  .ab1 svg{
    width: 20vw;
  }
  .ab2{
    flex-direction: row;
    gap: 60px;
  }
  .ab8{
    flex-direction: row-reverse;
    gap: 60px;
  }
  .show-class{
    grid-template-columns: repeat(2, 1fr);
    gap: 5%;
  }
  .on4{
    height: 35vw;
  }
  .co5{
    height: 25vw;
  }
  .co8 p{
    font-size: 1.5rem;
    -webkit-line-clamp: 6;
  }
}
@media (min-width: 999px) {
  .cla6{
    height: 100px;
  }
  .cla7{
    height: 450px;
  }
  .show-class{
  grid-template-columns: repeat(3, 1fr);
  gap: 5%;
}
}
@media (max-width: 768px){

  .slider {
    display: flex;
    width: 843px;
    overflow: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-block: 50px;  
  }
  
  .slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari y Opera */
  }
  
  .slide {
    position: relative;
    flex: 0 0 33.3333%;
    scroll-snap-align: center;
    text-align: center;
    /* padding: 10px; */
    box-sizing: border-box;
    transition: transform 0.3s;
  }
  
  /* Primer y último slide centrados */
  .slide:first-child {
    margin-left: calc(33.3333%);
  }
  .slide:last-child {
    margin-right: calc(33.3333%);
  }
  
  .slide.center {
    transform: scale(1.2);
  }
  .fd {
    font-size: 40px;
    position: absolute;
    right: 10px;
    z-index: 100;
    height: 200px;
    display: flex;
    align-items: center;
    width: 40px;
    justify-content: center;
  }
  .fi {
    font-size: 40px;
    position: absolute;
    left: 10px;
    z-index: 100;
    height: 200px;
    display: flex;
    align-items: center;
    width: 40px;
    justify-content: center;
  }
 
}
@media (min-width: 300px) and (max-width: 399px) {
  :root {
    --headline-lg: 8rem;
    --headline-md: 4.8rem;

  }

  dialog {
    top: 50%;
    left: 0;
    right: 0;
    margin-inline: auto;
    padding: 25px 10px 10px 10px;
    border: none;
    border-radius: 10px;
    box-shadow: 5px 5px 10px 3px var(--beto-color);
    z-index: 2;
  }
  
  dialog > p {
    position: absolute;
    top: 0;
    left: 85%;
    font-size: 20px;
    cursor: pointer;
  }
  
  dialog > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  dialog .icono-texto-reserva {
    justify-content: left;
    align-items: center;
  }

  .hint-flex {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .hint-flex svg {
    width: 25px;
    /* margin-block: auto; */
  }



  .header{
    display: none;
  }


  .logo img{
    filter: invert(1);
    width: 20px;
  }

  .container {
    max-width: 750px;
    width: 100%;
    margin-inline: auto;
  }

  .section {
    padding-block: 24px;
  }

  .header .btn {
    display: block;
  }

  .nav-open-btn {
    margin-inline-start: 3px;
  }

  .login-bolsa-navbar {
    justify-content: end;
    gap: 15px;
  }

  .header .container {
    gap: 40px;
    padding-inline: 5px;
  }



  /* BODY */

  /* INICIO INDEX PAGE */

  .hero-banner {
    background-repeat: no-repeat;
    background-position: 60%;
    background-size: cover;
    height: 100vh;
  }

  .hero-banner h1 {
    font-size: 35px;
    line-height: 35px;
  }

  .descripcion-section p {
    font-size: 15px;
    line-height: 17px;
    margin-top: -40px;
  }

  .descripcion-section p:last-of-type {
    font-size: 12px;
    margin-bottom: 50px;
  }


  .nombres-disciplinas-container {
    position: relative;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .nombres-disciplinas-container ul {
    font-size: 40px;
  }

  .nombres-disciplinas-container ul li {
    position: absolute;
  }

  .active-video {
    font-size: 45px;
  }

  .header .container {
    height: 59px;
    padding-inline: 10px;
  }

  #barre {
    top: 30%;
    left: 0;
    right: 0;
    margin-inline: auto;
  }

  #sculpt {
    top: 40%;
    left: 0;
    right: 0;
    margin-inline: auto;
  }

  #pilates {
    top: 50%;
    left: 0;
    right: 0;
    margin-inline: auto;
  }

  #yoga {
    top: 60%;
    left: 0;
    right: 0;
    margin-inline: auto;
  }

  #ballet {
    top: 70%;
    left: 0;
    right: 0;
    margin-inline: auto;
  }

  .nombres-disciplinas-container ul li:hover {
    font-size: 45px;
  }

  .nombres-disciplinas-container h2 {
    margin-top: 50px;
    margin-bottom: 40px;
  }

  .nombres-disciplinas-container a {
    margin-top: 40px;
    margin-bottom: 50px;
  }

  .video img {
    height: 120%;
    object-fit: cover;
  }

  .text-video-container {
    left: 0!important;
    right: 0;
    margin-inline: auto;
    justify-content: center!important;
  }

  .text-video-container p {
    font-size: 13px;
  }

 

  .coaches-section h2 {
    font-size: 30px;
    line-height: 30px;
    margin-top: 50px;
  }

  .flecha-slider {
    font-size: 40px;
  }

  .slide p {
    top: 65%;
    font-size: 30px;
  }

  

  .membresias-section h2 {
    font-size: 30px;
    line-height: 30px;
    margin-top: 50px;
  }

  .cards-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

 

  .tipo-card {
    width: 100%;
  }

  .ver-mas-paquetes-btn {
    margin-top: 20px;
  }

  .preguntas-section h2 {
    line-height: 35px;
  }

  .accordion {
    width: 100%;
    font-size: 14px;
    line-height: 14px;
    /*     text-align: center; */
  }

  .panel {
    width: 100%;
    font-size: 15px;
    line-height: 15px;
  }

  .ayuda-btn {
    margin-top: 20px;
  }

  .back-top-btn img {
    width: 70px;
  }


  .texto-footer-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
  }

  .powered-container {
    margin: 0;
  }

     .navbar-link {
    color: var(--c8);
    font-size: 2.3rem;
    font-weight: 500;
    padding: 2px 24px;
  }

  .header.active {
   background-color: var(--c2);
  }

  
  .flecha-slider {
    font-size: 40px;
  }

  .slide p {
    top: 70%;
    font-size: 30px;
  }

  .slider img {
    width: 290px;
  }
  /* Primer y último slide centrados */
 
  
  /* .slide.center {
    transform: scale(1.2);
  } */

  /* FIN INDEX PAGE */

  /* INICIO ABOUT US PAGE */

  .banner-about-us-section {
    background-repeat: no-repeat;
    background-position: 60%;
    background-size: cover;
    height: 70vh;
  }

  .descripcion-aboutus-section p {
    font-size: 14px;
    line-height: 17px;
    width: 100%;
  }

  .descripcion-aboutus-section p:last-of-type {
    font-size: 12px;
  }

  .training-for-life-section {
    display: grid;
  }

  .image-side {
    grid-row: 1 / 2;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .text-side {
    width: 100%;
  }

  .image-side p {
    font-size: 25px;
  }

  .text-side h3 {
    font-size: 25px;
  }

  .text-side p {
    font-size: 15px;
    line-height: 17px;
  }

  .logo-container {
    width: 100%;
  }

  .logo-container img {
    width: 100%;
  }

  .logo-banner-about-us-container {
    width: 100%;
  }

  /* FIN ABOUT US PAGE */

  /* INICIO CLASES PAGE */

  .class-section .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
  }

  .texto-clases-container {
    width: 100%;
  }

  .texto-clases-container h2 {
    width: 100%;
    text-align: center;
    line-height: 60px;
    margin-block: 20px;
  }

  .texto-clases-container p {
    width: 100%;
    font-size: 20px;
    text-align: justify;
  }

  .texto-clases-container a {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    margin-inline: auto;
  }

  .video-clases-container {
    width: 100%;
    margin-top: 20px;
  }

  .texto-video-clases-container {
    width: fit-content;
    gap: 10px;
    margin: 10px auto;
  }

  .video-clases-container>img:last-of-type {
    width: 70px;
    height: 70px;
    margin-left: -10%;
    margin-top: -17%;
  }

  /* FIN CLASES PAGE */

  /* INICIO PAQUETES PAGE */

  .main-section-paquetes h1 {
    line-height: 50px;
    margin-top: 80px;
  }



  .buscar-input-container,
  #clases-input,
  #disciplina-input {
    width: 100%;
  }

  .buscar-input-container img {
    left: 88%;
  }

  .membresias-paquetes .cards-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .membresias-paquetes .card {
    width: 100%;
  }

  .membresias-paquetes {
    display: flex;
    justify-content: center;
    align-items: center;
  }


  /* FIN PAQUETES PAGE */

  /* INICIO COACHES PAGE */

  .coach .image-side {
    width: 100%;
    height: 100%;
  }

  .coach .image-side>img {
    object-fit: cover;
    width: 100%;
  }

  .coach .text-side h3 {
    text-align: center;
    font-size: 50px;
  }

  .coach .text-side p {
    text-align: center;
    width: 100%;
    margin: 0;
    font-size: 15px;
  }

  .coach {
    height: 100%;
  }

  .coach .text-side {
    height: fit-content;
    height: 100%;
  }


  .coach .text-side a {
    text-align: center;
    margin: 20px auto 0 auto;
  }

  .coach .discipline-coach {
    margin: 0 auto;
    margin-top: 40px;
  }

  .coach .text-side a:first-of-type {
    text-align: center;
    margin-inline: auto;
  }

  /* FIN COACHES PAGE */

  /* INICIO CONTACT PAGE */

  .general-form-container {
    width: 100%;
  }

  .main-section-contacto {
    background-size: cover;
  }

  /* FIN CONTACT PAGE */

  /* INICIO LOGIN PAGE */

  .login-form {
    width: 100%;
  }

  /* FIN LOGIN PAGE */

  /* INICIO RESERVA PAGE */
  .reserva-main-section .container {
    padding-inline: unset;
  }

  .reserva-main-section>.container>img {
    width: 150px;
  }

  .reserva-main-section h1 {
    font-size: 40px;
  }

  .first-flex {
    display: block;
  }

  .first-flex h2 {
    font-size: 35px;
    text-align: center;
  }

  .inputs-reserva-container select {
    font-size: 12px;
    background-size: 10px;
  }

 

  .second-flex {
    display: none;
  }

  .nombrecoach-horarioclase {
    display: block;
  }

  .nombrecoach-horarioclase>h3 {
    font-size: 13px;
  }



  .iconos-container {
    margin-top: 0;
  }

  .white-container {
    padding: 30px;
  }

  .calendar-slider-number {
    width: 45px;
    height: 45px;
    font-size: 23px;
  }

  .text-day-slider {
    font-size: 18px;
  }
  .bg-sd{
  height: 50px;
  }

  .slider-items-container {
    gap: 7%;
  }

  .flecha-slider-calendar {
    font-size: 20px;
  }

  .slider-calendar-container {
    gap: 10px;
  }

  .modal-detalles-coach {
    width: 100%;
    height: 80vh;
    margin-block: auto;
    background-color: #fff;
    position: fixed;
    left: 0;
    border-radius: 20px 20px 0 0;
    display: none;
    z-index: 999;
    bottom: -100%;
  }

  .modal-detalles-disciplina {
    width: 100%;
    height: 80vh;
    margin-block: auto;
    background-color: #fff;
    position: fixed;
    left: 0;
    border-radius: 20px 20px 0 0;
    z-index: 999;
    bottom: -100%;
  }

  .contenido-modal-disciplina-container {
    color: var(--light-brown);
  }

  .nombre-disciplina-details-modal {
    display: block;
    font-size: 50px;
    font-family: var(--ff-higuen);
    text-align: center;
  }

  .texto-disciplina-details-modal {
    display: block;
    text-align: center;
    font-size: 18px;
    width: 90%;
    line-height: 23px;
    margin: 0 auto;
  }

  .descripcion-section {
    max-height: 400px;
  }

  .descripcion-section .container {
    width: 100%;
  }

  .video-index-texto {
    margin-top: 35%;
    width: 100% !important;
    height: 100%;
    margin-left: -50%;
    transform: rotate(90deg);
  }

  .header-details-container {
    position: relative;
    border-bottom: 1px solid var(--beto-color);
    padding-block: 5px;
  }

  .header-details-container h2 {
    text-align: center;
    font-weight: 500;
    font-size: 20px;
  }

  .header-details-container p {
    font-size: 20px;
    font-weight: 500;
    position: absolute;
    top: 15%;
    left: 90%;
  }

  .foto-coach-details-modal {
    width: 100%;
  }

  .nombre-coach-details-modal {
    text-align: center;
    font-size: 30px;
    font-weight: 500;
    color: var(--light-brown);
  }

  .texto-coach-details-modal {
    font-size: 15px;
    text-align: center;
    line-height: 18px;
  }

  .contenido-modal-coach-container,
  .contenido-modal-coach-container {
    padding: 20px;
  }

  .bg-opacity-modals {
    width: 100%;
    height: 100vh;
    background-color: #000;
    position: fixed;
    opacity: 0.4;
    inset: 0;
    z-index: 100;
    display: none;
  }


  /* FIN RESERVA PAGE */

  /*
   * FOOTER
   */

  
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

 

  .footer video {
    margin-top: 35%;
    width: 200%;
    margin-left: -50%;
    transform: rotate(90deg);
  }

  .footer-brand {
    grid-column: 1 / 3;
  }

  .contact-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-bottom .social-list {
    margin-block-start: 0;
  }

}

@media (min-width: 400px) and (max-width: 767px) {
  :root {
    --headline-lg: 8rem;
    --headline-md: 4.8rem;

  }

  .container {
    max-width: 750px;
    width: 100%;
    margin-inline: auto;
  }

  dialog {
    top: 50%;
    left: 0;
    right: 0;
    margin-inline: auto;
    padding: 25px 10px 10px 10px;
    border: none;
    border-radius: 10px;
    box-shadow: 5px 5px 10px 3px var(--beto-color);
    z-index: 2;
  }
  
  dialog > p {
    position: absolute;
    top: 0;
    left: 85%;
    font-size: 20px;
    cursor: pointer;
  }
  
  dialog > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  dialog .icono-texto-reserva {
    justify-content: left;
    align-items: center;
  }

  .hint-flex {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
  }

  .hint-flex svg {
    width: 25px;
    /* margin-block: auto; */
  }

  .section {
    padding-block: 44px;
  }
    .header{
        display: none;
    }


  .nav-open-btn {
    margin-inline-start: unset;
  }

  .login-bolsa-navbar {
    justify-content: end;
    gap: 15px;
  }

  .header .container {
    gap: 40px;
    height: 59px;
    padding-inline: 5px;
  }

  /* BODY */

  /* INICIO INDEX PAGE */
  .hero-banner {
    background-repeat: no-repeat;
    background-position: 60%;
    background-size: cover;
  }
  

  .hero-banner h1 {
    font-size: 35px;
    line-height: 35px;
  }

  .descripcion-section p {
    font-size: 15px;
    line-height: 17px;
    margin-top: -40px;
  }

  .descripcion-section p:last-of-type {
    font-size: 12px;
    margin-bottom: 50px;
  }

  

  .nombres-disciplinas-container {
    position: relative;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

 

  .nombres-disciplinas-container ul {
    font-size: 40px;
  }

  .nombres-disciplinas-container ul li {
    position: absolute;
  }

  .active-video {
    font-size: 45px;
  }

  #barre {
    top: 30%;
    left: 0;
    right: 0;
    margin-inline: auto;
  }

  #sculpt {
    top: 40%;
    left: 0;
    right: 0;
    margin-inline: auto;
  }

  #pilates {
    top: 50%;
    left: 0;
    right: 0;
    margin-inline: auto;
  }

  #yoga {
    top: 60%;
    left: 0;
    right: 0;
    margin-inline: auto;
  }

  #ballet {
    top: 70%;
    left: 0;
    right: 0;
    margin-inline: auto;
  }

  .nombres-disciplinas-container ul li:hover {
    font-size: 45px;
  }

  .nombres-disciplinas-container h2 {
    margin-top: 50px;
    margin-bottom: 40px;
  }

  .nombres-disciplinas-container a {
    margin-top: 40px;
    margin-bottom: 50px;
  }

  .video img {
    height: 120%;
    object-fit: cover;
  }

  .text-video-container {
    left: 0!important;
    right: 0;
    margin-inline: auto;
    justify-content: center!important;
  }

  .text-video-container p {
    font-size: 15px;
  }

  

  .coaches-section h2 {
    font-size: 35px;
    line-height: 35px;
    margin-top: 50px;
  }

  .flecha-slider {
    font-size: 40px;
  }

  .slide p {
    top: 70%;
    font-size: 30px;
  }

  .slider img {
    width: 290px;
  }

  .membresias-section h2 {
    line-height: 35px;
    margin-top: 50px;
  }

  .cards-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .ver-mas-paquetes-btn {
    margin-top: 20px;
  }

  .preguntas-section h2 {
    line-height: 35px;
  }

  .accordion {
    width: 100%;
    font-size: 14px;
    line-height: 14px;
    /*     text-align: center; */
  }

  .panel {
    width: 100%;
    font-size: 15px;
    line-height: 15px;
  }

  .ayuda-btn {
    margin-top: 20px;
  }

  .back-top-btn img {
    width: 60px;
  }

  .back-top-btn {
    right: 0px;
  }

 .texto-footer-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
  }

  .powered-container {
    margin: 0;
  }

  .navbar-link {
    color: var(--c8);
    font-size: 2.3rem;
    font-weight: 400;
  }

  .social-list {
    color: var(--black);
  }

  .header.active {
    background-color: var(--c2);
  }

  /* FIN INDEX PAGE */

  /* INICIO ABOUT US PAGE */

  .banner-about-us-section {
    background-repeat: no-repeat;
    background-position: 60%;
    background-size: cover;
    height: 70vh;
  }

  .descripcion-aboutus-section p {
    font-size: 14px;
    line-height: 17px;
    width: 100%;
  }

  .descripcion-aboutus-section p:last-of-type {
    font-size: 12px;
  }

  .training-for-life-section {
    display: grid;
  }

  .image-side {
    grid-row: 1 / 2;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .text-side {
    width: 100%;
  }

  .image-side p {
    font-size: 25px;
  }

  .text-side h3 {
    font-size: 25px;
  }

  .text-side p {
    font-size: 15px;
    line-height: 17px;
  }

  .logo-container {
    width: 100%;
  }

  .logo-container img {
    width: 100%;
  }

  .logo-banner-about-us-container {
    width: 100%;
  }

  /* FIN ABOUT US PAGE */

  /* INICIO CLASES PAGE */

  .class-section .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
  }

  .texto-clases-container {
    width: 100%;
  }

  .texto-clases-container h2 {
    width: 100%;
    text-align: center;
    line-height: 60px;
    margin-block: 20px;
  }

  .texto-clases-container p {
    width: 100%;
    font-size: 20px;
    text-align: justify;
  }

  .texto-clases-container a {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    margin-inline: auto;
  }

  .video-clases-container {
    width: 100%;
    margin-top: 20px;
  }

  .texto-video-clases-container {
    width: fit-content;
    gap: 10px;
    margin: 10px auto;
  }

  .video-clases-container>img:last-of-type {
    width: 70px;
    height: 70px;
    margin-left: -10%;
    margin-top: -17%;
  }

  /* FIN CLASES PAGE */

  /* INICIO PAQUETES PAGE */

  .main-section-paquetes h1 {
    line-height: 50px;
    margin-top: 100px;
  }



  .buscar-input-container,
  #clases-input,
  #disciplina-input {
    width: 100%;
  }

  .buscar-input-container img {
    left: 80%;
  }

  .membresias-paquetes .cards-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }



  .membresias-paquetes {
    display: flex;
    justify-content: center;
    align-items: center;
  }


  /* FIN PAQUETES PAGE */

  /* INICIO COACHES PAGE */

  .coach .image-side {
    width: 100%;
    height: 100%;
  }

  .coach .image-side>img {
    object-fit: cover;
    width: 100%;
  }

  .coach .text-side h3 {
    text-align: center;
    font-size: 50px;
  }

  .coach .text-side p {
    text-align: center;
    width: 100%;
    margin: 0;
    font-size: 15px;
  }

  .coach {
    height: 100%;
  }

  .coach .text-side {
    height: fit-content;
    height: 100%;
  }


  .coach .text-side a {
    text-align: center;
    margin: 20px auto 0 auto;
  }

  .coach .discipline-coach {
    margin: 0 auto;
    margin-top: 40px;
  }

  /* FIN COACHES PAGE */
  .section-coaches{
  grid-template-columns: repeat(1, 1fr);
}
  /* INICIO CONTACT PAGE */

  .general-form-container {
    width: 100%;
  }

  .main-section-contacto {
    background-size: cover;
  }

  /* FIN CONTACT PAGE */

  /* INICIO LOGIN PAGE */

  .login-form {
    width: 100%;
  }

  /* FIN LOGIN PAGE */

  /* INICIO RESERVA PAGE */
  .reserva-main-section .container {
    padding-inline: unset;
  }

  .reserva-main-section>.container>img {
    width: 150px;
  }

  .reserva-main-section h1 {
    font-size: 40px;
  }

  .first-flex {
    display: block;
  }

  .first-flex h2 {
    font-size: 25px;
    text-align: center;
  }

  .inputs-reserva-container select {
    font-size: 12px;
    background-size: 10px;
  }


  .second-flex {
    display: none;
  }

  .nombrecoach-horarioclase {
    display: block;
  }

  .nombrecoach-horarioclase h3 {
    font-size: 13px;
  }

 


  .iconos-container {
    margin-top: 0;
  }

  .white-container {
    padding: 30px;
  }

  .calendar-slider-number {
    width: 45px;
    height: 45px;
    font-size: 23px;
  }

  .text-day-slider {
    font-size: 17px;
  }
.bg-sd{
  height: 50px;
  }
  .slider-items-container {
    gap: 7%;
  }

  .flecha-slider-calendar {
    font-size: 20px;
  }

  .slider-calendar-container {
    gap: 10px;
  }

  .descripcion-section {
    max-height: 400px;
  }

  .descripcion-section .container {
    width: 100%;
  }

  .video-index-texto {
    margin-top: 35%;
    width: 100% !important;
    height: 100%;
    margin-left: -50%;
    transform: rotate(90deg);
  }

  .modal-detalles-coach {
    width: 100%;
    height: 80vh;
    margin-block: auto;
    background-color: #fff;
    position: fixed;
    bottom: 0;
    left: 0;
    border-radius: 20px 20px 0 0;
    display: none;
    z-index: 999;
    bottom: -100%;
  }

  .modal-detalles-disciplina {
    width: 100%;
    height: 80vh;
    margin-block: auto;
    background-color: #fff;
    position: fixed;
    left: 0;
    border-radius: 20px 20px 0 0;
    display: none;
    z-index: 999;
    bottom: -100%;
  }

  .contenido-modal-disciplina-container {
    color: var(--light-brown);
  }

  .nombre-disciplina-details-modal {
    font-size: 50px;
    font-family: var(--ff-higuen);
    text-align: center;
  }

  .texto-disciplina-details-modal {
    text-align: center;
    width: 90%;
    margin: 0 auto;
    font-size: 18px;
    line-height: 23px;
  }

  .descripcion-section {
    max-height: 400px;
  }

  .descripcion-section .container {
    width: 100%;
  }

  .video-index-texto {
    margin-top: 35%;
    width: 100% !important;
    height: 100%;
    margin-left: -50%;
    transform: rotate(90deg);
  }

  .header-details-container {
    position: relative;
    border-bottom: 1px solid var(--beto-color);
    padding-block: 5px;
  }

  .header-details-container h2 {
    text-align: center;
    font-weight: 500;
    font-size: 20px;
  }

  .header-details-container p {
    font-size: 20px;
    font-weight: 500;
    position: absolute;
    top: 15%;
    left: 90%;
  }

  .foto-coach-details-modal {
    width: 100%;
  }

  .nombre-coach-details-modal {
    text-align: center;
    font-size: 30px;
    font-weight: 500;
    color: var(--light-brown);
  }

  .texto-coach-details-modal {
    font-size: 15px;
    text-align: center;
    line-height: 18px;
  }

  .contenido-modal-coach-container {
    padding: 20px;
  }

  .bg-opacity-modals {
    width: 100%;
    height: 100vh;
    background-color: #000;
    position: fixed;
    opacity: 0.4;
    inset: 0;
    z-index: 40;
    display: none;
  }


  .confirmation-btns {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 20px;
  }

  .cancelar-confirmacion-reserva-btn, .confirmar-reserva-btn {
    cursor: pointer;
    text-align: center;
    background-color: var(--light-brown);
    padding: 2px 20px;
    border-radius: 5px;
    color: #fff;
    transition: all 500ms ease;
  }

  .cancelar-confirmacion-reserva-btn {
    background-color: #fff;
    border: 1px solid var(--light-brown);
    color: var(--light-brown);
  }

  .confirmar-reserva-btn:hover {
    background-color: var(--regina-ivanna-color);
  }

  .cancelar-confirmacion-reserva-btn:hover {
    background-color: var(--light-brown);
    color: #fff;
  } 

  .nota-cancelar-clase {
    text-align: justify;
    line-height: 15px;
    font-size: 13px;
    margin-top: 20px;
    color: var(--beto-color);
  }

  .nota-cancelar-clase span {
    font-family: var(--ff-neue);
    color: var(--light-brown);
    font-weight: bold;
  }

  /* FIN RESERVA PAGE */

  .coach .text-side a:first-of-type {
    text-align: center;
    margin-inline: auto;
  }


  /**
   * FOOTER
   */

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer {
    max-height: 600px;
  }

  .footer video {
    margin-top: 35%;
    width: 200%;
    margin-left: -50%;
    transform: rotate(90deg);
  }


  .footer-brand {
    grid-column: 1 / 3;
  }

  .contact-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-bottom .social-list {
    margin-block-start: 0;
  }

}
@media (min-width: 768px) {

  .slider {
    display: flex;
    width: 1000px;
    overflow: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-block: 50px;  
  }
  
  .slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari y Opera */
  }
  
  .slide {
    position: relative;
    flex: 0 0 33.3333%;
    scroll-snap-align: center;
    text-align: center;
    /* padding: 10px; */
    box-sizing: border-box;
    transition: transform 0.3s;
  }
  
  /* Primer y último slide centrados */
  .slide:first-child {
    margin-left: calc(33.3333%);
  }
  .slide:last-child {
    margin-right: calc(33.3333%);
  }
  
  .slide.center {
    transform: scale(1.2);
  }
  .clase-img-container img{
    width: 150px;
  }
}

@media (min-width: 768px) and (max-width: 999px) {
  .container {
    max-width: 940px;
    margin: 0 auto;
  }
  .navbar-mob{
    display: block;
  }

  .hint-flex svg {
    display: none;
    /* margin-block: auto; */
  }
  /* INICIO INDEX PAGE */

  .hero-banner {
    background-repeat: no-repeat;
    background-position: 60%;
    background-size: cover;
    height: 100vh;
  }

  .descripcion-section p {
    width: 90%;
    font-size: 20px;
    line-height: 25px;
    margin: 0 auto;
  }

 

  .nombres-disciplinas {
    height: 80vh;
  }

  .video {
    height: 80vh;
  }

  .video img {
    height: 100%;
    object-fit: cover;
  }

  .nombres-disciplinas-container h2 {
    font-size: 20px;
    margin: 20px 0;
  }

  .nombres-disciplinas-container ul li {
    font-size: 35px;
  }

  .nombres-disciplinas-container ul li:hover {
    font-size: 40px;
  }

  .active-video {
    font-size: 40px !important;
  }

  .nombres-disciplinas-container a {
    margin: 20px 0;
  }

  .slide p {
    top: 60%;
    font-size: 30px;
  }

 .clase-img-container img{
    width: 180px;
  }

  .cards-container {
    justify-content: center;
    gap: 15px;
  }

  .card {
    width: 230px;
    height: 350px;
    padding: 10px 15px;
  }

  .tipo-card {
    font-size: 35px;
  }

  .numero-clases-card {
    font-size: 100px;
  }

  /* * {
    outline: 1px solid red;
  } */

  .navbar-link {
    color: var(--black);
  }

  .header.active {
    background-color: var(--c2);
  }

  .slider {
    display: flex;
    width: 1000px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;  /* IE y Edge */
    scrollbar-width: none;     /* Firefox */
  }
  
  .slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari y Opera */
  }
  
  .slide {
    position: relative;
    flex: 0 0 33.3333%;
    scroll-snap-align: center;
    text-align: center;
    box-sizing: border-box;
    transition: transform 0.3s;
  }
  
  /* Primer y último slide centrados */
  .slide:first-child {
    margin-left: calc(33.3333%);
  }
  .slide:last-child {
    margin-right: calc(33.3333%);
  }
  
  .slide.center {
    transform: scale(1.2);
  }

  /* FIN INDEX PAGE */

  /* INICIO ABOUT US PAGE */

  .banner-about-us-section {
    background-repeat: no-repeat;
    background-position: 60%;
    background-size: cover;
    height: 60vh;
  }

  .descripcion-aboutus-section p {
    width: 90%;
    font-size: 25px;
  }

  .training-for-life-section {
    height: 55vh;
  }

  .image-side {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

  .image-side p {
    font-size: 40px;
  }

  /* FIN ABOUT US PAGE */

  /* INICIO CLASES PAGE */

  .class-section.section {
    padding-top: 0;
    padding-bottom: 40px;
  }

  .texto-clases-container p {
    font-size: 20px;
    margin-top: -20px;
    width: 100%;
  }

  .texto-clases-container h2 {
    font-size: 70px;
    line-height: 50px;
    margin-block: 40px;
  }

  .texto-clases-container a {
    font-size: 12px;
    margin-top: 20px;
  }

  .video-clases-container {
    width: 60%;
    margin-top: 70px;
  }

  .class-section .container {
    align-items: center;
  }

  .texto-video-clases-container {
    width: 70%;
  }

  .video-clases-container>img:last-of-type {
    margin-left: -13%;
    margin-top: -17%;
  }

  /* FIN CLASES PAGE */

  /* INICIO PAQUETES PAGE */

  .buscar-input-container,
  #clases-input,
  #disciplina-input {
    width: 30%;
  }

  .membresias-paquetes {
    margin-top: -50px;
    gap: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .membresias-paquetes .cards-container {
    /* width: 10%; */
    gap: 15px;
    margin: 0 auto;
  }

  .membresias-section .container {
    width: 100%;
    padding-inline: 0;
  }

  .membresias-paquetes .card {
    margin: 0 auto;
  }

  /* * {
    outline: 1px solid red;
  } */


  /* FIN PAQUETES PAGE */

  /* INICIO COACHES PAGE */

  .coach .text-side h3 {
    font-size: 50px;
    /* margin-top: 50px; */
    margin-inline: 0;
  }

  .coach {
    height: 50vh;
  }

  .coach .image-side > img {
    object-fit: cover;
  }

  .coach .text-side p {
    margin: 0;
    width: 100%;
    font-size: 15px;
    line-height: 15px;
  }

  .coach .text-side a:first-of-type {
    margin-inline: 0;
    font-size: 12px;
  }

  .coach .discipline-coach {
    font-size: 20px;
    padding: 0 40px;
    margin-top: 20px;
  }

  .coach1 .discipline-coach {
    border: 1px solid var(--light-brown-3);
    width: fit-content;
    padding: 0px 60px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 400;
    margin-left: 30%;
    margin-right: 0%;
    margin-top: 40px;
    white-space: nowrap;
    text-decoration: none;
  }
  
  .coach2 .discipline-coach {
    border: 1px solid var(--danyfer-karina-color);
    width: fit-content;
    padding: 0px 60px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 400;
    margin-left: 30%;
    margin-right: 0%;
    margin-top: 40px;
    white-space: nowrap;
    text-decoration: none;
  }
  .section-coaches{
  grid-template-columns: repeat(2, 1fr);
}
  /* FIN COACHES PAGE */

  /* INICIO CONTACT PAGE */

  .main-section-contacto {
    background-size: cover;
  }

  /* FIN CONTACT PAGE */

  .modal-detalles-coach {
    width: 400px;
    height: fit-content;
    margin-block: auto;
    background-color: #fff;
    border-radius: 20px;
    top: 100%;
    left: -200%;
    display: none;
    position: absolute;
    z-index: 999;
    box-shadow: 2px 2px 8px 2px #888888;
  }

  /* INICIO RESERVA PAGE */
  .bg-opacity-modals {
    width: 100%;
    height: 100vh;
    background-color: #000;
    position: fixed;
    opacity: 0.4;
    inset: 0;
    z-index: 100;
    display: none;
  }

  .modal-detalles-disciplina {
    width: 50%;
    height: fit-content;
    padding-bottom: 20px;
    background-color: #fff;
    border-radius: 20px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    display: none;
    position: fixed;
    z-index: 999;
    box-shadow: 2px 2px 8px 2px #888888;
    cursor: default !important;
  }

  .contenido-modal-disciplina-container {
    color: var(--light-brown);
  }

  .nombre-disciplina-details-modal {
    display: block;
    font-size: 50px;
    font-family: var(--ff-higuen);
    text-align: center;
  }

  .texto-disciplina-details-modal {
    display: block;
    text-align: center;
    font-size: 18px;
    width: 90%;
    line-height: 23px;
    margin: 0 auto;
  }

  .modal-detalles-coach {
    width: 50%;
    height: fit-content;
    margin-block: auto;
    background-color: #fff;
    border-radius: 20px;
    top: 50vh;
    margin-top: -245px;
    left: 50%;
    margin-left: -200px;
    display: none;
    position: fixed;
    z-index: 999;
    box-shadow: 2px 2px 8px 2px #888888;
    cursor: default !important;
  }

  .nombrecoach-horarioclase {
    display: block;
  }

  .confirmation-btns {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 20px;
    gap: 10px;
  }

  .cancelar-confirmacion-reserva-btn, .confirmar-reserva-btn {
    width: 100%;
    cursor: pointer;
    text-align: center;
    background-color: var(--light-brown);
    padding: 2px 20px;
    border-radius: 5px;
    color: #fff;
    transition: all 500ms ease;
  }

  .cancelar-confirmacion-reserva-btn {
    background-color: #fff;
    border: 1px solid var(--light-brown);
    color: var(--light-brown);
  }

  .confirmar-reserva-btn:hover {
    background-color: var(--regina-ivanna-color);
  }

  .cancelar-confirmacion-reserva-btn:hover {
    background-color: var(--light-brown);
    color: #fff;
  } 

  .nota-cancelar-clase {
    width: fit-content;
    text-align: justify;
    line-height: 15px;
    font-size: 13px;
    margin-top: 20px;
    color: var(--beto-color);
    margin-inline: auto;
  }

  .nota-cancelar-clase span {
    font-family: var(--ff-neue);
    color: var(--light-brown);
    font-weight: bold;
  }

  /* FIN RESERVA PAGE */

  .footer {
    position: relative;
    height: 200px;
  }

  .footer.section {
    padding-block: 0px;
  }

  .footer .container {
    width: 940px;
  }

  .footer video {
    width: 300%;
    position: relative;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }

  #profile-inicio {
    margin-bottom: 40px;
  }

}


@media (min-width: 1000px) and (max-width: 1200px) {

  .clase-img-container img{
    width: 200px;
  }
  #profile-inicio {
    margin-bottom: 50px;
  }

  .container {
    max-width: 940px;
    margin: 0 auto;
  }
  .navbar-mob{
    display: block;
  }

  .hint-flex svg {
    display: none;
    /* margin-block: auto; */
  }
  /* INICIO INDEX PAGE */

  .hero-banner {
    background-repeat: no-repeat;
    background-position: 60%;
    background-size: cover;
    height: 70dvh;
  }

  .descripcion-section p {
    width: 90%;
    font-size: 20px;
    line-height: 25px;
    margin: 0 auto;
  }


  .video img {
    height: 100%;
    object-fit: cover;
  }

  .nombres-disciplinas-container h2 {
    font-size: 20px;
    margin: 20px 0;
  }

  .nombres-disciplinas-container ul li {
    font-size: 35px;
  }

  .nombres-disciplinas-container ul li:hover {
    font-size: 40px;
  }

  .active-video {
    font-size: 40px !important;
  }

  .nombres-disciplinas-container a {
    margin: 20px 0;
  }

  .slide p {
    top: 60%;
    font-size: 30px;
  }

  .slider img {
    width: 193px;
  }

  .cards-container {
    justify-content: center;
    gap: 15px;
  }

  .card {
    width: 230px;
    height: 350px;
    padding: 10px 15px;
  }

  .tipo-card {
    font-size: 35px;
  }

  .numero-clases-card {
    font-size: 100px;
  }

  /* * {
    outline: 1px solid red;
  } */

  .navbar-link {
    color: var(--black);
  }

  .header.active {
   background-color: var(--c2);
  }

  /* FIN INDEX PAGE */

  /* INICIO ABOUT US PAGE */

  .banner-about-us-section {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 80vh;
  }

  .descripcion-aboutus-section p {
    width: 90%;
    font-size: 25px;
  }

  .training-for-life-section {
    height: 50vh;
  }

  .image-side {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

  .image-side p {
    font-size: 40px;
  }

  /* FIN ABOUT US PAGE */

  /* INICIO CLASES PAGE */

  .class-section.section {
    padding-top: 0;
    padding-bottom: 40px;
  }

  .texto-clases-container p {
    font-size: 20px;
    margin-top: -20px;
    width: 100%;
  }

  .texto-clases-container h2 {
    font-size: 70px;
    line-height: 50px;
    margin-block: 40px;
  }

  .texto-clases-container a {
    font-size: 12px;
    margin-top: 20px;
  }

  .video-clases-container {
    width: 60%;
    margin-top: 70px;
  }

  .class-section .container {
    align-items: center;
  }

  .texto-video-clases-container {
    width: 70%;
  }

  .video-clases-container>img:last-of-type {
    margin-left: -13%;
    margin-top: -17%;
  }

  /* FIN CLASES PAGE */

  /* INICIO PAQUETES PAGE */

  .buscar-input-container,
  #clases-input,
  #disciplina-input {
    width: 30%;
  }

  .membresias-paquetes {
    margin-top: -50px;
    gap: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .membresias-paquetes .cards-container {
    /* width: 10%; */
    gap: 15px;
    margin: 0 auto;
  }

  .membresias-section .container {
    width: 100%;
    padding-inline: 0;
  }

  .membresias-paquetes .card {
    margin: 0 auto;
  }

  /* * {
    outline: 1px solid red;
  } */


  /* FIN PAQUETES PAGE */

  /* INICIO COACHES PAGE */

  .coach .text-side h3 {
    font-size: 50px;
    /* margin-top: 50px; */
    margin-inline: 0;
  }

  .coach {
    height: 80vh;
  }

  .coach .image-side > img {
    object-fit: cover;
  }

  .coach .text-side p {
    margin: 0;
    width: 100%;
    font-size: 15px;
    line-height: 15px;
  }

  .coach .text-side a:first-of-type {
    margin-inline: 0;
    font-size: 12px;
  }

  .coach .discipline-coach {
    font-size: 20px;
    padding: 0 40px;
    margin-top: 20px;
  }

  .coach1 .discipline-coach {
    border: 1px solid var(--light-brown-3);
    width: fit-content;
    padding: 0px 60px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 400;
    margin-left: 30%;
    margin-right: 0%;
    margin-top: 40px;
    white-space: nowrap;
    text-decoration: none;
  }
  
  .coach2 .discipline-coach {
    border: 1px solid var(--danyfer-karina-color);
    width: fit-content;
    padding: 0px 60px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 400;
    margin-left: 30%;
    margin-right: 0%;
    margin-top: 40px;
    white-space: nowrap;
    text-decoration: none;
  }
.section-coaches{
  grid-template-columns: repeat(3, 1fr);
}
  /* FIN COACHES PAGE */

  /* INICIO CONTACT PAGE */

  .main-section-contacto {
    background-size: cover;
  }

  /* FIN CONTACT PAGE */

  .modal-detalles-coach {
    width: 400px;
    height: fit-content;
    margin-block: auto;
    background-color: #fff;
    border-radius: 20px;
    top: 100%;
    left: -200%;
    display: none;
    position: absolute;
    z-index: 999;
    box-shadow: 2px 2px 8px 2px #888888;
  }

  /* INICIO RESERVA PAGE */
  .bg-opacity-modals {
    width: 100%;
    height: 100vh;
    background-color: #000;
    position: fixed;
    opacity: 0.4;
    inset: 0;
    z-index: 100;
    display: none;
  }

  .modal-detalles-disciplina {
    width: 50%;
    height: fit-content;
    padding-bottom: 20px;
    background-color: #fff;
    border-radius: 20px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    display: none;
    position: fixed;
    z-index: 999;
    box-shadow: 2px 2px 8px 2px #888888;
    cursor: default !important;
  }

  .contenido-modal-disciplina-container {
    color: var(--light-brown);
  }

  .nombre-disciplina-details-modal {
    display: block;
    font-size: 50px;
    font-family: var(--ff-higuen);
    text-align: center;
  }

  .texto-disciplina-details-modal {
    display: block;
    text-align: center;
    font-size: 18px;
    width: 90%;
    line-height: 23px;
    margin: 0 auto;
  }

  .modal-detalles-coach {
    width: 50%;
    height: fit-content;
    margin-block: auto;
    background-color: #fff;
    border-radius: 20px;
    top: 50vh;
    margin-top: -245px;
    left: 50%;
    margin-left: -200px;
    display: none;
    position: fixed;
    z-index: 999;
    box-shadow: 2px 2px 8px 2px #888888;
    cursor: default !important;
  }

  .nombrecoach-horarioclase {
    display: block;
  }

  .confirmation-btns {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 20px;
    gap: 10px;
  }

  .cancelar-confirmacion-reserva-btn, .confirmar-reserva-btn {
    width: 100%;
    cursor: pointer;
    text-align: center;
    background-color: var(--light-brown);
    padding: 2px 20px;
    border-radius: 5px;
    color: #fff;
    transition: all 500ms ease;
  }

  .cancelar-confirmacion-reserva-btn {
    background-color: #fff;
    border: 1px solid var(--light-brown);
    color: var(--light-brown);
  }

  .confirmar-reserva-btn:hover {
    background-color: var(--regina-ivanna-color);
  }

  .cancelar-confirmacion-reserva-btn:hover {
    background-color: var(--light-brown);
    color: #fff;
  } 

  .nota-cancelar-clase {
    width: fit-content;
    text-align: justify;
    line-height: 15px;
    font-size: 13px;
    margin-top: 20px;
    color: var(--beto-color);
    margin-inline: auto;
  }

  .nota-cancelar-clase span {
    font-family: var(--ff-neue);
    color: var(--light-brown);
    font-weight: bold;
  }

  /* FIN RESERVA PAGE */

  .footer {
    position: relative;
    height: auto;
  }

  .footer.section {
    padding-block: 0px;
  }

  .footer .container {
    /* margin-top: 50%;
    margin-top: -197px;
    margin-left: 50%;
    margin-left: -600px; */
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }

  .footer video {
    width: 300%;
    position: relative;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }

}



@media (min-width: 1200px) {

  .clase-img-container img{
    width: 230px;
  }
  .hint-flex svg {
    display: none;
    /* margin-block: auto; */
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .bg-opacity-modals {
    width: 100%;
    height: 100vh;
    background-color: #000;
    position: fixed;
    opacity: 0.4;
    inset: 0;
    z-index: 100;
    display: none;
  }

   .footer {
    position: relative;
  }

  .footer.section {
    padding-block: 14px;
  }

  .footer .container {
    width: 1200px;
  }

  .modal-detalles-disciplina {
    width: 25%;
    height: fit-content;
    padding-bottom: 20px;
    background-color: #fff;
    border-radius: 20px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    display: none;
    position: fixed;
    z-index: 999;
    box-shadow: 2px 2px 8px 2px #888888;
    cursor: default !important;
  }

  .contenido-modal-disciplina-container {
    color: var(--light-brown);
  }

  .nombre-disciplina-details-modal {
    display: block;
    font-size: 50px;
    font-family: var(--ff-higuen);
    text-align: center;
  }

  .texto-disciplina-details-modal {
    display: block;
    text-align: center;
    font-size: 18px;
    width: 90%;
    line-height: 23px;
    margin: 0 auto;
  }



  /**
   * HEADER
   */

  .logo>img {
    width: 100px;
    height: 90px;
  }

  .header.active {
    background-color: var(--c2);
  }

  .nav-open-btn,
  .overlay,
  .navbar-top,
  .navbar .social-list {
    display: none;
  }

  .navbar,
  .navbar.active,
  .navbar-list {
    all: unset;
    display: block;
  }
  .navbar-mob{
    display: none;
  }

  .navbar {
    margin-inline: auto;
  }

  .navbar-list {
    display: flex;
    gap: 8px;
  }

  .navbar-item {
    border-block-start: none;
  }

  .navbar-link {
    color: #fff;
    --title-md: 1.8rem;
    font-weight: var(--fw-500);
    padding-inline: 16px;
    text-transform: capitalize;
    font-weight: 300;
    font-size: 1.7rem;
  }

  /* BODY */

  .hero-banner {
    background-repeat: no-repeat;
    background-size: cover;
  }

  .calendar-slider-number:hover {
   background-color: rgb(226, 217, 200);
  }

  .modal-detalles-coach {
    width: 25%;
    height: fit-content;
    margin-block: auto;
    background-color: #fff;
    border-radius: 20px;
    top: 50vh;
    margin-top: -245px;
    left: 50%;
    margin-left: -200px;
    display: none;
    position: fixed;
    z-index: 999;
    box-shadow: 2px 2px 8px 2px #888888;
    cursor: default !important;
  }
/* 
  .nombrecoach-horarioclase {
    display: block;
  }
*/
  
.section-coaches{
  grid-template-columns: repeat(3, 1fr);
}

  .confirmation-btns {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 20px;
    gap: 10px;
  }

  .cancelar-confirmacion-reserva-btn, .confirmar-reserva-btn {
    width: 100%;
    cursor: pointer;
    text-align: center;
    background-color: var(--light-brown);
    padding: 2px 20px;
    border-radius: 5px;
    color: #fff;
    transition: all 500ms ease;
  }

  .cancelar-confirmacion-reserva-btn {
    background-color: #fff;
    border: 1px solid var(--light-brown);
    color: var(--light-brown);
  }

  .confirmar-reserva-btn:hover {
    background-color: var(--regina-ivanna-color);
  }

  .cancelar-confirmacion-reserva-btn:hover {
    background-color: var(--light-brown);
    color: #fff;
  } 

  .nota-cancelar-clase {
    width: fit-content;
    text-align: justify;
    line-height: 15px;
    font-size: 13px;
    margin-top: 20px;
    color: var(--beto-color);
    margin-inline: auto;
  }

  .nota-cancelar-clase span {
    font-family: var(--ff-neue);
    color: var(--light-brown);
    font-weight: bold;
  }


  /**
   * FOOTER
   */

  .footer {
    background-size: auto;
  }

  .footer-top {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-brand {
    grid-column: 1 / 5;
    padding: 28px 56px;
    display: grid;
    grid-template-columns: 0.3fr 1fr;
    align-items: center;
  }

  .footer .logo {
    margin-block-end: 0;
  }

  .contact-list {
    justify-content: space-between;
  }

  .contact-list::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: var(--white_a20);
  }

  .contact-item {
    margin-block-start: 0;
  }

}