body {
    margin: 0;
    font-family: 'Galderglynn Regular', 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;
  }
  
  .intro {
    padding: 4rem 2rem 0.5rem;
    text-align: center;
  }
  
 .intro h1 {
  font-size: 2.5rem;
  color: #2e4224;
  margin-bottom: 0.5rem; 
}

.intro p {
    text-align: left;
  }
  
.subtitulo {
    color: #4C5F41;
    font-size: 1.1rem;
    margin-bottom: 0.5rem; 
  }
  
  .ambientes {
    padding: 2rem;
  }
  
  .subtitulo {
    color: #4C5F41;
    font-size: 1.1rem;
    margin-bottom: 0.5rem; 
  }
  
  .ambientes h2 {
    font-size: 2rem;
    color: #4C5F41;
    margin-top: 0;        
    margin-bottom: 1rem;
  }
  
  .grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
  }
  
  .card {
    background-color: #ffffff;
    border: 2px solid #4C5F41;
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
  
  .card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 1rem;
  }
  
  .card-nombre {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #2e4224;
  }
  
  .texto {
    font-size: 0.95rem;
    color: #4C5F41;
  }
  
  footer {
    background-color: #4C5F41;
    color: #ffffff;
    text-align: center;
    padding: 1.5rem;
    margin-top: 2rem;
    font-size: 0.9rem;
  }