*{

  margin:0;

  padding:0;

  box-sizing:border-box;
}
body {
  margin: 0;
  font-family: Arial;
  background: #000;
  color: white;
}

/* ================= NAVBAR ================= */

.nav{

  position:fixed;

  top:0;
  left:0;

  width:100%;

  height:90px;

  padding:0 5%;

  display:flex;

  justify-content:space-between;

  align-items:center;

  background:rgba(0,0,0,0.75);

  backdrop-filter:blur(12px);

  z-index:9999;

  border-bottom:
    1px solid rgba(255,255,255,0.05);
}

/* LOGO */

.logo-nav{

  width:95px;

  height:auto;

  object-fit:contain;

  display:block;
}

/* LINKS */

.nav-links{

  display:flex;

  align-items:center;

  gap:40px;
}

.nav-links a{

  color:white;

  text-decoration:none;

  font-weight:600;

  font-size:15px;

  transition:0.3s ease;

  position:relative;
}

/* HOVER */

.nav-links a:hover{

  color:#ff1a1a;
}

/* LINEA HOVER */

.nav-links a::after{

  content:'';

  position:absolute;

  left:0;
  bottom:-8px;

  width:0;

  height:2px;

  background:#d60000;

  transition:0.3s ease;
}

.nav-links a:hover::after{

  width:100%;
}

/* MENU MOBILE */

.menu-toggle{

  display:none;

  cursor:pointer;

  width:44px;

  height:44px;

  border:0;

  background:transparent;

  color:white;
}

.menu-toggle span{

  display:block;

  width:28px;

  height:3px;

  margin:6px auto;

  background:currentColor;

  border-radius:999px;

  transition:0.3s ease;
}

.menu-toggle.active span:nth-child(1){

  transform:translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2){

  opacity:0;
}

.menu-toggle.active span:nth-child(3){

  transform:translateY(-9px) rotate(-45deg);
}

.mobile-menu{

  position:fixed;

  top:80px;

  left:0;

  width:100%;

  display:none;

  flex-direction:column;

  gap:4px;

  padding:18px 5%;

  background:rgba(0,0,0,0.94);

  border-bottom:1px solid rgba(255,255,255,0.08);

  z-index:9998;
}

.mobile-menu.active{

  display:flex;
}

.mobile-menu a{

  color:white;

  text-decoration:none;

  font-weight:700;

  padding:16px 0;

  border-bottom:1px solid rgba(255,255,255,0.08);
}

/* ================= MOBILE ================= */

@media(max-width:768px){

  .nav {

    padding: 18px 5%;
  }

  /* OCULTAR LINKS */

  .nav-links {

    display: none;
  }

  /* MOSTRAR BOTÓN */

  .menu-toggle {

    display: block;
  }

  /* LOGO MÁS PEQUEÑO */

  .logo-nav {

    width: 70px;
  }

}


/* ================= RESPONSIVE ================= */
/* HERO */
.hero {
  padding-top:90px;
  height: 100vh;
  background-image: url('imgs/icons/logo.png');
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 62%;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,0.86) 0%,
      rgba(0,0,0,0.68) 42%,
      rgba(0,0,0,0.34) 100%
    );
}

/* HERO ANIMADO */
.hero {
  animation: zoomHero 12s ease-in-out infinite alternate;
}

