/* Estilos generales */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #333;
  background-color: #222;
}

header {
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo img {
  width: 120px; /* Ajusta el tamaño del logo */
}
.logo span {
  font-size: 1.5rem;
  color: #c8d42c;
  font-weight: bold;
}
nav {
  display: flex;
  align-items: center;
  position: relative;
}

.menu {
max-width: 100%;
font-family: Montserrat, sans-serif;
font-size: 16px;
font-weight: 400;
text-align: center;
text-decoration-skip-ink: none;
list-style: none;
display: flex;
gap: 1.5rem;
margin: 0;
padding: 0;
}

/* Estilos de los enlaces */
.menu a {
text-decoration: none;
color: #000000;
transition: color 0.3s;
}

.menu a.contacto-btn {
text-decoration: none;
color: #ffffff;
transition: color 0.3s;
box-shadow: 2px 2px 10px 0px #00000040;
}
.menu a.contacto-btn:hover {
  color: #FFFFFF;
}


.menu a:hover {
color: #c8d42c;
font-weight: bold;
}
/* estilo para captcha  */
.captcha-container {
    max-width: 100%;
    overflow: hidden;
}

/* Estilo para el botón de contacto */
.contacto-btn {
padding: 0.5rem 1rem;
background-color: #c8d42c;
border-radius: 5px;
color: #fffefe;
}

.contacto-btn:hover {
background-color: #c8d42c;
}

/* Estilos para el icono de hamburguesa */
.menu-icon {
font-size: 30px;
display: none;  /* Ocultar en pantallas grandes */
cursor: pointer;
}


/* Hero section */
.hero {
  position: relative;
  background-image: url('background.webp'); /* Sustituye con tu imagen de fondo */
  background-size: cover;
  background-position: center;
  text-align: center;
  color: white;
  padding: 10rem 2rem;
  z-index: 0;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* Negro con 40% de opacidad */
  z-index: -1; /* Envía la capa detrás del contenido */
  pointer-events: none; /* Permite la interacción con el contenido del contenedor */
  }

.hero-content h1 {
  font-family: Montserrat;
  line-height: 65.83px;
  font-weight: bolder;
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.5rem;
  text-shadow: 2px 2px 20px #FFFFFF45;
  font-family: Montserrat;
  line-height: 29.26px;
  margin-bottom: 3rem;
}
.language-selector {
  display: flex;
  position: relative;
}
.hero-content a {
  width: 200px;
}
.language-select {
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 400;
  appearance: none; /* Elimina el estilo por defecto del navegador */
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 16px;
  padding: 0.2rem 1rem;
  background-color: white;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 89px; /* Ajusta el ancho según tus necesidades */
}

.cta-btn {
  font-family: Montserrat;
  font-size: 16px;
  display: inline-block;
  line-height: 22.86px;
  padding: 0.8rem 1.5rem;
  background-color: #c8d42c;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bolder;
  box-shadow: 2px 2px 20px 0px #FFFFFF45;
}

.cta-btn:hover {
  background-color: #c8d42c;
}

/* Sections */
.section {
  padding: 3rem 2rem;
  text-align: center;
  opacity: 0;
  transform: translateY(-50px);
  transition: all 0.5s ease;
}

.section.active {
  opacity: 1;
  transform: translateY(0);
}

/* Highlights Section */
.highlights {
  background-color: #c8d42c;
  padding: 2rem 1rem;
  padding-bottom: 4rem;
  display: flex;
  justify-content: space-around;
  text-align: center;
  color: white;

}

.highlight-item h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.highlight-item p {
  font-size: 1rem;
  margin: 0;
}

/* Locations Section */
.locations {
  position: relative;
  background-image: url('background2.jpg'); /* Sustituir por la imagen de referencia */
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 3rem 1rem;
  z-index: 0;
}
.locations::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* Negro con 40% de opacidad */
  z-index: -1; /* Envía la capa detrás del contenido */
  pointer-events: none; /* Permite la interacción con el contenido del contenedor */
  }


.locations h2 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  font-weight: bolder;
  text-shadow: 2px 2px 20px #FFFFFF45;
}
.location-box {
  display: flex;
  flex-wrap: wrap;
  gap: 15%;
  justify-content: center;
}
.location {
  font-family: Montserrat;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1rem;
  border-radius: 10px;
}

.location-info {
  text-align: center;
}
.location i {
  font-size: 24px;
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #C7D52B;

}

.location-info p {
  padding: 16px;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
  width: 70%;
  margin: 0 auto;
}

.cta-btn {
  padding: 0.5rem 1rem;
  background-color: #c8d42c;
  color: white;
  width: 80%;
  margin: 0 auto;
  padding: 12px 20px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: bold;
}

.cta-btn:hover {
  background-color: #c8d42c;
}

/* Testimonios */
.testimonios {
background-color: #c8d42c;
text-align: center;
padding: 60px 20px;
}

.testimonios .section-title {
font-family: Montserrat;
font-weight: 700;
color: #fff;
font-size: 2.2rem;
margin-bottom: 20px;
}

.testimonios-grid {
display: flex;
justify-content: center;
align-items: center;
gap: 40px;
flex-wrap: wrap;
}

.testimonio {
max-width: 300px;
}

.testimonio p {
font-family: Montserrat;
font-style: italic;
margin-bottom: 10px;
}

.testimonio span {
font-family: Montserrat;
font-weight: 700;
}

/* Academias */
.academias {
background-color: #222;
color: #fff;
padding: 60px 20px;
text-align: center;
align-items: center;
}
.academias .container {
font-family: Montserrat;
width: 70%;
margin: 0 auto;
text-align: center;
}

.academias .section-title {
font-family: Montserrat;
font-size: 2.2rem;
margin-bottom: 20px;
}

.academias .section-description {
width: 70%; /* El texto ocupa el 70% del contenedor */
margin: 0 auto; /* Centra el texto dentro del contenedor */
font-family: Montserrat;
text-align: justify;
font-size: 1rem;
margin-bottom: 30px;
color: #fff;
text-align: center;
}
.academias hr {
width: 30%;
margin: 0 auto;
font-weight: bold;
}
.academias-buttons {
display: flex;
justify-content: center;
align-items: center;
padding-bottom: 40px;
}

button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    opacity: 0.7;
}

.academias .boton-escuela {
margin: 1%;
font-family: Montserrat; /* Fuente Montserrat */
width: 22%;
font-weight: bolder;
border: 2px solid #FFFFFF; /* Borde blanco */
border-radius: 10px; /* Bordes ligeramente redondeados (opcional) */
font-size: 1rem; /* Tamaño de fuente */
cursor: pointer; /* Cambia el cursor al pasar el mouse */
transition: background-color 0.3s, color 0.3s; /* Animación para efectos */
line-height: 42px;
padding: 0;
}

.boton-escuela:hover {
background-color: #555; /* Fondo gris más claro al pasar el mouse */
color: #d9e000; /* Cambia el color de la letra al pasar el mouse */
}

.academias .boton-escuela-selected {
background-color: #d9e000; /* Fondo gris más claro al pasar el mouse */
color: #090908; /* Cambia el color de la letra al pasar el mouse */
}

.academias .boton-escuela-unselected {
background-color: #333; /* Fondo gris oscuro */
color: #fff; /* Letra blanca */
}

.academias-buttons button {

background-color: #d9e000;
border: none;
padding: 7px 20px;
cursor: pointer;
font-weight: 400;
position: relative;
text-align: center;
background-color: #e9eeab;
border: 2px solid #FFFFFF
}

.academias-buttons .selected {
background-color: #c8d42c !important;
font-weight: bold !important;
}

.academias-buttons button:hover {
background-color: #c8d42c;
font-weight: bold;
}

