body {
    margin: 0;
    font-family: "Helvetica Neue", sans-serif;
    background: #f4f9f3;
    color: #1b3e2b;
    scroll-behavior: smooth;
  }

  /* ---------- HEADER FIJO ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 0 1.5rem;
  background-color: #4C5F41;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  height: 80px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

header img {
  height: 45px;
}

.nav-menu {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.nav-menu a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #d6d1bb;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  display: inline-block;
}
  
  h1, h2, h3 {
    color: #1b3e2b;
  }
  
  a {
    color: #1b3e2b;
    text-decoration: none;
  }
  
  .hero {
    background-image: url("../imagenes/reservanorte2.jpeg"); 
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .overlay {
    background-color: #1b3e2b;
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    color: white;
    text-align: center;
    max-width: 90%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }
  
  .overlay h1 {
    color: #d6d1bb;
    font-size: 2rem;
    font-weight: 700;
  }
  
  .overlay p {
    font-size: 1.1rem;
    font-weight: 400;
  }
  
  .frase blockquote {
    font-style: italic;
    text-align: center;
    font-size: 1.3rem;
    color: #365d3d;
    margin: 2rem auto;
    max-width: 600px;
  }
  
  .datos {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 2rem;
  }
  
  .dato {
    flex: 1 1 200px;
    margin: 1rem;
    background: #1b3e2b;
    padding: 1rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  }
  
  .dato h2 {
    color: #d6d1bb;
  }
  
  .dato p {
    color: #f0f0f0;
  }
  
  .habitantes, .experiencia, .sonido, .galeria, .ubicacion {
    padding: 2rem;
    text-align: center;
  }
  
  .habitantes img, .galeria img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }
  
  .habitantes-contenedor {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .tarjeta-habitante {
    background-color: #f4f9f3;
    border: 2px solid #d6d1bb;
    border-radius: 20px;
    padding: 1rem;
    width: 300px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  .tarjeta-habitante img {
    width: 100%;
    height: 200px; 
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 0.5rem;
    object-position: top;
  }
  
  .tarjeta-habitante h3 {
    margin: 0.5rem 0 0.2rem;
    font-size: 1.2rem;
    color: #1b3e2b;
  }
  
  .tarjeta-habitante p {
    font-size: 0.95rem;
    color: #365d3d;
  }

  .experiencia ul {
    list-style: none;
    padding-left: 0;
    max-width: 500px;
    margin: auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1b3e2b;
  }
  
  .sonido audio {
    margin-top: 1rem;
    width: 90%;
    max-width: 500px;
  }

  .sonido {
    background-color: #1b3e2b;
    padding: 2rem;
    border-radius: 20px;
    max-width: 600px;
    margin: 2rem auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .sonido h2 {
    margin-bottom: 1rem;
    color: #d6d1bb;
  }
  
  .sonido audio {
    width: 100%;
    border-radius: 12px;
  }  
  
  .galeria .imagenes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
  }
  
  .galeria .imagenes img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
    display: block;
    object-position: center center;
  }
  
  .ubicacion a {
    display: inline-block;
    background: #1b3e2b;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 1rem;
  }
  
  .cta {
    background: #1b3e2b;
    text-align: center;
    padding: 2rem;
  }
  
  .cta h2 {
    color: #d6d1bb;
  }
  
  .cta .boton {
    background: white;
    color: #1b3e2b;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1rem;
    display: inline-block;
  }

  .mapa-interactivo {
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    border-radius: 20px;
    overflow: hidden;
  }
  
  .info-llegar {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.6;
    color: #1b3e2b;
  }
  
  .info-llegar h3 {
    margin-top: 1.5rem;
    color: #365d3d;
    font-size: 1.1rem;
  }
  
  .info-llegar ul {
    padding-left: 1.2rem;
  }
  
  .info-llegar li {
    margin-bottom: 0.5rem;
  }
  
  .ubicacion {
    padding: 2rem;
    text-align: center;
    font-size: 0.95rem;
  }
  
  .ubicacion h2 {
    color: #1b3e2b;
    font-size: 1.6rem;
    margin-bottom: 0.2rem;
  }
  
  .ubicacion p {
    color: #365d3d;
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .ubicacion-contenedor {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: #1b3e2b; /* verde oscuro */
    color: #d6d1bb;            /* texto claro */
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    align-items: center;
  }
  
  .mapa-box {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  }
  
  .mapa-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }
  
  .mapa-box {
    animation: fadeIn 1s ease-in;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: scale(0.95);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  .info-llegada {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.6rem;
    color: white;
  }
  
  .info-llegada ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
  }
  
  .info-llegada h3,
  .info-llegada li,
  .info-llegada p {
    color: white;
  }
  
  .indicador-llegada {
    font-style: italic;
    color: #d6d1bb;
    font-size: 0.9rem;
    margin-top: 0.5rem;
  }
  
  .medio h3 {
    margin: 0;
    font-size: 1rem;
    color: #d6d1bb;
  }
  
  .medio p {
    margin: 0.2rem 0 0.8rem 0;
    line-height: 1.4;
    font-size: 0.95rem;
  }
  
  @media (max-width: 768px) {
    .ubicacion-contenedor {
      grid-template-columns: 1fr;
    }
  }
  
  .icono {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 8px;
    filter: brightness(0) invert(1); /* lo deja completamente blanco */
  }
  
  .icono path {
    fill: white;
  }