#demo-bar {
  width: 100%;
  background: rgba(255, 215, 0, 0.4);
  color: #0A1628;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  overflow: hidden;
}
#demo-bar a {
  color: #0A1628;
  font-weight: 700;
  text-decoration: underline;
}
#demo-bar a:hover {
  opacity: 0.8;
}
#demo-bar.oculto {
  height: 0;
  padding: 0;
  opacity: 0;
}

#navbar {
  padding: 1.2rem 0;
  transition: all 0.3s ease;
  background: rgba(10, 22, 40, 0.85);
}
#navbar .navbar-brand {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 1px;
}
#navbar .navbar-brand span {
  color: #FFD700;
}
#navbar .nav-link {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #FFFFFF;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}
#navbar .nav-link:hover {
  color: #FFD700;
}
#navbar .btn-nav {
  background: #FFD700;
  color: #0A1628 !important;
  font-weight: 700;
}
#navbar .btn-nav:hover {
  background: #FFC200;
  color: #0A1628 !important;
}
#navbar.scrolled {
  background: #0A1628;
  padding: 0.8rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.navbar-toggler {
  border-color: #FFD700;
}
.navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 215, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

#hero {
  position: relative;
  min-height: 100vh;
  background-image: url("../img/hero-gym.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
}
#hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.75);
}
#hero .container {
  position: relative;
  z-index: 1;
}
#hero .hero-contenido {
  padding: 2rem 0;
}
#hero .hero-subtitulo {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #FFD700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
#hero .hero-titulo {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 5rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
#hero .hero-titulo span {
  color: #FFD700;
}
#hero .hero-descripcion {
  margin: 0 auto 2.5rem auto;
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: #A0AEC0;
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
@media (min-width: 1200px) {
  #hero .hero-descripcion {
    margin: 0 0 2.5rem 0;
  }
}
#hero .hero-botones {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
#hero .btn-primario {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 2.5rem;
  background: #FFD700;
  color: #0A1628;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}
#hero .btn-primario:hover {
  background: #FFC200;
}
#hero .btn-secundario {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 2.5rem;
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}
#hero .btn-secundario:hover {
  border-color: #FFD700;
  color: #FFD700;
}
@media (max-width: 768px) {
  #hero .hero-titulo {
    font-size: 3rem;
  }
  #hero .hero-descripcion {
    font-size: 1rem;
  }
}

#servicios {
  background: #1E3A5F;
}
#servicios .seccion-subtitulo {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #FFD700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
#servicios .seccion-titulo {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
#servicios .seccion-titulo span {
  color: #FFD700;
}
#servicios .seccion-descripcion {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #A0AEC0;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}
#servicios .servicio-card {
  background: #0A1628;
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  border-bottom: 3px solid transparent;
}
#servicios .servicio-card:hover {
  transform: translateY(-8px);
  border-bottom: 3px solid #FFD700;
}
#servicios .servicio-card .servicio-icono {
  width: 70px;
  height: 70px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}
#servicios .servicio-card .servicio-icono i {
  font-size: 1.8rem;
  color: #FFD700;
}
#servicios .servicio-card:hover .servicio-icono {
  background: rgba(255, 215, 0, 0.2);
}
#servicios .servicio-card h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
#servicios .servicio-card p {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: #A0AEC0;
  line-height: 1.8;
  margin: 0;
}

#horarios {
  background: #1E3A5F;
}
#horarios .seccion-subtitulo {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #FFD700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
#horarios .seccion-titulo {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
#horarios .seccion-titulo span {
  color: #FFD700;
}
#horarios .seccion-descripcion {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #A0AEC0;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}
#horarios .horarios-tabla {
  background: #0A1628;
  border-radius: 8px;
  overflow: hidden;
}
#horarios .horario-fila {
  display: flex;
  align-items: center;
  padding: 1.5rem 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}
#horarios .horario-fila:last-child {
  border-bottom: none;
}
#horarios .horario-fila:hover {
  background: rgba(255, 215, 0, 0.05);
}
#horarios .horario-fila.destacado .dia,
#horarios .horario-fila.destacado .hora {
  color: #FFD700;
}
#horarios .horario-fila .dia {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  min-width: 200px;
}
#horarios .horario-fila .separador {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 1.5rem;
}
#horarios .horario-fila .hora {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #FFD700;
}
@media (max-width: 768px) {
  #horarios .horario-fila {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    padding: 1rem 1.5rem;
  }
  #horarios .horario-fila .separador {
    display: none;
  }
  #horarios .horario-fila .dia {
    font-size: 1.1rem;
    min-width: unset;
  }
  #horarios .horario-fila .hora {
    font-size: 1rem;
  }
}

#planes {
  background: #0A1628;
}
#planes .seccion-subtitulo {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #FFD700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
#planes .seccion-titulo {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
#planes .seccion-titulo span {
  color: #FFD700;
}
#planes .seccion-descripcion {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #A0AEC0;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}
#planes .plan-card {
  background: #1E3A5F;
  border-radius: 8px;
  padding: 2.5rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