.academias-buttons button:not(:last-child)::after {
content: ' ';
position: absolute;
top: 0;
right: 0;
width: 1px;
height: 100%;
background-color: #000000; /* Color de la línea divisoria */

}

.academias-buttons .left-button {
    width: 25%;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    background-color: #e9eeab;
    border: 2px solid #FFFFFF

}

.academias-buttons .right-button {
    width: 25%;
border-top-right-radius: 20px;
border-bottom-right-radius: 20px;
background-color: #e9eeab;
border: 2px solid #FFFFFF
}
.academias-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
overflow: hidden; /* Oculta el contenido extra */
max-height: 600px;
}

.academias-grid-caes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    overflow: hidden; /* Oculta el contenido extra */
    max-height: 600px;
}

.academia-card {
background-color: #333;
padding: 20px;
color: #ffffff;
border-radius: 30px;
border: 2px solid #fff;
text-align: left;
display: flex; /* Activa flexbox */
flex-direction: column; /* Alinea los hijos en una columna */
justify-content: space-between; /* Distribuye el espacio entre los hijos */
}
.academia-card:hover{
background-color: #c8d42c;
color: #000000;

}

.academia-card h3 {
font-family: Montserrat;
font-size: 1.8rem;
font-weight: 700;
margin: 0;
}

.academia-card p {
font-family: Montserrat;

font-size: 0.9rem;
margin-bottom: 15px;
margin-top: 0;
margin-bottom: 15%;

}
.academia-card img {
height: 17%;
width: 17%;
}

.academia-card a {
font-family: Montserrat;
background-color: #000;
font-size: 1rem;
color: #fff;
width: 80%;
margin: 0 auto;
border-radius: 20px;
text-decoration: none;
font-weight: bold;
display: inline-block;
text-align: center;
padding: 10px 20px;
box-shadow: 2px 2px 20px 0px #FFFFFF45;

}

.ver-mas {
font-family: Montserrat;
background-color: #d9e000;
color: #fff;
border: none;
font-size: 1rem;
padding: 10px 20px;
margin-top: 30px;
cursor: pointer;
font-weight: 700;
border-radius: 5px;
box-shadow: 2px 2px 20px 0px #FFFFFF45;
}

.ver-mas-caes {
    font-family: Montserrat;
    background-color: #d9e000;
    color: #fff;
    border: none;
    font-size: 1rem;
    padding: 10px 20px;
    margin-top: 30px;
    cursor: pointer;
    font-weight: 700;
    border-radius: 5px;
    box-shadow: 2px 2px 20px 0px #FFFFFF45;
}

/* General Styling */
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
}
.tarifas .blackground {
background-color: #000;
border-radius: 40px;
width: 70%;
margin: auto;
}
/* Tarifas Section */
.tarifas .blackground {
background-color: #000;
border-radius: 40px;
width: 100%;
margin: auto;
}

.tarifas {
background-color: #1e1e1e;
color: #ffffff;
padding: 60px 20px;
}
.tarifas .tarifas-buttons{
font-family: Montserrat;
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 50px;
justify-content: center;
width: 80%;
margin: 0 auto;
padding-top: 40px;
}
.tarifas .tarifas-grid{
padding-bottom: 40px;
}
.tarifas .section-title {
font-family: Montserrat;
font-size: 2.2rem;
margin-bottom: 20px;
text-align: center;
}

.tarifas-options {
display: flex;
justify-content: center;
gap: 15px;
margin-bottom: 30px;
}

.tarifas-options button {
background-color: #d9e000;
color: #000;
font-weight: bold;
border: none;
padding: 10px 20px;
border-radius: 20px;
cursor: pointer;
transition: background-color 0.3s ease;
}

.tarifas-options button:hover,
.tarifas-options button.active {
background-color: #c3c200;
}

.tarifas-grid {
font-family: Montserrat;
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 50px;
justify-content: center;
width: 80%;
margin: 0 auto;
display: flex; /* Hacer que los hijos se posicionen con flexbox */
flex-direction: column; /* Apilar elementos verticalmente */
}

.tarifa-card {
background-color: #333333;
border-radius: 15px;
padding: 30px 20px;
text-align: left;
border: 1px solid #fff;
}

.tarifa-card h3 {
color: #ffffff;
font-size: 1.7rem;
text-align: center;
margin-bottom: 15px;
}

.tarifa-card .precio {
font-size: 1rem;
text-align: center;
color: #d9e000;
margin-bottom: 20px;
}
.tarifa-card .membresia {
font-size: 1rem;
text-align: center;
color: #ffffff;
margin-bottom: 20px;

}

.tarifa-card .precio span {
font-size: 0.9rem;
color: #bbbbbb;
}

.tarifa-card ul {
list-style: none;
padding: 0;
margin: 0;
color: #ffffff;
}

.tarifa-card ul li {
font-family: Montserrat;
position: relative;
padding-left: 40px;
margin-bottom: 15px;
font-size: 0.95rem;
margin-bottom: 10px;
}

.tarifa-card ul li::before {
  content: '\2713'; /* Unicode para el checkmark ✔ */
  font-size: 16px;
  font-weight: bold;
  color: #d9e000; /* Color del check */
  border-radius: 50%; /* Hace que sea un círculo */
  border: 1px solid #d9e000;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 18px; /* Tamaño del círculo */
  height: 18px; /* Tamaño del círculo */
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); /* Sombra suave */
  clip-path: polygon(0% 0%, 50% 0%, 100% 50%, 100% 100%, 0% 100%, 0% 0%);
}

.tarifa-card .btn-inscribirse {
font-family: Montserrat;
display: block;
width: 90%;
margin: 0 auto;
background-color: #d9e000;
color: #000;
font-weight: bold;
padding: 12px 20px;
border: none;
border-radius: 15px;
margin-top: 20px;
cursor: pointer;
text-align: center;
transition: background-color 0.3s ease;
}

.tarifa-card .btn-inscribirse:hover {
background-color: #c3c200;
}


.btn-inscribirse {
background-color: #d9e000;
border: none;
padding: 10px 20px;
cursor: pointer;
font-weight: bold;
border-radius: 5px;
margin-top: 15px;
}

/* Bienestar Section */
.bienestar .container {
width: 60%;
margin: 0 auto;
text-align: center;
}

.bienestar {
position: relative; /* Necesario para que el ::before se posicione dentro del contenedor */
background-image: url('../bienestar-background.webp'); /* Ruta de tu imagen */
background-size: cover;
background-position: center;
color: #fff;
padding: 80px 20px;
text-align: center;
z-index: 0; /* Asegura que el contenido esté por encima de la capa */
}

/* Capa sobrepuesta */
.bienestar::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.4); /* Negro con 40% de opacidad */
z-index: -1; /* Envía la capa detrás del contenido */
pointer-events: none; /* Permite la interacción con el contenido del contenedor */
}

.bienestar .section-title {
font-family: Montserrat;
font-size: 2.2rem;
margin-bottom: 20px;
}

.bienestar .section-description {
font-family: Montserrat;
font-size: 1.2rem;
margin-bottom: 30px;
}

button:disabled {
background-color: #cccccc;
cursor: not-allowed;
opacity: 0.7;
}

