* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: red;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #fffaf4;
  color: #333;
  padding-top: 70px;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #00bfa6;
  padding: 1rem;
  color: white;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.logo {
  font-family: 'Pacifico', cursive;
  font-size: 1.5rem;
}

.menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: white;
  display: none;
}

nav.menu {
  display: flex;
  gap: 1rem;
}

nav.menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

@media (max-width: 768px) {
  nav.menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #00bfa6;
    padding: 1rem 0;
  }

  nav.menu.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

/* HERO */
.hero-parallax {
  position: relative;
  background-image: url('imagen-principal.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.hero-texto {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 2rem;
  border-radius: 12px;
  max-width: 90%;
}

.hero-texto h1 {
  font-family: 'Pacifico', cursive;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-texto p {
  font-size: 1.2rem;
  font-weight: 300;
}

/* HISTORIA */
.seccion-historia {
  padding: 4rem 1.5rem;
  background-color: #fefefe;
  text-align: center;
}

.seccion-historia h2 {
  font-family: 'Pacifico', cursive;
  color: #00bfa6;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.seccion-historia p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
}

/* QUE HACER */
.seccion-quehacer {
  padding: 4rem 1.5rem;
  background-color: #f9f9f9;
  text-align: center;
}

.seccion-quehacer h2 {
  font-family: 'Pacifico', cursive;
  color: #f65a38;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.actividades {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.actividad {
  background-color: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.actividad:hover {
  transform: translateY(-5px);
}

.actividad h3 {
  color: #00bfa6;
  margin-bottom: 0.5rem;
}

/* GALERÍA */
.seccion-galeria {
  padding: 4rem 1.5rem;
  background-color: #fff;
  text-align: center;
}

.seccion-galeria h2 {
  font-family: 'Pacifico', cursive;
  color: #00bfa6;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.grid-galeria {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.grid-galeria img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  height: 180px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.grid-galeria img:hover {
  transform: scale(1.03);
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.modal-contenido {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 0 20px #000;
  margin-top: 5vh;
}

.cerrar {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/* FOOTER */
.footer {
  background-color: #00bfa6;
  color: white;
  padding: 2rem 1rem;
  text-align: center;
}

.contenedor-footer {
  max-width: 1000px;
  margin: 0 auto;
}

.footer p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.redes a {
  color: white;
  text-decoration: none;
  margin: 0 0.5rem;
  font-size: 1.3rem;
}

.redes a:hover {
  color: #fefefe;
}