:root {
  --black: #000000;
  --white: #FFFFFF;
  --gray: #858585;
  --white-gray: #E2E2E2;

  --acentos: "Inter", sans-serif;
  --titulos: "Elza Narrow", sans-serif;
  --texto: "Proxima Nova", sans-serif;
  --hispanica: "Oswald", sans-serif;
}

.hero {
  color: white;
  padding: 100px 3% 20px;
  text-align: center;
}

.hero-content {
  background-image: url(../images/assets_index/imagenes/hero_index.png);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100vh;
  max-height: 700px;
  border-radius: 15px;
  position: relative;
  
}

@media (min-width: 768px) {

  .hero-content{
    max-height: 450px;
  }
  
}

.hero-title {
  position: absolute;
  bottom: 10%;
  left: 5%;
  font-family: var(--titulos);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-title h4 {
  font-size: 5rem;
  margin-top: 20px;
  margin-bottom: 30px;
  font-weight: lighter;
  text-align: left;
}

.btn-hero {
  background-color: var(--white);
  color: var(--black);
  font-family: var(--hispanica);
  font-size: 1.2rem;
  font-weight: 700;
  padding: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-hero:hover {
  background-color: var(--gray);
  color: var(--white);
}

.container-aboutus {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  padding: 50px 15px;
}


.card-motivacion-background{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px 3%;
}

.card-motivacion{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    gap: 20px;
    width: 100%;
}

.card-motivacion h3{
    line-height: 2.2rem;
    font-size: 2rem;
    font-weight: 500;
    margin-top: 20px;
    letter-spacing: -1px;
}



.texto-card-motivacion p {
    font-size: 1rem;
    color: var(--gray);
}

.logo-inline {
  display: inline-block;
  width: 9rem;
  vertical-align: baseline;
  margin: 0 3px;
}

.container-aboutus h4 {
  font-family: var(--titulos);
  font-size: 2rem;
  font-weight: 700;
}

.container-aboutus h5 {
  font-family: var(--texto);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--gray);
  max-width: 600px;
  display: flex;
  flex-direction: row;
  padding: 0% 30px;
}

.container-aboutus img {
  filter: brightness(0) invert(0);
}

.btn-aboutus {
  background-color: var(--white);
  color: var(--black);
  font-family: var(--hispanica);
  font-size: 1.2rem;
  font-weight: 700;
  padding: 5px 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: #858585 0px 4px 4px 0px;
}

.btn-aboutus:hover {
  background-color: var(--black);
  color: var(--white);
}

.container-entrenamiento {
  padding: 50px 30px;
  margin: 0% 3%;
  border-radius: 15px;
  background-color: var(--black);
  display: flex;
  flex-direction: column;
  align-items: space-between;
}

.container-entrenamiento-texto {
  color: var(--white);
  display: flex;
  flex-direction: column;
}

.container-entrenamiento-texto h4 {
  font-family: var(--titulos);
  font-size: 3rem;
  font-weight: 700;
  padding: 10px 0px 40px 0px;
  line-height: 4rem;
}

.container-entrenamiento-texto h5 {
  font-family: var(--texto);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  max-width: 70%;
  display: flex;
  flex-direction: row;
  padding: 0% 0%;

}

.btn-entrenamiento {
  display: flex;
  background-color: var(--white);
  color: var(--black);
  font-family: var(--texto);
  font-size: 1.2rem;
  font-weight: lighter;
  padding: 5px 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: fit-content;
  align-self: flex-end;
}

.btn-entrenamiento:hover {
  background-color: var(--gray);
  color: var(--white);
}


.container-clases-entrenamiento {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding: 30px 30px 50px 30px;
  gap: 20px;
  background-color: var(--white);
  border-radius: 15px;
  margin: 40px 3%;
  
}

.container-clases-titulo {
  display: flex;
  flex-direction: row;
  font-family: var(--titulos);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--black);
  gap: 20px;
}

.container-clase {
  position: relative;
  border-radius: 15px;
  width: 100%;
  background-color: var(--black);
  overflow: hidden;
  transition: transform 0.5s ease;
  max-height: 400px;
  max-width: 600px;
  object-fit: cover;
  
}