.input-group-footer {
display: flex;
border-radius: 30px; /* Borde redondeado uniforme */
overflow: hidden; /* Evita que sobresalgan los bordes */
background-color: rgba(50, 50, 50, 0.7); /* Fondo gris oscuro transparente */
}
.contact-form-footer input {
box-sizing: border-box;
font-family: Montserrat;
padding: 10px 15px;
border: none;
font-size: 1rem;
background-color: transparent; /* Fondo gris oscuro con transparencia */
color: #fff; /* Letras blancas */
width: 900px;
border-radius: 30px; /* Redondeado solo a la izquierda */
outline: none; /* Elimina el borde al seleccionar */
}
.contact-form-footer input::placeholder {
color: rgba(255, 255, 255, 0.7);
}
.contact-form-footer button {
font-family: Montserrat;
background-color: #d9e000;
color: #fff;
border: none;
padding: 10px 20px;
cursor: pointer;
font-weight: bold;
border-radius: 30px;
outline: none;
}

/* General styles */
.carousel-container {
position: relative;
width: 100%;
margin: auto;
overflow: hidden;
}

/* Contenedor de la imagen con la capa */
.carousel-image-wrapper {
position: relative;
width: 100%;
height: 100%;
overflow: hidden;
}

.carousel-image-wrapper img {
width: 100%;
height: 100%;
object-fit: cover;
}

/* Capa sobrepuesta únicamente sobre la imagen */
.carousel-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.4); /* Negro con 40% de opacidad */
z-index: 1; /* Asegura que esté encima de la imagen */
}

.carousel-slide {
display: none;
position: relative;
animation: slideEffect 0.8s ease;
}

.carousel-slide img {
width: 100%;
height: auto;
display: block;
}

/* Animation for sliding effect */
@keyframes slideEffect {
from {
  transform: translateX(100%);
}
to {
  transform: translateX(0);
}
}

/* Content overlay */
.carousel-content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
color: #fff;
z-index: 2; /* Asegura que el contenido esté sobre la capa negra */
}

.carousel-content h2 {
font-size: 3rem;
font-weight: bold;
margin-bottom: 10px;
text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

.carousel-content p {
font-size: 1.2rem;
margin-bottom: 15px;
text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

.carousel-btn {
padding: 10px 20px;
background-color: #c2d03d;
color: #000;
border: none;
cursor: pointer;
font-weight: bold;
font-size: 1rem;
border-radius: 5px;
}

.carousel-btn:hover {
background-color: #b0c136;
}

/* Navigation arrows */
.carousel-arrow {
position: absolute;
top: 50%;
transform: translateY(-50%);
font-size: 2rem;
color: #fff;
background-color: rgba(0, 0, 0, 0.5);
width: 50px;
height: 50px;
text-align: center;
line-height: 50px;
border-radius: 50%;
cursor: pointer;
user-select: none;
z-index: 10;
}

.left-arrow {
left: 20px;
}

.right-arrow {
right: 20px;
}

.carousel-arrow:hover {
background-color: rgba(0, 0, 0, 0.8);
}

/* Indicators */
.carousel-dots {
position: absolute;
bottom: 15px;
left: 50%;
transform: translateX(-50%);
z-index: 2;
}

.dot {
display: inline-block;
width: 12px;
height: 12px;
margin: 0 5px;
background-color: #ddd;
border-radius: 50%;
cursor: pointer;
}

.dot.active {
background-color: #c2d03d;
}

/* General Section Styling */
.atletismo-section {
background-color: #000;
color: #fff;
padding: 40px 20px;
border-radius: 30px; /* Redondeado para la sección principal */
font-family: 'Montserrat', Arial, sans-serif;
margin: 20px auto;
max-width: 1200px;
}

.atletismo-section .intro-text {
text-align: center;
font-size: 1.1rem;
margin-bottom: 30px;
line-height: 1.6;
color: #ccc;
}

/* Card Styles */
.benefit-card,
.range-card,
.tariff-card {
background-color: #222;
border: 2px solid #c7d52b;
border-radius: 100px; /* Aumentamos el redondeado */
padding: 20px 30px;
margin-bottom: 20px;
display: flex;
align-items: center;
gap: 30px;
position: relative;
}

/* Icon and Title */
.icon-title {
display: flex;
align-items: center; /* Ícono y h3 en la misma línea */
width: 25%;
position: relative;
height: 100%;
flex-wrap: wrap; /* Permite que el párrafo baje a la siguiente línea */
}


.icon-title .icon {
width: 50px;
height: 50px;
border-radius: 50%;
margin-right: 15px;
}

.icon-title .icon img {
width: 100%;
height: 100%;
}

.icon-title h3 {
font-size: 1.5rem;
font-weight: bold;
color: #fff;
margin: 0;
text-align: left;
}

.icon-title p {
font-family: Montserrat;
color: #c7d52b;
font-size: 0.7rem;
text-align: center;
margin: 0;
width: 100%; /* Asegura que el párrafo ocupe todo el ancho disponible */
}

/* Vertical Divider */
.icon-title::after {
content: '';
position: absolute;
right: -10px;
top: 0;
height: 90%;
margin: 0 auto;
width: 2px;
background-color: #fff;
}

/* Benefit List */
.benefit-list {
display: flex;
justify-content: space-between;
gap: 20px;
flex-grow: 1; /* Ocupar todo el espacio restante */
width: 70%;
}

.benefit-list ul {
list-style: none;
padding: 0;
margin: 0;
}

.benefit-list ul li {
font-family: Montserrat;
position: relative;
padding-left: 40px;
margin-bottom: 15px;
font-size: 0.95rem;
margin-bottom: 10px;
}
.benefit-list ul li::before {
  content: '\2713'; /* Unicode para el checkmark ✔ */
  font-size: 16px;
  font-weight: bold;
  color: #d9e000; /* Color del check */
  border-radius: 50%; /* Hace que sea un círculo */
  border: 1px solid #d9e000;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 18px; /* Tamaño del círculo */
  height: 18px; /* Tamaño del círculo */
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); /* Sombra suave */
  clip-path: polygon(0% 0%, 50% 0%, 100% 50%, 100% 100%, 0% 100%, 0% 0%);
}

/* Tariff Details */
.tariff-details {
display: flex;
gap: 2rem;
align-items: center;
text-align: center;
width: 70%;
}

.tariff-details .highlight {
font-size: 1.5rem;
font-weight: bold;
color: #c7d52b;
}

/* Button */
.button-container {
text-align: center;
margin-top: 20px;
}

.btn-inscribirme {
background-color: #c7d52b;
color: #000;
font-weight: bold;
padding: 15px 30px;
font-size: 1rem;
border: none;
border-radius: 30px;
cursor: pointer;
text-transform: uppercase;
transition: background-color 0.3s ease;
}

.btn-inscribirme:hover {
background-color: #b5c42b;
}

/* Footer Styling */
.footer {
background-color: #1e1e1e;
color: #c7d52b;
padding: 40px 20px;
font-family: 'Montserrat', Arial, sans-serif;
}

.footer-container {
max-width: 100%;
margin: auto;
text-align: center;
}

/* Logo */
.footer-logo img {
margin: 0 auto;
margin-bottom: 10px;
}

/* Redes sociales */
.footer-social {
display: flex;
justify-content: center;
gap: 20px;
margin-bottom: 30px;
}

.footer-social a {
font-size: 1.5rem;
color: #c7d52b;
text-decoration: none;
transition: color 0.3s ease;
}

.footer-social a:hover {
color: #fff;
}
.footer-social i {
color: #fff;
font-size: 24px;
width: 35px;
height: 35px;
display: inline-flex;
align-items: center;
justify-content: center;
text-align: center;
border-radius: 50%;
border: 1px solid #C7D52B;
}
.footer-social img {
  color: #fff;
  width: 24px;
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #C7D52B;
  }
/* Footer Links */
.footer-links {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 40px;
}

.footer-column {
font-family: Montserrat;
text-align: left;
min-width: 150px;
}

.footer-column h4 {
font-weight: 400;
font-size: 1.2rem;
margin-bottom: 10px;
}

.footer-column ul {
list-style: none;
padding: 0;
margin: 0;
}

.footer-column ul li {
margin-bottom: 5px;
}

.footer-column ul li a {
text-decoration: none;
color: #fff;
font-size: 1rem;
font-weight: 400;
transition: color 0.3s ease;
}

.footer-column ul li a:hover {
color: #c7d52b;
}

/* Sección General */
.sedes {
  background-color: #1e1e1e;
  color: #fff;
  padding: 50px 20px;
  text-align: center;
}
.sedes .blackground {
  background-color: #000;
  border-radius: 40px;
  width: 90%;
  margin: 0 auto;
}
.sedes .section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  color: #ffffff;
  margin-bottom: 40px;
}