@keyframes zoomHero {
  from {
    background-size: 58%;
  }

  to {
    background-size: 66%;
  }
}
.hero-content {
  padding: 0 10%;
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.hero h1 {
  font-size: 70px;
  line-height: 1.05;
  text-shadow: 0 8px 28px rgba(0,0,0,0.85);
}

.hero span {
  color: red;
}

.btn {
  margin-top: 25px;
  display: inline-block;
  background: #ff0000;
  padding: 16px 34px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  letter-spacing: 2px;
  transition: 0.3s ease;
  box-shadow: 0 0 20px rgba(255,0,0,0.3);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(255,0,0,0.6);
}
/* SECCIONES */
.section {
  padding: 100px 10%;
}

.fade{

    opacity:1;

    transform:none;

}

.fade.show{

    opacity:1;

    transform:none;

}
.line {
  width: 60px;
  height: 3px;
  background: red;
  margin-bottom: 30px;
}

/* GALERIA */
.gallery {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.gallery-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  align-items: center;
  gap: 36px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.gallery-section:last-child {
  border-bottom: 0;
}

.gallery-section.reverse .gallery-image {
  order: 2;
}

.gallery-section.reverse .gallery-copy {
  order: 1;
}

.gallery-image {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  overflow: hidden;
  border-radius: 10px;
  background: #111;
}

.gallery img {
  display: block;
  width: 100%;
  height: clamp(280px, 34vw, 430px);
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
  cursor: pointer;
}

.gallery img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.gallery-image img {
  height: 120px;
}

.gallery-image img:first-child {
  grid-column: 1 / -1;
  height: clamp(240px, 28vw, 360px);
}

.gallery-copy span {
  display: inline-block;
  margin-bottom: 12px;
  color: red;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.gallery-copy h3 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  text-transform: uppercase;
}

.gallery-copy p {
  max-width: 560px;
  margin: 0;
  color: #cfcfcf;
  font-size: 17px;
  line-height: 1.7;
}
.gallery-lightbox {

  position: fixed;

  inset: 0;

  display: flex;

  justify-content: center;

  align-items: center;

  padding: 24px;

  background: rgba(0,0,0,0.88);

  opacity: 0;

  visibility: hidden;

  cursor: zoom-out;

  z-index: 100000;

  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.gallery-lightbox.active {

  opacity: 1;

  visibility: visible;
}

.gallery-lightbox img {

  max-width: min(1100px, 94vw);

  max-height: 88vh;

  width: auto;

  height: auto;

  object-fit: contain;

  border-radius: 10px;

  box-shadow: 0 22px 70px rgba(0,0,0,0.55);
}
/* VIDEO */
.video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.video iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 0;
}


/* ================= PRECIOS ================= */

.pricing-section {

  position: relative;

  padding: 120px 8%;

  background:
    linear-gradient(
      rgba(0,0,0,0.88),
      rgba(0,0,0,0.94)
    ),
    url('imgs/gym-bg.jpg');

  background-size: cover;

  background-position: center;

  overflow: hidden;
}

/* TITLES */

.pricing-title {

  text-align: center;

  margin-bottom: 10px;
}

.pricing-subtitle {

  text-align: center;

  font-size: 72px;

  color: white;

  margin-bottom: 60px;

  font-family: 'Anton', sans-serif;

  text-transform: uppercase;

  letter-spacing: 2px;
}

/* ================= CARD ================= */

.price-card {

  display: block;

  margin-bottom: 26px;

  transition: 0.3s ease;
}

/* HEADER */

.price-header {

  display: flex;

  width: 100%;

  cursor: pointer;

  transition: 0.3s ease;
}

/* LEFT */

.price-left {

  flex: 1;

  background: #d60000;

  color: white;

  padding: 24px;

  font-size: 26px;

  font-weight: 700;

  display: flex;

  align-items: center;
  justify-content: center;

  text-align: center;

  font-family: 'Anton', sans-serif;

  text-transform: uppercase;

  clip-path:
    polygon(
      0 0,
      100% 0,
      92% 100%,
      0 100%
    );
}

/* SMALL */

.small {

  font-size: 18px;

  line-height: 1.4;
}

/* RIGHT */

.price-right {

  width: 280px;

  background: #050505;

  border: 2px solid #d60000;

  color: white;

  font-size: 48px;

  font-weight: 900;

  display: flex;

  align-items: center;
  justify-content: center;

  gap: 12px;

  font-family: 'Anton', sans-serif;

  text-shadow:
    0 0 10px rgba(255,255,255,0.2);
}

/* PLUS ICON */

.arrow {

  font-size: 28px;

  transition: 0.3s ease;
}

/* ROTATE */

.price-card.active .arrow {

  transform: rotate(45deg);
}

/* ================= DROPDOWN ================= */

.price-dropdown {

  max-height: 0;

  overflow: hidden;

  width: 100%;

  box-sizing: border-box;

  background: #0a0a0a;

  border-left: 2px solid #d60000;

  border-right: 2px solid #d60000;

  border-bottom: 2px solid #d60000;

  border-top: none;

  transition:
    max-height 0.45s ease,
    padding 0.35s ease;

  padding: 0 30px;
}

/* ACTIVE */

.price-card.active .price-dropdown {

  max-height: 400px;

  padding: 28px 30px;
}

/* LIST */

.price-dropdown ul {

  list-style: none;

  padding: 0;

  margin: 0;
}

/* ITEM */

.price-dropdown li {

  color: #e5e5e5;

  margin-bottom: 14px;

  font-size: 17px;

  padding-bottom: 12px;

  border-bottom:
    1px solid rgba(255,255,255,0.08);
}

/* NOTE */

.pricing-note {

  margin-top: 40px;

  text-align: center;

  color: #9a9a9a;

  font-size: 14px;

  letter-spacing: 1px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){

  .nav-links{

  display:none;
}

.menu-toggle{

  display:block;
}

.logo-nav{

  width:75px;
}

.nav{

  height:80px;
}
  .pricing-section {

    padding: 90px 5%;
  }

  .pricing-subtitle {

    font-size: 52px;
  }

  .logo {

    width: 170px;
  }

  .price-header {

    flex-direction: column;
  }

  .price-left {

    clip-path: none;

    font-size: 22px;
  }

  .price-right {

    width: 100%;

    padding: 22px;

    font-size: 38px;
  }

  .price-dropdown li {

    font-size: 15px;
  }

}


/* ================= HORARIOS ================= */

.schedule-container {

  width: 100%;

  overflow-x: auto;

  margin-top: 40px;
}

#schedule-table {

  width: 100%;

  border-collapse: collapse;

  min-width: 900px;

  background: #0a0a0a;

  border-radius: 14px;

  overflow: hidden;
}

#schedule-table th {

  background: #ff1a1a;

  color: white;

  padding: 18px;

  font-family: 'Bebas Neue', sans-serif;

  letter-spacing: 1px;

  font-size: 22px;
}

