h1, h2, h3 {
  text-align: center;
  color: #4CAF50;
  margin-top: 1.5rem;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #466b48;
  color: #fff;
  padding: 1rem 2rem;
}

.navLogo {
  width: 75px;
  height: auto;
}

nav ul {
  display: flex;
  flex-grow: 1;
  justify-content: space-evenly;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  display: flex;
  align-items: center;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  position: relative;
  padding-bottom: 10px;
}

nav ul li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0%;
  height: 4px;
  background-color: #4CAF50;
  border-radius: 2px;
  transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
  transform: translateX(-50%);
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

.navIcons {
  display: flex;
  gap: 15px;
}

.navIcon {
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease-in-out;
}

.navIcon:hover {
  transform: scale(1.1);
}

.summerCamp, .summerCampText, .locationCamp, .facilities {
  max-width: 1100px;
  margin: auto;
  padding: 2rem;
}

.locationCamp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.locationCampText {
  text-align: justify;
  padding-right: 20px;
}

.maps {
  display: flex;
}

.maps iframe {
  width: 100%;
  max-width: 500px;
  height: 400px;
  border-radius: 10px;
}

.facilities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}
.galeria {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.galeria img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
  margin-top: 5%;
  margin-bottom: 5%;
}

.galeria img:hover {
  transform: scale(1.05);
}

.facilitiesText {
  text-align: justify;
  padding-left: 20px;
}

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

.facilitiesText ul li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.facilitiesText ul li::before {
  content: "✔";
  color: #2c3e50;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.backpack{
  text-align: center;
}
footer {
  width: 100%;
  background: #333;
  color: #fff;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}


.sponsorsImage {
  object-fit: contain;
  margin: 2px;
  vertical-align: middle;
}


.sponsor-grande {
  width: 450px;
  height: 250px;
}

.sponsor-mediano {
  width: 300px;
  height: 150px;
}

.sponsor-pequeno {
  width: 100px;
  height: 50px;
}

.sponsor-muypequeno {
  width: 75px;
  height: 50px;
}
/* RESPONSIVE */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: center;
  }

  nav ul {
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding: 0;
  }

  nav ul li {
    width: 100%;
    padding: 10px 0;
  }

  .locationCamp, .facilities {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .galeria {
    flex-direction: column;
  }

  .galeria img {
    width: 80%;
  }
}
.backpack{
  text-align: center;
}