/* Contenedor de Tarjetas */
.sedes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  justify-items: center;
}

/* Tarjetas */
.sede-card {
  font-family: 'Montserrat', sans-serif;
  padding: 1rem;
  width: 100%; /* Ocupa todo el ancho disponible en la celda */
  text-align: left;
  box-sizing: border-box; /* Incluye padding y borde dentro del ancho total */
  display: flex;
  flex-direction: column; /* Asegura que el contenido interno esté en columna */
  justify-content: space-between; /* Distribuye uniformemente el contenido interno */
}

.sede-card .sede-title {
  height: 90px;
  align-content: center;
  flex-grow: 1;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  color: #c7d52b;
}

.sede-card .sede-description {
  padding: 0.3rem;
  height: 90px;
  align-content: center;
  flex-grow: 1;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
}

/* Información */
.marco-sede{
  margin-bottom: 1rem;
  border-radius: 30px;
  border: 2px solid #fff;
}
.sede-info {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.sede-info .border-sede{
  font-family: Montserrat;
  width: 55px;
  height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #C7D52B;
}
.sede-info img {
  width: 40px;
}
.dias-horarios {
  display: grid;
  grid-template-columns: 0.6fr 1fr; /* Dos columnas iguales */
  gap: 0rem; /* Espaciado entre las columnas */
  width: 100%
}

.dias{
  text-align: right;
  width: 100%;
  font-weight: 700;
}
.horarios{
  text-align: left;
  padding-left: 0.2rem;
}
.day-hour {
  padding-right: 0.2rem;
  border-right: 2px solid #FFFFFF;
  font-weight: bold;
}
.info-item {
  text-align: center;
  flex: 1;
}

.info-item i {
  font-size: 2rem;
  color: #c7d52b;
  margin-bottom: 10px;
}
.info-item .sede-subtitle {
  text-align: center;
  font-size: 0.8rem;
  color: #c7d52b;
  font-weight: 700;
  padding: 0.8rem;
}
.info-item p {
  font-size: 0.65rem;
  margin: 0;
}

/* Mapas */
.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 15px;
  box-sizing: border-box;
}

/* Botones */
.details-btn {
  font-size: 1.2rem;
  font-family: Montserrat;
  width: 80%;
  background-color: #c8d42c;
  color: #fff;
  padding: 14px 20px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  display: block;
  margin: 0 auto 20px;
}

.details-btn:hover {
  background-color: #b5c42b;
}

/* Links Inferiores */
.links {
  padding-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr; /* Dos columnas iguales */
  gap: 0.5rem; /* Espaciado entre las columnas */
}
.links-item{
  text-align: center;
}


.link-item {
  color: #c7d52b;
  text-decoration: none;
  font-size: 0.9rem;
}

.link-item i {
  margin-right: 5px;
}
.links .border-sede{
  font-family: Montserrat;
  width: 3.5rem;
  height: 3.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #C7D52B;
}
.links img {
  width: 2.2rem;
}
.links i{
  font-size: 40px;
  font-family: Montserrat;
  width: 55px;
  height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #C7D52B;
}

/* Gimnasio Section */
.gimnasio {
  background-color: #1e1e1e; /* Fondo negro */
  color: #ffffff; /* Texto blanco */
  padding: 60px 20px; /* Espaciado interno */
  text-align: center; /* Centrar contenido */
}

.gimnasio .container {
  width: 70%; /* Ajusta el ancho */
  margin: 0 auto; /* Centra el contenedor */
}

.gimnasio .section-title {
  font-family: 'Montserrat', sans-serif; /* Fuente */
  font-size: 2.5rem; /* Tamaño del título */
  font-weight: 700; /* Negrita */
  margin-bottom: 30px; /* Espacio debajo del título */
}

.gimnasio-content {
  display: flex; /* Distribución en fila */
  gap: 30px; /* Espaciado entre los párrafos */
  text-align: justify; /* Justificar texto */
}

.gimnasio-content p {
  font-family: 'Montserrat', sans-serif; /* Fuente */
  font-size: 1.2rem; /* Tamaño del texto */
  line-height: 1.8; /* Altura de línea */
  flex: 1; /* Los párrafos ocupan el mismo espacio */
}

.gimnasio-content strong {
  color: #ffffff; /* Negrita en blanco */
}

/* Sedes y Tarifas Section */
.sedes-tarifas {
  background-color: #1e1e1e;
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.sedes-tarifas .container {
  width: 100%;
  margin: 0 auto;
}
.sedes-tarifas .blackground {
  background-color: #000;
  border-radius: 40px;
  width: 90%;
  margin: 0 auto;
}
.sedes-tarifas .section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.tarifas-options {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.tarifa-option {
  background-color: #c8d42c;
  color: #000;
  font-weight: bold;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.tarifa-option.active,
.tarifa-option:hover {
  background-color: #e4e659;
}

.tarifas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 1rem;
}
.tarifas-buttons-sedes {
  width: 80%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
}

.tarifa-card {
  background-color: #333333;
  border-radius: 15px;
  padding: 30px;
  border: 1px solid #fff;
  text-align: left;
  display: flex; /* Hacer que los hijos se posicionen con flexbox */
  flex-direction: column; /* Apilar elementos verticalmente */
}
.tarifa-card-size {
    height: 6rem;
}
.tarifa-card a {
  text-decoration: none;
}
.tarifa-card h3 {
  font-size: 1.7rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 15px;
}

.tarifa-card .precio {
  color: #c8d42c;
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 20px;
}

.tarifa-card .precio span {
  font-size: 0.9rem;
  color: #bbbbbb;
}

.tarifa-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
  color: #ffffff;
  flex-grow: 1;
}

.tarifa-card ul li {
  font-size: 0.95rem;
  position: relative;
  padding-left: 40px;
  margin-bottom: 10px;
}

.tarifa-card ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #c8d42c;
  font-weight: bold;
}

.btn-inscribirse {
  background-color: #c8d42c;
  color: #000;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  display: block;
  margin: 0 auto 20px;
  margin-top: auto; /* Empujar hacia el final del contenedor */
}

.btn-inscribirse:hover {
  background-color: #e4e659;
}



