/* RESET LOCAL */
.cf-wrapper {
  width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
  font-family: 'Inter', sans-serif;
}

/* HERO */
.cf-hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cf-hero__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.cf-croos {
  object-position: center 70%;
}

.cf-basic {
  object-position: center 32%;
}

.cf-strength {
  object-position: center 40%;
}

.cf-endurance {
  object-position: center 75%;
}

.cf-halterofilia {
  object-position: center 40%;
}

.cf-gymnastics {
  object-position: center 35%;
}

.cf-mobility {
  object-position: center 55%;
}

.cf-crosskids {
  object-position: center 25%;
}

.cf-adaptive {
  object-position: center 30%;
}

.cf-hero__overlay {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  padding: 0 1rem;
}
.cf-hero__overlay h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.cf-hero__overlay h1::after {
  content: '';
  width: 160px;
  height: 4px;
  background: linear-gradient(to right, #ff4c4c, #707070);
  display: block;
  margin: 2rem auto 2rem;
  border-radius: 2px;
}

.cf-hero__overlay p {
  font-size: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}

/* TEXTO DESCRIPTIVO */
.cf-texto {
  padding: 5rem 1rem 3rem;
  background: #fff;
  text-align: center;
}
.cf-texto__inner {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.8;
  color: #222;
}
.cf-texto__cta {
  font-weight: bold;
  margin-top: 2rem;
  font-size: 1.3rem;
}

/* GALERÍA */
.cf-galeria {
  background: #f8f8f8;
  padding: 4rem 1rem;
}
.cf-grid {
  display: grid;
  grid-template-areas:
    'img1 img2 img3'
    'img4 img4 img5';
  grid-gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.cf-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.cf-img--1 {
  grid-area: img1;
}
.cf-img--2 {
  grid-area: img2;
}
.cf-img--3 {
  grid-area: img3;
}
.cf-img--4 {
  grid-area: img4;
}
.cf-img--5 {
  grid-area: img5;
}

/* ===================
   CTA SECTION
   =================== */
.cf-cta {
  background: linear-gradient(to right, #1a1a1a, #101010);
  padding: 1rem 2rem 4rem;
  text-align: center;
}

.cf-cta__box {
  max-width: 800px;
  margin: 0 auto;
}

.cf-cta__box h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  color: #fff;
}

.cf-cta__box h2::after {
  content: '';
  width: 160px;
  height: 4px;
  background: linear-gradient(to right, #ff4c4c, #707070);
  display: block;
  margin: 2rem auto 2rem;
  border-radius: 2px;
}

.cf-cta__box p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 3rem;
}

.cf-cta__box .btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  background-color: #e50914;
  color: #fff;
  border-radius: 2rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
}

.cf-cta__box .btn:hover {
  background-color: #ff1e28;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .cf-hero {
    height: 60vh; /* Menor altura para móvil */
  }

  .cf-hero__bg {
    object-position: center 50% !important; /* Reencuadre base en móvil */
    /* Excepto si hay una clase específica */
    /* margin-top: 30px; */
  }

  /* Reencuadres individuales si deben mantenerse también en móvil */
  .cf-basic {
    object-position: center 32% !important;
  }
  .cf-strength {
    object-position: center 40% !important;
  }
  .cf-endurance {
    object-position: center 75% !important;
  }
  .cf-halterofilia {
    object-position: center 40% !important;
  }
  .cf-gymnastics {
    object-position: center 35% !important;
  }
  .cf-mobility {
    object-position: center 55% !important;
  }
  .cf-crosskids {
    object-position: center 25% !important;
  }
  .cf-adaptive {
    object-position: center 30% !important;
  }
  .cf-croos {
    object-position: center 70% !important;
  }

  .cf-hero__overlay h1 {
    font-size: 2.4rem;
  }

  .cf-hero__overlay p {
    font-size: 1.1rem;
    padding: 0 1rem;
  }
}

@media (max-width: 768px) {
  .cf-texto {
    padding: 2rem 1rem 2rem;
    text-align: left;
  }

  .cf-texto__inner {
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .cf-texto__cta {
    font-size: 1.1rem;
    margin-top: 1.5rem;
  }
}

@media (max-width: 991px) {
  .cf-hero__overlay h1 {
    font-size: 2.5rem;
  }
  .cf-hero__overlay p {
    font-size: 1.2rem;
  }
  .cf-grid {
    grid-template-areas:
      'img1'
      'img2'
      'img3'
      'img4'
      'img5';
  }
}

@media (max-width: 480px) {
  .cf-cta__box h2 {
    font-size: 1.8rem;
    text-align: center;
    line-height: 1.3;
  }
}
