/* CAMPS 2026 */

.section-camps2026 {
  background-image: url('../img/texturaPapel.png'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 5rem 0 4rem;
  scroll-margin-top: 60px;
}

.section-camps2026 .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.4rem;
}

/* TEXTOS */

.section-camps2026 h5 {
  text-align: center;
  color: var(--color7);
  margin-bottom: 1rem;
  font-size: var(--fs-h4);
}

.section-camps2026 h1 {
  text-align: center;
  color: var(--color4);
  margin-bottom: 3rem;
}

/* CARDS */

.container-camps2026 {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.camp {
  position: relative;
  background-color: rgba(255,255,255,0.92);
  border-radius: 18px;
  padding: 3.5rem 1.5rem 2.5rem;
  overflow: visible;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* IMAGEN */

.camp-img {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: -80px;
  margin-bottom: 1rem;
  pointer-events: none;
}

.camp-img img {
  width: 250px;
}

/* CONTENIDO */

.camp-body {
  text-align: center;
}

.camp-body h4 {
  font-size: var(--fs-h4);
  color: var(--color7);
  margin-bottom: 0.3rem;
}

.camp-body h3 {
  font-size: var(--fs-h2);
  color: var(--color4);
  margin-bottom: 0.8rem;
}

.camp-body p {
  font-size: var(--fs-small);
  color: var(--color5);
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

/* LISTA */

.camp-body ul {
  list-style: none;
  padding: 0;
  margin: 1rem auto;
  max-width: 420px;
  text-align: left;
}

.camp-body li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.5rem;
  font-size: var(--fs-small);
  color: var(--color5);
}

.camp-body li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--color1);
  font-weight: bold;
}

/* CUPOS + INSCRIPCION */

.cupos {
  display: block;
  margin-top: 1.5rem;
  font-size: var(--fs-h4);
  font-weight: 700;
  color: var(--color7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.inscribite {
  display: block;
  font-size: var(--fs-h2); 
  color: var(--color4);
  font-weight: 800;
  margin-bottom: 1rem;
}

.cupos,
.inscribite {
  font-family: var(--font-title);
}

/* BOTONES */

.buttons {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: nowrap;
}

.buttons a {
  flex: 1;
  text-align: center;
  font-size: var(--fs-button);

  background: var(--color4);
  color: var(--color3);
  padding: 0.7rem 0.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.buttons a:hover {
  background-color: var(--color6);
}

/* TABLET */

@media (min-width: 768px) {

  .camp {
  padding: 3.5rem 2.5rem;
}

  .camp-img img {
    width: 290px; 
  }

  .camp-body p,
  .camp-body li {
    font-size: var(--fs-body);
    text-align: justify;
  }

  .buttons {
    gap: 1rem;
  }

  .buttons a {
    flex: 0 0 180px;
  }

}

/* DESKTOP */

@media (min-width: 1024px) {

  .section-camps2026 {
  padding: 5rem 0 3rem;
}

  .camp {
    display: flex;
    align-items: center;
    padding: 4rem;
  }

  .camp-body {
    width: 45%;
    text-align: left;
  }

  .camp:first-child .camp-img {
    position: absolute;
    right: -320px;
    bottom: 0;
  }

  .camp:nth-child(2) {
    flex-direction: row-reverse;
  }

  .camp:nth-child(2) .camp-body {
    text-align: left;
  }

  .camp:nth-child(2) .camp-img {
    position: absolute;
    left: -320px;
    bottom: 0;
  }

  .camp-img img {
    width: 480px;
  }

  .buttons {
    justify-content: flex-start;
    gap: 1.5rem;
  }

  .camp:nth-child(2) .buttons {
    justify-content: left;
  }
}