.contacto-info {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

.contacto-info div {
  text-align: center;
}

.contacto-info i {
  font-size: 1.5rem;
  color: #c8d42c;
  margin-bottom: 10px;
}

.contacto-info p {
  font-size: 0.9rem;
}

.dual-sliders {
  background-color: #1e1e1e;
  padding: 60px 20px;
}

.container-sliders {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.slider-wrapper {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  flex-wrap: wrap;
  border-radius: 15px;
}

.slider {
  position: relative;
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slider img {
  border-radius: 15px;
  width: 100%;
  display: block;
}

button.prev,
button.next {
  width: 45px;
  height: 45px;
  font-size: 1.1rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #9b9b9b66;
  color: #fff;
  border: 2px solid #fff;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
}

button.prev {
  left: 10px;
}

button.next {
  right: 10px;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 10px 0;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background-color: #c8d42c;
}

.cta-section {
  width: 75%;
  margin: 0 auto;
  color: #ffffff; /* Texto blanco */
  text-align: center;
}

.cta-content h1 {
  width: 90%;
  margin: 0 auto;
  font-family: Montserrat;
  font-weight: bold;
  font-size: 2.8rem; /* Tamaño del título */
  margin-bottom: 20px;
}

.cta-content p {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 1.2rem; /* Tamaño del párrafo */
}

.cta-content p b {
  font-weight: bold;
}


.contact-form-section {
  color: #fff;
  width: 100%;
}
.contact-form-section .blackground {
  background-color: #000;
  border-radius: 40px;
  width: 90%;
  margin: 0 auto;
  padding-top: 4rem;
  }

.form-container {
  width: 90%;
  margin: 0 auto;
  border: 2px solid #fff;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  border-radius: 20px;
}
.form-container .contact-btn {
  padding: 0.5rem 1rem;
  background-color: #c8d42c;
  font-size: 1rem;
  color: white;
  width: 100%;
  margin: 0 auto;
  padding: 20px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.form-content {
  width: 45%;
  padding: 2rem;
}

.form-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #fff;
}

.form-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  margin-bottom: 20px;
  color: #bbb;
}

.form-content .contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form .form-group {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  color: #fff;
  background-color: #333;
  border: 1px solid #555;
  border-radius: 8px;
}

.contact-form textarea {
  resize: none;
  height: 80px;
}

.contact-form button {
  background-color: #d9e000;
  color: #ffffff;
  padding: 15px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #c4cd00;
}

.form-image {
  height: 100%;
  width: 100;
  flex: 1;
  text-align: center;
}

.form-image img {
  height: 100%;
  max-width: 80%;
  border-radius: 20px;
}

.captcha-container {
  text-align: center;
  margin: 20px 0;
}

.captcha-placeholder {
  background-color: #333;
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
}

.branch-section {
  background-color: #111;
  padding: 60px 20px;
  text-align: center;
}

.branch-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.branch {
  background-color: #1e1e1e;
  border-radius: 15px;
  padding: 20px 30px;
  color: #fff;
  flex: 1 1 calc(50% - 20px); /* Cada tarjeta ocupa el 50% menos el gap */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  min-width: 300px;
  max-width: 48%; /* Limita el ancho máximo */
}

.branch-title {
  font-size: 1.5rem;
  color: #d9e000;
  margin-bottom: 10px;
}

.branch-subtitle {
  font-size: 1rem;
  margin-bottom: 20px;
}

.branch-icons {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  margin-top: 20px;
}

.icon-block {
  text-align: center;
  flex: 1;
}

.icon-block i {
  font-size: 2rem;
  color: #d9e000;
  margin-bottom: 10px;
}

.icon-block p {
  margin: 5px 0;
}

.icon-block a {
  color: #d9e000;
  text-decoration: none;
}

.icon-block a:hover {
  text-decoration: underline;
}

/* Responsivo para pantallas pequeñas */
@media (max-width: 768px) {
header {
      position: relative; /* Aseguramos que el header esté posicionado para el menú desplegable */
  }

    nav {
       width: 160px;
        position: fixed;
        right: 10px;
        top: 50px;
    }
    .contacto-btn {
        background-color: transparent;
    }
  .menu {
      background-color: black;
      display: none;  /* Ocultar el menú por defecto */
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;  /* Aseguramos que el menú se expanda desde la izquierda */
      width: 100%;  /* Aseguramos que el menú ocupe todo el ancho */
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .menu.show {
      display: flex;  /* Mostrar el menú cuando se haga clic */
  }
  .menu ul{
    background-color: #FFFFFF;
  }
  .menu li {
      width: 100%;
      text-align: left;  /* Alineamos los elementos a la izquierda */
      padding: 1rem 0;  /* Aumentar espacio entre los elementos del menú */
  }
  .menu-icon {
      display: block;  /* Mostrar el icono de hamburguesa en pantallas pequeñas */
  }

  .menu a {
      color: #FFFFFF;
      font-size: 18px;  /* Aumentar el tamaño de la fuente en pantallas pequeñas */
      padding-left: 1rem;  /* Asegurarnos de que el texto no se pegue al borde */
  }

  .hero {
    position: relative;
    background-image: url('background.webp'); /* Sustituye con tu imagen de fondo */
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
    z-index: 0;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Negro con 40% de opacidad */
    z-index: -1; /* Envía la capa detrás del contenido */
    pointer-events: none; /* Permite la interacción con el contenido del contenedor */
    }

  .hero-content h1 {
    font-family: Montserrat;
    font-weight: bold;
    font-size: 2rem;
  }

  .hero-content p {
    font-family: Montserrat;
    margin-bottom: 1rem;
  }
  .language-selector {
    display: flex;
    position: relative;
  }
  .hero-content a {
    width: 200px;
  }
  .language-select {
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 400;
    appearance: none; /* Elimina el estilo por defecto del navegador */
    -webkit-appearance: none;
    -moz-appearance: none;
    font-size: 16px;
    padding: 0.2rem 1rem;
    background-color: white;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 2px;
    width: 89px; /* Ajusta el ancho según tus necesidades */
  }

  .cta-btn {
    font-family: Montserrat;
    font-size: 16px;
    display: inline-block;
    line-height: 22.86px;
    padding: 0.8rem 1.5rem;
    background-color: #c8d42c;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bolder;
    box-shadow: 2px 2px 20px 0px #FFFFFF45;
  }

  .cta-btn:hover {
    background-color: #c8d42c;
  }
    /* Highlights Section */
  .highlights {
    background-color: #c8d42c;
    padding: 1rem 1rem;
    padding-bottom: 2rem;
    display: flex;
    justify-content: space-around;
    text-align: center;
    color: white;
  }

  .highlight-item h3 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .highlight-item p {
    font-size: 0.7rem;
    margin: 0;
  }
  /* Locations Section */
.locations {
  position: relative;
  background-image: url('background2.png'); /* Sustituir por la imagen de referencia */
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 3rem 1rem;
  z-index:0;
}
.locations::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* Negro con 40% de opacidad */
  z-index: -1; /* Envía la capa detrás del contenido */
  pointer-events: none; /* Permite la interacción con el contenido del contenedor */
  }

.locations h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: bolder;
}
.locations .location-box {
  display: flex;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}
.location-box .location {
  flex: 0 1 calc(50% - 1rem);
  box-sizing: border-box;
  font-family: Montserrat;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  padding: 0.5rem;
  border-radius: 10px;
}

.location-info {
  text-align: center;
}
.location i {
  font-size: 20px;
  width: 25px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #C7D52B;

}

.location-info p {
  padding: 0.8rem;
  font-weight: 700;
  font-size: 0.6rem;
  margin-bottom: 0.6rem;
  width: 70%;
  margin: 0 auto;
}

.cta-btn {
  padding: 0.5rem 1rem;
  background-color: #c8d42c;
  font-size: 0.5rem;
  color: #fff;
  width: 80%;
  margin: 0 auto;
  padding: 5px 17px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: bold;
}

.cta-btn:hover {
  background-color: #c8d42c;
}
/* editar captcha */
.g-recaptcha {
        transform: scale(0.85);
        transform-origin: 0 0;
    }
/* botones academias */
.botones-escuelas {
  padding: auto;
}
.academia-botones {
  font-size: 4rem;
}
 /* Testimonios */
.testimonios {
background-color: #c8d42c;
text-align: center;
padding: 60px 20px;
}

.testimonios .section-title {
font-family: Montserrat;
font-weight: 700;
color: #fff;
font-size: 2.2rem;
margin-bottom: 20px;
}

.testimonios-grid {
display: flex;
justify-content: center;
align-items: center;
gap: 1.5rem;
flex-wrap: wrap;
}

.testimonio {
flex: 0 1 calc(30% - 1rem);
  box-sizing: border-box;
}
.testimonio h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: bolder;
}

.testimonio p {
font-family: Montserrat;
font-style: italic;
font-size: 0.5rem;
margin-bottom: 10px;
}
.testimonio img {
width: 60%;
height: 10%;
}
.testimonio span {
font-family: Montserrat;
font-weight: 700;
font-size: 0.5rem;
}

/* Academias */
.academias {
background-color: #222;
color: #fff;
padding: 60px 20px;
text-align: center;
align-items: center;
}
.academias .container {
font-family: Montserrat;
width: 100%;
margin: 0 auto;
text-align: center;
}

.academias .section-title {
font-family: Montserrat;
font-size: 1.5rem;
margin-bottom: 20px;
}

.academias .section-description {
width: 100%; /* El texto ocupa el 70% del contenedor */
margin: 0 auto; /* Centra el texto dentro del contenedor */
font-family: Montserrat;
text-align: justify;
font-size: 0.6rem;
margin-bottom: 30px;
color: #fff;
text-align: center;
}
.academias hr {
width: 30%;
margin: 0 auto;
font-weight: bold;
}
.academias-buttons {
margin: 0 auto;
width: 50%;
display: flex;
justify-content: center;
align-items: center;
padding-bottom: 20px;
font-size: 0.6rem;
}

.academias .boton-escuela {
margin: 1%;
font-family: Montserrat; /* Fuente Montserrat */
width: 22%;
font-weight: bolder;
border: 2px solid #FFFFFF; /* Borde blanco */
border-radius: 10px; /* Bordes ligeramente redondeados (opcional) */
font-size: 0.3rem; /* Tamaño de fuente */
cursor: pointer; /* Cambia el cursor al pasar el mouse */
transition: background-color 0.3s, color 0.3s; /* Animación para efectos */
line-height: 42px;
padding: 0;
}

.boton-escuela:hover {
background-color: #555; /* Fondo gris más claro al pasar el mouse */
color: #d9e000; /* Cambia el color de la letra al pasar el mouse */
}

.academias .boton-escuela-selected {
background-color: #d9e000; /* Fondo gris más claro al pasar el mouse */
color: #090908; /* Cambia el color de la letra al pasar el mouse */
}

.academias .boton-escuela-unselected {
background-color: #333; /* Fondo gris oscuro */
color: #fff; /* Letra blanca */
}

.academias-buttons button {
margin: 0 auto;
background-color: #d9e000;
font-size: 0.4rem;
border: none;
padding: 2px 10px;
cursor: pointer;
font-weight: 400;
position: relative;
text-align: center;
background-color: #e9eeab;
border: 2px solid #FFFFFF
}

.academias-buttons .selected {
background-color: #c8d42c !important;
font-weight: bold !important;
}

.academias-buttons button:hover {
background-color: #c8d42c;
font-weight: bold;
}

.academias-buttons button:not(:last-child)::after {
content: ' ';
position: absolute;
top: 0;
right: 0;
width: 1px;
height: 100%;
background-color: #000000; /* Color de la línea divisoria */

}

.academias-buttons .left-button {
    width: 50%;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    background-color: #e9eeab;
    border: 2px solid #FFFFFF
}

.academias-buttons .right-button {
width: 50%;
border-top-right-radius: 20px;
border-bottom-right-radius: 20px;
background-color: #e9eeab;
border: 2px solid #FFFFFF
}
.academias-grid {
width: 100%;
display: grid;
grid-template-columns: repeat(2, 1fr); /* Dos columnas */
grid-template-rows: auto; /* Filas automáticas */
gap: 2rem; /* Espaciado entre elementos */
overflow: hidden; /* Oculta el contenido extra */
max-height: 550px;
}

.academias-grid-caes {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Dos columnas */
    grid-template-rows: auto; /* Filas automáticas */
    gap: 2rem; /* Espaciado entre elementos */
    overflow: hidden; /* Oculta el contenido extra */
    max-height: 550px;
}

.academia-card {
background-color: #333;
padding: 10px;
color: #ffffff;
border-radius: 30px;
border: 2px solid #fff;
text-align: left;
display: flex; /* Activa flexbox */
flex-direction: column; /* Alinea los hijos en una columna */
justify-content: space-between; /* Distribuyxe el espacio entre los hijos */
}
.academia-card:hover{
background-color: #c8d42c;
color: #000000;

}

.academia-card h3 {
font-family: Montserrat;
font-size: 1rem;
font-weight: 700;
margin: 0;
}

.academia-card p {
font-family: Montserrat;
font-size: 0.5rem;
margin-bottom: 15px;
margin-top: 0;
margin-bottom: 15%;

}
.academia-card img {
height: 17%;
width: 17%;
}

.academia-card a {
font-family: Montserrat;
background-color: #000;
font-size: 0.6rem;
color: #fff;
width: 60%;
margin: 0 auto;
border-radius: 20px;
text-decoration: none;
font-weight: bold;
display: inline-block;
text-align: center;
padding: 10px 20px;
box-shadow: 2px 2px 20px 0px #FFFFFF45;

}

.ver-mas {
font-family: Montserrat;
background-color: #d9e000;
color: #fff;
border: none;
font-size: 1rem;
padding: 10px 20px;
margin-top: 30px;
cursor: pointer;
font-weight: 700;
border-radius: 5px;
box-shadow: 2px 2px 20px 0px #FFFFFF45;
}

.ver-mas-caes {
    font-family: Montserrat;
    background-color: #d9e000;
    color: #fff;
    border: none;
    font-size: 1rem;
    padding: 10px 20px;
    margin-top: 30px;
    cursor: pointer;
    font-weight: 700;
    border-radius: 5px;
    box-shadow: 2px 2px 20px 0px #FFFFFF45;
}

/* Content overlay */
.carousel-content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
color: #fff;
z-index: 2; /* Asegura que el contenido esté sobre la capa negra */
}