.container-clase:hover{
  transform: scale(1.03);
}

.text-clase {
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  padding-left: 20px;
  padding-right: 20px;
  font-family: var(--titulos);
  gap: 10px;
}

.text-clase h4 {
  font-weight: 700;
  line-height: 3.2rem;
  font-size: 3rem;
}

.btn-clase {
  display: flex;
  background-color: var(--white);
  color: var(--black);
  font-family: var(--hispanica);
  font-size: 1rem;
  font-weight: lighter;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: fit-content;
  padding: 0px 5px;
}

.btn-clase:hover {
  background-color: var(--gray);
  color: var(--white);
}



.container-coaches {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 15px;
  gap: 60px;
  background-image: url(../images/assets_coaches/imagenes/fondo_miscoachespag.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  position: relative;
  image-rendering: pixelated;
}


.container-coaches-titulo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-family: var(--titulos);
  gap: 20px;
}

.container-coaches-titulo h4 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin: 0;
  letter-spacing: 2px;
}

.container-coaches-titulo img {
  width: 40px;
  height: auto;
}

.slideshow-container {
  max-width: 300px;
  width: 70%;
  position: relative;
  margin: 0 auto;
}

.mySlides {
  display: none;
  position: relative;
}

.mySlides.active-slide {
  display: block;
  animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.coach-image {
  width: 100%;
  height: auto;
  border-radius: 30px;
  object-fit: cover;
  background-color: #c4c4c4;
  display: block;
}

.coach-image:hover {
  transform: scale(1.03);
  transition: transform 0.5s ease;
}

.coach-name {
  font-family: var(--titulos);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin: 0;
  padding: 3px;
  line-height: 1;
  color: var(--black);
  background-color: #FFFFFF;
  position: absolute;
  bottom: 60px;
  left: 30px;


}

.coach-specialty {
  font-family: var(--texto);
  font-size: clamp(2rem, 3vw, 2.3rem);
  color: var(--white);
  margin: 5px 0 0 0;
  font-weight: 400;
  position: absolute;
  bottom: 30px;
  left: 30px;
  white-space: nowrap;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 28px;
  transition: all 0.3s ease;
  z-index: 3;
}

.prev {
  left: -15%;
}

.next {
  right: -15%;
}

.prev:hover,
.next:hover {
  transform: translateY(-50%) scale(1.5);
}

.logo-container {
  margin-top: 40px;
}

.logo-hispanicas {
  width: 150px;
  height: auto;
  filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
  .container-coaches {
    padding: 80px 15px;
    gap: 40px;
  }

  .slideshow-container {
    max-width: 70%;
  }

  .prev {
    left: -15%;
  }

  .next {
    right: -15%;
  }

  .prev,
  .next {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

  .coach-info {
    bottom: 20px;
    left: 20px;
    padding: 15px 20px;
  }

}

@media (max-width: 480px) {
  .container-coaches {
    padding: 60px 10px;
  }

  .prev,
  .next {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }

  .coach-info {
    bottom: 15px;
    left: 15px;
    padding: 12px 18px;
  }
}

.container-membresias {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 20px;
  gap: 60px;
  background-color: var(--white);
  min-height: 100vh;
  margin: 20px 3%;
  border-radius: 15px;
}

.membresias-titulo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.membresias-titulo h4 {
  font-family: var(--titulos);
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
  margin: 0;
}

.membresias-titulo img {
  width: 40px;
  height: auto;
}

.membresias-slideshow {
  position: relative;
  width: 100%;
  max-width: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.membresia-slide {
  display: none;
  width: 100%;
  animation: fadeSlide 0.5s ease-in-out;
  max-width: 450px;
}

.membresia-slide.active {
  display: block;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.membresia-card {
  display: flex;
  flex-direction: column;
  background-color: var(--black);
  border: 8px solid var(--black);
  border-radius: 15px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.membresia-card::before {
  content: '';
  position: absolute;
  inset: 15px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  pointer-events: none;
}

.membresia-clase {
  font-family: var(--titulos);
  font-size: clamp(3.5rem, 8vw, 5rem);
  color: var(--white);
  line-height: 1;
  letter-spacing: -1px;
}

.membresia-vigencia {
  font-family: var(--texto);
  font-size: 1.5rem;
  color: var(--white);
  margin: 0 0 40px 0;
}

.membresia-precio {
  display: flex;
  justify-content: center;
  align-items: baseline;
  color: var(--white);
  margin: 0 0 70px 0;
  line-height: 1;
  font-family: var(--texto);
}

.membresia-precio p {
  font-size: clamp(4rem, 10vw, 6rem);
  font-weight: 600;
}

.membresia-precio span {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 200;
  margin-left: 5px;
}

.btn-comprar-membresia {
  background-color: var(--white);
  color: var(--black);
  border: none;
  padding: 6px 10px;
  font-family: var(--titulos);
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-comprar-membresia:hover {
  background-color: #f0f0f0;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.membresia-prev,
.membresia-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 4rem;
  color: var(--black);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 300;
  line-height: 1;
  z-index: 10;
}

.membresia-prev {
  left: -80px;
}

.membresia-next {
  right: -80px;
}

.membresia-prev:hover,
.membresia-next:hover {
  color: #666;
  transform: translateY(-50%) scale(1.2);
}

.membresias-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.logo-hispanica-membresias {
  width: 180px;
  height: auto;
}

.separador-footer {
  font-family: var(--titulos);
  font-size: 2rem;
  color: var(--black);
}

.welcome-text {
  font-family: var(--titulos);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  letter-spacing: 0px;
}

.welcome-text p {
  margin: 0;
}

.flechas-footer {
  font-size: 2rem;
  color: var(--black);
  font-weight: bold;
}

@media (max-width: 768px) {
  .container-membresias {
    padding: 80px 15px;
    gap: 40px;
  }

  .membresias-slideshow {
    max-width: 350px;
  }

  .membresia-prev {
    left: -30px;
    font-size: 3rem;
  }

  .membresia-next {
    right: -30px;
    font-size: 3rem;
  }

  .membresia-card {
    padding: 50px 30px;
  }


  .logo-hispanica-membresias {
    width: 120px;
  }
}

@media (max-width: 480px) {
  .membresia-prev {
    left: -10px;
    font-size: 2.5rem;
    color: rgb(176, 176, 176);
    padding: 16px;
  }

  .membresia-next {
    right: -10px;
    font-size: 2.5rem;
    color: rgb(176, 176, 176);
    padding: 16px;
  }

  .membresia-card {
    padding: 40px 25px;
    border-width: 6px;
  }

}

.container-reservacion {
  display: flex;
  flex-direction: column;
  align-items: left;
  padding: 60px 40px;
  gap: 60px;
  background-color: var(--black);
  color: var(--white);
  margin: 50px 0%;
}

.reservacion-titulo {
  font-family: var(--titulos);
  font-size: 3rem;
  font-weight: 700;
  line-height: 4rem;
  margin: 10px 0 0 0;
}

.reservacion-titulo img {
  padding-left: 2.5px;
  padding-bottom: 10px;
}

.reservacion-texto {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.reservacion-texto p {
  text-align: right;
   max-width: 240px;
}



.btn-reservar {
  display: flex;
  background-color: var(--white);
  color: var(--black);
  font-family: var(--texto);
  font-size: 1rem;
  font-weight: bold;
  padding: 2px 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: fit-content;
  align-self: flex-end;
}

.btn-reservar:hover {
  background-color: var(--gray);
  color: var(--white);
}

.faq-titulo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
}


.container-faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  gap: 30px;
  background-color: var(--black);
  border-radius: 15px;
}

.faq-titulo h2 {
  font-family: 'Elza Narrow', sans-serif;
  font-size: 2.2rem;
  color: var(--white);
  letter-spacing: 1px;
}

.accordion-container {
  width: 100%;
  max-width: 750px;
  border: var(--gray) 2px solid;
  padding: 30px;
  border-radius: 15px;
  background-color: var(--black);
}

.accordion-faq {
  background-color: transparent;
  color: var(--white);
  cursor: pointer;
  padding: 20px 0;
  width: 100%;
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: var(--gray) 2px solid; 
  transition: 0.4s;
}

.accordion-faq:hover {
  transform: scale(1.03);
}

.pregunta-texto {
  font-family: var(--titulos);
  font-size: 1.4rem;
  font-weight: 600;
  background-color: var(--white); 
  padding: 2px 10px;
  color: var(--black);
  white-space: nowrap;
}


.accordion-faq::before {
  content: '\002B'; 
  font-family: Arial, sans-serif;
  font-size: 2rem;
  font-weight: bold;
  min-width: 25px;
}

.accordion-faq.active::before {
  content: "\2212"; 
}


.panel-faq {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  border-bottom: var(--gray-border) 1px solid;
}

.panel-faq p {
  font-family: 'Proxima Nova', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: var(--white);
  padding: 20px 45px; 
  margin: 0;
}


.footer-accordion {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.btn-ver-mas {
  background-color: var(--white);
  color: var(--black);
  border: none;
  padding: 4px 20px;
  font-family: var(--hispanica);
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 2px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.btn-ver-mas:hover {
  background-color: var(--gray);
  color: var(--white);
}

.container-card-paquetes-negro:hover,
.container-card-paquetes-blanco:hover{
    transform: scale(1.02);
    transition: .5s;
    filter: invert(1);
}

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

.container-vigencia h3{
    font-size: 5rem;
    text-align: center;
    font-family: var(--titulos);
    font-weight: lighter;
    line-height: 5rem;
    letter-spacing: -1px;
}

.container-vigencia p{
    font-size: 1.4rem;
    font-family: var(--texto);
    font-weight: lighter;

}

.container-precio {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.container-precio h4{
    font-size: 5rem;
    font-family: var(--hispanica);
    font-weight: lighter;
}

.container-precio p{
    font-size: 2rem;
    font-family: var(--hispanica);
    font-weight: lighter;
    padding-top: 20px;
}

.button-comprar{
    color: var(--black);
    background-color: var(--white-gray);
    border-radius: 2px;
    padding: 2px 12px;
    font-family: var(--titulos);
    font-weight: bolder;
    box-shadow: #858585 0px 2px 2px 0px;
    transition: .3s;
}

.button-comprar:hover{
    background-color: var(--gray);
    transform: scale(1.1);
}

.container-beneficios{
    font-size: 1.3rem;
    font-family: var(--texto);
    font-weight: 500;
    text-align: center;
}
.container-beneficios li::before {
    content: "-";
    font-weight: bolder;
    font-size: 1.3rem;
    line-height: 1rem;
    margin-right: 10px;

}

.container-card-paquetes-blanco,
.container-card-paquetes-negro{
    width: 300px;
    height: 500px;
    padding: 20px;
    border-radius: 15px;
}
.container-flex-paquetes-blanco,
.container-flex-paquetes-negro{
    width: 100%;
    height: 100%;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 30px;
    gap: 30px;
}

.container-card-paquetes-blanco{
    background-color: var(--white);
}

.container-flex-paquetes-blanco{
    border: var(--black) solid 1px;
    color: var(--black);
}
.container-card-paquetes-negro{
    background-color: var(--black);
    width: 100%;
}

.container-flex-paquetes-negro{
    border: var(--white-gray) solid 1px;
    color: var(--white);
}

@media (min-width: 768px) {


  .hero-content {
    background-position: center 30%; 
  }

  .hero-title {
    left: 8%;
    bottom: 15%;
  }

  .hero-title h4 {
    font-size: 6rem;
  }


  .container-clases-entrenamiento {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 30px;
    padding: 60px;
    align-items: start;
  }

  .container-clases-titulo {
    grid-column: 1 / -1;
    margin-bottom: 20px;
    font-size: 3rem;
  }

  .container-clase {
    max-width: 100%;
    height: 100%;
    min-height: 470px;
  }

  .img-clase{
    min-height: 300px;
    width: 100%;
    max-height: 300px;
    background-position: center 30%;
    object-fit: cover;
  }

}