#schedule-table td {

  padding: 18px;

  text-align: center;

  border: 1px solid #1f1f1f;

  color: #ddd;
}

#schedule-table tr:nth-child(even) {

  background: #121212;
}

#schedule-table tr:hover {

  background: #1c1c1c;
}



/* ================= CONTACTO ================= */

.contact-container{

  display:grid;

  grid-template-columns: 1.1fr 1fr;

  gap:60px;

  align-items:start;

  margin-top:60px;
}

/* LEFT */

.contact-left{

  width:100%;
}

/* RIGHT */

.contact-right{

  display:flex;

  flex-direction:column;

  gap:24px;
}

/* FORM */

.contact-form{

  background:#0a0a0a;

  border:1px solid #1f1f1f;

  border-radius:16px;

  padding:40px;
}

/* TITLES */

.contact-form h3{

  font-size:42px;

  margin-bottom:12px;

  font-family:'Anton',sans-serif;
}

.contact-form p{

  color:#bbb;

  margin-bottom:30px;
}

/* INPUTS */

.contact-form input,
.contact-form textarea,
.contact-form select{

  width:100%;

  padding:18px;

  margin-bottom:18px;

  background:#050505;

  border:1px solid #222;

  color:white;

  outline:none;

  border-radius:10px;

  transition:0.3s ease;
}

/* FOCUS */

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus{

  border:1px solid #d60000;

  box-shadow:
    0 0 12px rgba(214,0,0,0.25);
}

/* TEXTAREA */

.contact-form textarea{

  min-height:140px;

  resize:none;
}

/* BUTTON */

.contact-form button{

  width:100%;

  padding:18px;

  background:#d60000;

  border:none;

  color:white;

  font-weight:700;

  letter-spacing:1px;

  border-radius:10px;

  cursor:pointer;

  transition:0.3s ease;
}

.contact-form button:hover{

  transform:translateY(-3px);

  background:#ff1a1a;
}

/* INFO CARDS */

.info-card{

  background:#0a0a0a;

  border:1px solid #1f1f1f;

  border-radius:16px;

  padding:28px;
}

.info-card h4{

  margin-bottom:16px;

  font-size:22px;
}

.info-card p{

  color:#ccc;

  line-height:1.8;
}

/* WHATSAPP */

.whatsapp-btn{

  display:flex;

  justify-content:center;

  align-items:center;

  background:#d60000;

  color:white;

  text-decoration:none;

  padding:18px;

  border-radius:12px;

  font-weight:700;

  transition:0.3s ease;
}

.whatsapp-btn:hover{

  background:#ff1a1a;

  transform:translateY(-3px);
}

/* MAP */

.map{

  overflow:hidden;

  border-radius:16px;

  border:1px solid #1f1f1f;
}