.carousel-content h2 {
text-transform: uppercase;
font-size: 2rem;
font-weight: bold;
margin-bottom: 10px;
text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

.carousel-content p {
font-size: 0.7rem;
margin-bottom: 15px;
text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

.carousel-btn {
padding: 0.5rem 1.6rem;
background-color: #c2d03d;
color: #000;
border: none;
cursor: pointer;
font-weight: bold;
font-size: 0.7rem;
border-radius: 5px;
}

.carousel-btn:hover {
background-color: #b0c136;
}

.atletismo-section .intro-text {
text-align: center;
font-size: 0.7rem;
margin-bottom: 1rem;
line-height: 1.6;
color: #ccc;
}

/* Card Styles */
.benefit-card,
.range-card,
.tariff-card {
font-size: 0.8rem;
background-color: #222;
border: 2px solid #c7d52b;
border-radius: 100px; /* Aumentamos el redondeado */
padding: 20px 30px;
margin-bottom: 20px;
display: flex;
align-items: center;
gap: 30px;
position: relative;
}


/* Tarifas Section */
.tariff-details .highlight {
font-size: 1rem;
font-weight: bold;
color: #c7d52b;
}
.tarifas {
background-color: #1e1e1e;
color: #ffffff;
padding: 60px 20px;
}
.tarifas .tarifas-buttons{
font-family: Montserrat;
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
justify-content: center;
width: 80%;
margin: 0 auto;
padding-top: 40px;
}
.tarifas .tarifas-grid{
padding-bottom: 40px;
}
.tarifas .section-title {
font-family: Montserrat;
font-size: 1.5rem;
margin-bottom: 20px;
text-align: center;
}

.tarifas-options {
display: flex;
justify-content: center;
gap: 15px;
margin-bottom: 30px;
}

.tarifas-options button {
background-color: #d9e000;
color: #000;
font-weight: bold;
border: none;
padding: 10px 20px;
border-radius: 20px;
cursor: pointer;
transition: background-color 0.3s ease;
}

.tarifas-options button:hover,
.tarifas-options button.active {
background-color: #c3c200;
}

.tarifas-grid {
font-family: Montserrat;
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 0.5rem;
justify-content: center;
width: 90%;
margin: 0 auto;
}

.tarifa-card {
background-color: #333333;
border-radius: 15px;
padding: 30px 20px;
text-align: left;
border: 1px solid #fff;
}


.tarifa-card h3 {
color: #ffffff;
font-size: 0.8rem;
text-align: center;
margin-bottom: 15px;
}

.tarifa-card .precio {
font-size: 0.5rem;
text-align: center;
color: #d9e000;
margin-bottom: 20px;
}
.tarifa-card .membresia {
font-size: 0.5rem;
text-align: center;
color: #ffffff;
margin-bottom: 20px;

}

.tarifa-card .precio span {
font-size: 0.5rem;
color: #bbbbbb;
}

.tarifa-card ul {
list-style: none;
padding: 0;
margin: 0;
color: #ffffff;
}

.tarifa-card ul li {
font-family: Montserrat;
position: relative;
padding-left: 1rem;
margin-bottom: 15px;
font-size: 0.5rem;
margin-bottom: 10px;
}

.tarifa-card ul li::before {
  content: '\2713'; /* Unicode para el checkmark ✔ */
  font-size: 0.4rem;
  font-weight: bold;
  color: #d9e000; /* Color del check */
  border-radius: 50%; /* Hace que sea un círculo */
  border: 1px solid #d9e000;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 10px; /* Tamaño del círculo */
  height: 10px; /* Tamaño del círculo */
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); /* Sombra suave */
  clip-path: polygon(0% 0%, 50% 0%, 100% 50%, 100% 100%, 0% 100%, 0% 0%);
}

.tarifa-card .btn-inscribirse {
font-family: Montserrat;
display: block;
width: 90%;
margin: 0 auto;
font-size: 0.5rem;
background-color: #d9e000;
color: #000;
font-weight: bold;
padding: 5px 10px;
border: none;
border-radius: 15px;
margin-top: 20px;
cursor: pointer;
text-align: center;
transition: background-color 0.3s ease;
}

.tarifa-card .btn-inscribirse:hover {
background-color: #c3c200;
}


.btn-inscribirse {
background-color: #d9e000;
border: none;
padding: 10px 20px;
cursor: pointer;
font-weight: bold;
border-radius: 5px;
margin-top: 15px;
}

/* Bienestar Section */
.bienestar .container {
width: 90%;
margin: 0 auto;
text-align: center;
}

.bienestar {
position: relative; /* Necesario para que el ::before se posicione dentro del contenedor */
background-image: url('../bienestar-background.webp'); /* Ruta de tu imagen */
background-size: cover;
background-position: center;
color: #fff;
padding: 80px 20px;
text-align: center;
z-index: 0; /* Asegura que el contenido esté por encima de la capa */
}

/* Capa sobrepuesta */
.bienestar::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.4); /* Negro con 40% de opacidad */
z-index: -1; /* Envía la capa detrás del contenido */
pointer-events: none; /* Permite la interacción con el contenido del contenedor */
}

