* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f9f8f6;
  color: #333333;
  line-height: 1.6;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #4C5F41;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  height: 80px;
}

header img {
  height: 70px;
  padding: 4px;
  border-radius: 4px;
}

/* Navegación */
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
  height: 100%;
  margin: 0;
}

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

nav ul li a {
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  font-weight: 600;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}

nav ul li a:hover {
  color: #ffffff;
}

h1 {
  font-size: 2.8rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: #2e4224;
  text-align: center;
  line-height: 1.4;
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
.p1 {
    font-size: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    line-height: 1.4;
    margin: 2rem auto;
    padding: 0 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  }

  .reservas {
  background-color: #4C5F41;
  padding: 2rem 1rem;
  text-align: left;
  }

.reservas h3 {
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #ffffff;
    text-align: left;
    line-height: 1.4;
    max-width: 800px;
    padding: 0 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  }
  .reservas .p2 {
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #ffffff;
    text-align: left;
    line-height: 1.5;
    max-width: 800px;
    padding: 0 1rem;
  }
  
/* Reconectar con las guardianas */
.superpuesto {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-image: url(../imagenes/fondo-reserva.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 2rem;
  text-align: center;
  color: #ffffff;
}

.superpuesto h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 2rem;
}

/*cartas reservas*/
.grid-container2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem;
  margin: auto;
  background-color: #4C5F41;
}

.card2 {
  border: 2px solid #f9f8f6; 
  border-radius: 24px;
  padding: 1.5rem;
  text-align: center;
  color: #f9f8f6;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-img2 {
  width: 100%;
  border-radius: 16px;
  max-height: 320px;
  object-fit: cover;
  margin-bottom: 1rem;
}

.card-nombre {
  font-size: 1.5rem;
  font-weight: 600;
  color: #f9f8f6;
  margin-bottom: 1rem;
}

.card-nombre a {
  display: inline-block;
  background-color: #f9f8f6;        
  color: #2e4224;                      
  padding: 10px 1.5rem;             
  border-radius: 16px;              
  text-decoration: none;            
  font-weight: 600;
  font-size: 1rem;
}

.texto {
  font-size: 1rem;
  font-weight: 600;
  color: #f9f8f6;
  font-family: 'Montserrat', sans-serif;
}

.voluntariado {
  background-color: #f9f8f6; /* Verde fondo */
  color: #4C5F41;
  padding: 3rem;
  font-family: 'Helvetica', sans-serif;
}

.voluntariado h4 {
  text-transform: uppercase;
  font-size: 1rem;
  color: #4C5F41;
  margin-bottom: 0.5rem;
}

.voluntariado h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.voluntariado-box {
  border: 2px solid #4C5F41;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background-color: #f9f8f6;
  flex-wrap: wrap;
}

.voluntariado-img {
  width: 300px;
  height: auto;
  border-radius: 1rem;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
}

.voluntariado-texto {
  max-width: 600px;
  color: #4C5F41;
  font-size: 1.5rem;
  line-height: 1.6;
}

.boton-unirme {
  display: inline-block;
  margin-top: 2rem;
  background-color: #d6d1bb;
  color: #4b5b3c;
  font-weight: bold;
  padding: 1rem 2rem;
  border-radius: 1.5rem;
  text-decoration: none;
  font-size: 1.2rem;
  transition: background-color 0.3s ease;
}

.boton-unirme:hover {
  background-color: #cfc9a9;
}


/*cartas naturaleza*/
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1400px;
  margin: auto;
}

.card {
  border: 2px solid #2e4224; 
  border-radius: 24px;
  padding: 1.5rem;
  text-align: center;
  color: #2e4224;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-img {
  width: 100%;
  border-radius: 16px;
  max-height: 320px;
  object-fit: cover;
  margin-bottom: 1rem;
  text-decoration: none; 
}

.card-frase {
  font-size: 1rem;
  font-weight: 600;
  color: #2e4224;
  margin-bottom: 1rem;
}

.card-title {
  color: #d4d0b6;
  margin-bottom: 1rem;
}

.boton-ver {
  justify-content: center;
  display: inline-block;
  background-color: #4C5F41;
  color: #fff;
  padding: 10px ;
  border-radius: 16px;
  font-weight: 600;
  font-size: 1rem;
  margin: 10px;
  object-position: center center;
  border: 2px solid #000000;
  text-decoration: none; 
}

.boton-ver:hover {
  background-color: #e8dada;
  color: #3e3e3e;
}

h5 {
  font-size: 2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: #2e4224;
  text-align: center;
  line-height: 1.4;
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
.p4 {
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: #2e4224;
  text-align: center;
  line-height: 1.5;
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.boton-escuchar {
  justify-content: center;
  display: inline-block;
  background-color: #4C5F41;
  color: #fff;
  padding: 10px ;
  border-radius: 16px;
  font-weight: 600;
  font-size: 1rem;
  margin: 10px;
  object-position: center center;
  border: 2px solid #000000;
  text-decoration: none; 
}

.boton-escuchar:hover {
  background-color: #e8dada;
  color: #3e3e3e;
}
.boton-explorar {
  justify-content: center;
  display: inline-block;
  background-color: #4C5F41;
  color: #fff;
  padding: 10px ;
  border-radius: 16px;
  font-weight: 600;
  font-size: 1rem;
  margin: 10px;
  object-position: center center;
  border: 2px solid #000000;
  text-decoration: none; 
}

.boton-explorar:hover {
  background-color: #e8dada;
  color: #3e3e3e;
}

.actividades {
  background-color: #f9f8f6; /* Verde fondo */
  color: #4C5F41;
  padding: 3rem;
  font-family: 'Helvetica', sans-serif;
}

.actividades h4 {
  text-transform: uppercase;
  font-size: 1rem;
  color: #4C5F41;
  margin-bottom: 0.5rem;
}

.actividades h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

/*Pie de página*/


footer {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background-color: #344429;
  padding: 2rem 1rem;
  border-top: 1px solid #344432;
}
  
 .footer-texto {
  color: #ffffff;
  font-size: 0.875rem;
  text-align: center;
 }