.map iframe{

  width:100%;

  height:280px;

  border:none;
}

/* MOBILE */

@media(max-width:900px){

  .contact-container{

    grid-template-columns:1fr;
  }

}

/* BOTÓN */
/* WHATS */
/* BOTÓN FLOTANTE */

/* ================= WHATSAPP FLOAT ================= */

.whatsapp-float{

  width:70px;

  height:70px;

  border-radius:50%;

  background:#25D366;

  display:flex;

  justify-content:center;

  align-items:center;

  z-index:99999;

  box-shadow:
    0 0 20px rgba(37,211,102,0.45);

  transition:0.3s ease;

  animation:pulse 2s infinite;
}

/* ICONO */

.whatsapp-float img{

  width:38px;

  height:auto;
}

/* HOVER */

.whatsapp-float:hover{

  transform:scale(1.1);
}

/* ANIMACION */

@keyframes pulse{

  0%{

    transform:scale(1);
  }

  50%{

    transform:scale(1.05);
  }

  100%{

    transform:scale(1);
  }

}
/* RESPONSIVE */
@media(max-width:900px){
  .hero {
    background-position: 78% center;
  }

  @keyframes zoomHero {
    from {
      background-size: 92%;
    }

    to {
      background-size: 105%;
    }
  }

  .hero h1 { font-size: 40px; }

  .gallery-section,
  .gallery-section.reverse {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .gallery-section.reverse .gallery-image,
  .gallery-section.reverse .gallery-copy {
    order: initial;
  }

  .gallery img {
    height: 300px;
  }

  .gallery-image {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-image img {
    height: 130px;
  }

  .gallery-image img:first-child {
    height: 260px;
  }
}

/* 📲 TABLET */
@media (min-width: 901px) and (max-width: 1024px) {

  .gallery-section {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.9fr);
    gap: 28px;
  }

}
/* ================= WHATS TOOLTIP ================= */

.whatsapp-container{

  position:fixed;

  right:24px;

  bottom:24px;

  z-index:99999;
}

/* MENSAJE */

.whatsapp-tooltip{

  position:absolute;

  right:85px;

  bottom:12px;

  background:white;

  color:#111;

  padding:12px 18px;

  border-radius:14px;

  font-size:14px;

  font-weight:600;

  white-space:nowrap;

  box-shadow:
    0 10px 25px rgba(0,0,0,0.25);

  opacity:0;

  transform:translateX(20px);

  pointer-events:none;
}

/* ACTIVO */

.whatsapp-tooltip.show{

  animation:tooltipAnim 10s forwards;
}

/* ANIMACION */

@keyframes tooltipAnim{

  0%{

    opacity:0;

    transform:translateX(20px);
  }

  10%{

    opacity:1;

    transform:translateX(0);
  }

  90%{

    opacity:1;

    transform:translateX(0);
  }

  100%{

    opacity:0;

    transform:translateX(20px);
  }

}

/* MOBILE */

@media(max-width:768px){

  .whatsapp-tooltip{

    font-size:12px;

    padding:10px 14px;

    right:75px;
  }

}
/* ================= FOOTER ================= */

.footer{

  padding:60px 20px;

  background:#050505;

  border-top:
    1px solid rgba(255,255,255,0.06);

  text-align:center;
}

/* LOGO */

.footer-logo{

  width:90px;

  margin-bottom:20px;
}

/* TEXTO */

.footer-text{

  color:#999;

  line-height:1.8;

  margin-bottom:30px;

  font-size:14px;
}

/* ================= REDES ================= */

.social-links{

  display:flex;

  justify-content:center;

  align-items:center;

  gap:28px;

  margin-top:20px;
}

/* LINKS */

.social-links a{

  width:52px;

  height:52px;

  border-radius:50%;

  background:#0f0f0f;

  display:flex;

  justify-content:center;

  align-items:center;

  transition:0.3s ease;

  border:1px solid rgba(255,255,255,0.08);

  color:white;

  text-decoration:none;

  position:relative;
}

/* ICONOS */

.social-links img{

  width:24px;

  height:24px;

  object-fit:contain;
}

/* HOVER */

.social-links a:hover{

  transform:translateY(-4px);

  background:#d60000;

  box-shadow:
    0 0 20px rgba(214,0,0,0.45);
}

html{

  scroll-behavior:smooth;
}