.bienestar .section-title {
font-family: Montserrat;
font-size: 1rem;
margin-bottom: 20px;
}

.bienestar .section-description {
font-family: Montserrat;
font-size: 0.5rem;
margin-bottom: 30px;
}

button:disabled {
background-color: #cccccc;
cursor: not-allowed;
opacity: 0.7;
}

.contact-form-footer {
display: flex;
justify-content: center;
}
.input-group-footer {
width: 60%;
margin: 0 auto;
display: flex;
border-radius: 30px; /* Borde redondeado uniforme */
overflow: hidden; /* Evita que sobresalgan los bordes */
background-color: rgba(50, 50, 50, 0.7); /* Fondo gris oscuro transparente */
}
.contact-form-footer input {
font-family: Montserrat;
padding: 5px 10px;
border: none;
font-size: 0.4rem;
background-color: transparent; /* Fondo gris oscuro con transparencia */
color: #fff; /* Letras blancas */
border-radius: 30px; /* Redondeado solo a la izquierda */
outline: none; /* Elimina el borde al seleccionar */
}
.contact-form-footer input::placeholder {
color: rgba(255, 255, 255, 0.7);
}
.contact-form-footer button {
font-family: Montserrat;
background-color: #d9e000;
color: #fff;
border: none;
font-size: 0.6rem;
padding: 5px 10px;
cursor: pointer;
font-weight: bold;
border-radius: 30px;
outline: none;
}
/* Footer Styling */
.footer {
background-color: #1e1e1e;
color: #c7d52b;
padding: 40px 20px;
font-family: 'Montserrat', Arial, sans-serif;
}


/* Logo */
.footer-logo img {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 10px;
  }

/* Redes sociales */

.footer-social {
display: flex;
justify-content: center;
gap: 0.4rem;
margin-bottom: 30px;
}

.footer-social a {
font-size: 1rem;
color: #c7d52b;
text-decoration: none;
transition: color 0.3s ease;
}

.footer-social a:hover {
color: #fff;
}
.footer-social i {
color: #fff;
font-size: 13px;
width: 20px;
height: 20px;
display: inline-flex;
align-items: center;
justify-content: center;
text-align: center;
border-radius: 50%;
border: 1px solid #C7D52B;
}
.footer-social img {
  color: #fff;
  width: 13px;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #C7D52B;
  }

/* Footer Links */
.footer-links {
display: grid; /* Cambia a CSS Grid */
grid-template-columns: repeat(2, 1fr); /* Tres columnas */
grid-template-rows: repeat(2, auto); /* Dos filas automáticas */
gap: 0.3rem; /* Espaciado entre columnas y filas */
justify-content: center; /* Centra el contenido */
}

.footer-column {
font-family: Montserrat;
text-align: left;
max-width: 45%;
justify-content: center;
flex-wrap: wrap;
}

.footer-column h4 {
font-weight: 400;
font-size: 1rem;
}

.footer-column ul {
list-style: none;
padding: 0;
margin: 0;
}

.footer-column ul li {
margin-bottom: 5px;
}

.footer-column ul li a {
text-decoration: none;
color: #fff;
font-size: 0.8rem;
font-weight: 400;
transition: color 0.3s ease;
}

.footer-column ul li a:hover {
color: #c7d52b;
}

/* Gimnasio Section */
.gimnasio {
  color: #ffffff; /* Texto blanco */
  padding: 60px 20px; /* Espaciado interno */
  text-align: center; /* Centrar contenido */
}

.gimnasio .container {
  width: 90%; /* Ajusta el ancho */
  margin: 0 auto; /* Centra el contenedor */
}


.gimnasio .section-title {
  font-family: 'Montserrat', sans-serif; /* Fuente */
  font-size: 2rem; /* Tamaño del título */
  font-weight: 700; /* Negrita */
  margin-bottom: 30px; /* Espacio debajo del título */
}

.gimnasio-content {
  display: flex; /* Distribución en fila */
  gap: 1.5rem; /* Espaciado entre los párrafos */
  text-align: justify; /* Justificar texto */
}

.gimnasio-content p {
  font-family: 'Montserrat', sans-serif; /* Fuente */
  font-size: 0.8rem; /* Tamaño del texto */
  line-height: 1.8; /* Altura de línea */
  flex: 1; /* Los párrafos ocupan el mismo espacio */
}