#planes .plan-card:hover {
  border-color: #FFD700;
}
#planes .plan-card.destacado {
  background: #0A1628;
  border-color: #FFD700;
  transform: scale(1.03);
}
#planes .plan-card.destacado .btn-plan {
  background: #FFD700;
  color: #0A1628;
}
#planes .plan-card.destacado .btn-plan:hover {
  background: #FFC200;
}
#planes .plan-card .plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFD700;
  color: #0A1628;
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 1.2rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}
#planes .plan-card .plan-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
#planes .plan-card .plan-nombre {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
#planes .plan-card .plan-precio {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.2rem;
}
#planes .plan-card .plan-moneda {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFD700;
  margin-top: 0.5rem;
}
#planes .plan-card .plan-monto {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #FFD700;
  line-height: 1;
}
#planes .plan-card .plan-periodo {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: #A0AEC0;
  align-self: flex-end;
  margin-bottom: 0.5rem;
}
#planes .plan-card .plan-beneficios {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex: 1;
}
#planes .plan-card .plan-beneficios li {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: #FFFFFF;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
#planes .plan-card .plan-beneficios li:last-child {
  border-bottom: none;
}
#planes .plan-card .plan-beneficios li i {
  color: #FFD700;
  font-size: 0.9rem;
  width: 16px;
}
#planes .plan-card .plan-beneficios li.no-incluido {
  color: #A0AEC0;
  opacity: 0.5;
}
#planes .plan-card .plan-beneficios li.no-incluido i {
  color: #A0AEC0;
}
#planes .plan-card .btn-plan {
  display: block;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem;
  background: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}
#planes .plan-card .btn-plan:hover {
  background: #FFD700;
  color: #0A1628;
}

#testimonios {
  background: #1E3A5F;
}
#testimonios .seccion-subtitulo {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #FFD700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
#testimonios .seccion-titulo {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
#testimonios .seccion-titulo span {
  color: #FFD700;
}
#testimonios .seccion-descripcion {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #A0AEC0;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}
#testimonios .testimonio-card {
  background: #0A1628;
  border-radius: 8px;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}
#testimonios .testimonio-card:hover {
  transform: translateY(-5px);
  border-bottom: 3px solid #FFD700;
}
#testimonios .testimonio-card .testimonio-estrellas i {
  color: #FFD700;
  font-size: 0.9rem;
}
#testimonios .testimonio-card .testimonio-texto {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: #A0AEC0;
  line-height: 1.8;
  flex: 1;
  margin: 0;
  font-style: italic;
}
#testimonios .testimonio-card .testimonio-autor {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
#testimonios .testimonio-card .testimonio-avatar {
  width: 45px;
  height: 45px;
  background: rgba(255, 215, 0, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #FFD700;
  flex-shrink: 0;
}
#testimonios .testimonio-card .testimonio-nombre {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #FFFFFF;
  margin: 0;
}
#testimonios .testimonio-card .testimonio-plan {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  color: #FFD700;
  margin: 0;
}

#contacto {
  background: #0A1628;
}
#contacto .contacto-wrapper {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
#contacto .contacto-linea {
  display: flex;
  align-items: center;
  gap: 1rem;
}
#contacto .contacto-linea span {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}
#contacto .contacto-linea .seccion-subtitulo {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #FFD700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0;
}
#contacto .contacto-titulo {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #FFFFFF;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0;
}
#contacto .contacto-titulo span {
  color: #FFD700;
}
#contacto .contacto-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}
#contacto .chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: #1E3A5F;
  border-radius: 50px;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: #FFFFFF;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
#contacto .chip i {
  color: #FFD700;
}
#contacto .chip:hover {
  border-color: #FFD700;
  color: #FFD700;
}
#contacto .chip.no-link {
  cursor: default;
}
#contacto .chip.no-link:hover {
  border-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}
#contacto .contacto-form-minimo {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#contacto .form-input {
  width: 100%;
  background: #1E3A5F;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 0.9rem 1.2rem;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: #FFFFFF;
  transition: all 0.3s ease;
  outline: none;
  text-align: left;
}
#contacto .form-input::-moz-placeholder {
  color: #A0AEC0;
}
#contacto .form-input::placeholder {
  color: #A0AEC0;
}
#contacto .form-input:focus {
  border-color: #FFD700;
}
#contacto textarea.form-input {
  resize: none;
}
#contacto .btn-enviar {
  padding: 1rem;
  background: #FFD700;
  color: #0A1628;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
#contacto .btn-enviar:hover {
  background: #FFC200;
  gap: 1.2rem;
}

footer {
  background: #1E3A5F;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
footer .footer-marca {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0;
}
footer .footer-marca span {
  color: #FFD700;
}
footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
footer .footer-links a {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  color: #A0AEC0;
  text-decoration: none;
  transition: all 0.3s ease;
}
footer .footer-links a:hover {
  color: #FFD700;
}
footer .footer-redes {
  display: flex;
  justify-content: flex-end;
  gap: 0.8rem;
}
@media (max-width: 768px) {
  footer .footer-redes {
    justify-content: center;
  }
}
footer .footer-redes a {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A0AEC0;
  text-decoration: none;
  transition: all 0.3s ease;
}
footer .footer-redes a:hover {
  background: #FFD700;
  color: #0A1628;
}
footer .footer-redes a i {
  font-size: 0.85rem;
}
footer .footer-bottom {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
footer .footer-bottom p {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  color: #A0AEC0;
  margin: 0;
}
footer .footer-credit {
  margin-top: 0.3rem;
}
footer .footer-credit a {
  color: #FFD700;
  text-decoration: none;
  transition: all 0.3s ease;
}
footer .footer-credit a:hover {
  color: #FFC200;
}

.whatsapp-flotante {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 55px;
  height: 55px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}
.whatsapp-flotante i {
  font-size: 1.8rem;
  color: #ffffff;
}
.whatsapp-flotante:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}/*# sourceMappingURL=main.css.map */