.gimnasio-content strong {
  color: #ffffff; /* Negrita en blanco */
}

.tarifas-buttons-sedes {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.2rem;
}
.sedes-tarifas .section-title {
  margin: auto;
  text-align: center;
  width: 80%;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 30px;
}

/* Información */
.sede-info {
  padding-top: 1rem;
  display: block;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 1rem;

}
.sede-info .border-sede{
  font-family: Montserrat;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #C7D52B;
}
.sede-info img {
  width: 1.5rem;
}
.dias-horarios {
  display: grid;
  grid-template-columns: 0.6fr 1fr; /* Dos columnas iguales */
  gap: 0rem; /* Espaciado entre las columnas */
  width: 100%
}

.dias{
  width: 100%;
  font-weight: 700;
}
.day-hour {
  border-right: 2px solid #FFFFFF;
  font-weight: bold;
}
.info-item {
  text-align: center;
  flex: 1;
  margin: 0 10px;
  padding-bottom: 1.5rem;
}

.info-item i {
  font-size: 2rem;
  color: #c7d52b;
  margin-bottom: 10px;
}
.info-item .sede-subtitle {
  text-align: center;
  font-size: 0.7rem;
  color: #c7d52b;
  font-weight: 700;
  padding: 0.2rem;
}
.info-item p {
  font-size: 0.45rem;
  margin: 0;
}

.dual-sliders {
  background-color: #1e1e1e;
  padding: 60px 20px;
}

.container-sliders {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.slider-wrapper {
  width: 90%;
  display: flex;
  gap: 0.2rem;
  justify-content: space-between;
  flex-wrap: wrap;
  border-radius: 15px;
}

.slider {
  position: relative;
  width: 100%;
  max-width: 45%;
  border-radius: 15px;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slider img {
  border-radius: 15px;
  width: 100%;
  display: block;
}

button.prev,
button.next {
  width: 29px;
  height: 29px;
  font-size: 7px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #9b9b9b66;
  color: #fff;
  border: 2px solid #fff;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
}

button.prev {
  left: 10px;
}

button.next {
  right: 10px;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 1px 0;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background-color: #c8d42c;
}
.cta-section {
  width: 75%;
  margin: 0 auto;
  color: #ffffff; /* Texto blanco */
  text-align: center;
}

.cta-content h1 {
  padding-top: 2rem;
  width: 90%;
  margin: 0 auto;
  font-family: Montserrat;
  font-weight: bold;
  font-size: 2rem; /* Tamaño del título */
  margin-bottom: 20px;
}

.cta-content p {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 1rem; /* Tamaño del párrafo */
}

.cta-content p b {
  font-weight: bold;
}

.contact-form-section {
  color: #fff;
  width: 100%;
}
.contact-form-section .blackground {
  background-color: #000;
  border-radius: 40px;
  width: 90%;
  margin: 0 auto;
  padding-top: 4rem;
  }

.form-container {
  width: 90%;
  margin: 0 auto;
  border: 2px solid #fff;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  border-radius: 20px;
}
.form-container .contact-btn {
  background-color: #c8d42c;
  font-size: 0.5rem;
  color: white;
  width: 100%;
  margin: 0 auto;
  padding: 4px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.form-content {
  margin-left: 1rem;
  width: 80%;
  padding: 1rem;
}

.form-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: #fff;
}

.form-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  margin-bottom: 20px;
  color: #bbb;
}

.form-content .contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-form .form-group {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
  width: 100%;
  font-size: 0.4rem;
  color: #fff;
  background-color: #333;
  border: 1px solid #555;
  border-radius: 8px;
}

.contact-form textarea {
  resize: none;
  height: 80px;
}

.contact-form button {
  background-color: #d9e000;
  color: #ffffff;
  padding: 15px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #c4cd00;
}

.form-image {
  height: 100%;
  width: 100;
  flex: 1;
  text-align: center;
}

.form-image img {
  height: 320px;
  width: 100%;
  border-radius: 20px;
}

.captcha-container {
  text-align: center;
  margin: 20px 0;
}

.captcha-placeholder {
  background-color: #333;
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
}

/* Tarjetas */
.sede-card {
  font-family: 'Montserrat', sans-serif;
  padding: 1rem;
  width: 100%; /* Ocupa todo el ancho disponible en la celda */
  text-align: left;
  box-sizing: border-box; /* Incluye padding y borde dentro del ancho total */
  display: flex;
  flex-direction: column; /* Asegura que el contenido interno esté en columna */
  justify-content: space-between; /* Distribuye uniformemente el contenido interno */
}

.sede-card .sede-title {
  height: 45px;
  align-content: center;
  flex-grow: 1;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #c7d52b;
}

.sede-card .sede-description {
  height: 80px;
  align-content: center;
  flex-grow: 1;
  font-size: 0.6rem;
  font-weight: 400;
  text-align: center;
}
/* Benefit List */
.benefit-list {
display: flex;
justify-content: space-between;
gap: 20px;
flex-grow: 1; /* Ocupar todo el espacio restante */
width: 70%;
}

.benefit-list ul {
list-style: none;
padding: 0;
margin: 0;
}

.benefit-list ul li {
font-family: Montserrat;
position: relative;
padding-left: 1.2rem;
margin-bottom: 15px;
font-size: 0.4rem;
margin-bottom: 1rem;
}
.benefit-list ul li::before {
  content: '\2713'; /* Unicode para el checkmark ✔ */
  font-size: 0.5rem;
  font-weight: bold;
  color: #d9e000; /* Color del check */
  border-radius: 50%; /* Hace que sea un círculo */
  border: 1px solid #d9e000;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 0.6rem; /* Tamaño del círculo */
  height: 0.6rem; /* Tamaño del círculo */
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); /* Sombra suave */
  clip-path: polygon(0% 0%, 50% 0%, 100% 50%, 100% 100%, 0% 100%, 0% 0%);
}

/* Icon and Title */
.icon-title {
display: flex;
align-items: center; /* Ícono y h3 en la misma línea */
width: 25%;
position: relative;
height: 100%;
flex-wrap: wrap; /* Permite que el párrafo baje a la siguiente línea */
}

.icon-title .icon {
margin: auto;
width: 1.5rem;
height: 1.5rem;
border-radius: 50%;
}

.icon-title .icon img {
width: 100%;
height: 100%;
}

.icon-title h3 {
font-size: 0.6rem;
font-weight: bold;
color: #fff;
margin: 0;
text-align: left;
}

.icon-title p {
padding-top: 0.5rem;
font-family: Montserrat;
color: #c7d52b;
font-size: 0.4rem;
text-align: center;
margin: 0;
width: 100%; /* Asegura que el párrafo ocupe todo el ancho disponible */
}

/* Sección General */
.sedes {
  background-color: #1e1e1e;
  color: #fff;
  padding: 50px 20px;
  text-align: center;
}
.sedes .blackground {
  background-color: #000;
  border-radius: 40px;
  width: 98%;
  margin: 0 auto;
}
.sedes .section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  color: #ffffff;
  margin-bottom: 40px;
}

/* Links Inferiores */
.links {
  padding-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr; /* Dos columnas iguales */
  gap: 0.2rem; /* Espaciado entre las columnas */
}
.links-item{
  text-align: center;
}


.link-item {
  color: #c7d52b;
  text-decoration: none;
  font-size: 0.6rem;
}

.link-item i {
  margin-right: 5px;
}
.links .border-sede{
  font-family: Montserrat;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #C7D52B;
}
.links img {
  width: 1.2rem;
}
.links i{
  font-size: 40px;
  font-family: Montserrat;
  width: 55px;
  height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #C7D52B;
}


}



