/* Reset general */
* {
    padding: 0;
    overflow-x: hidden;
  }
  
  body {
    font-family: 'Galderglynn Regular', sans-serif;
    background-color: #f0f5eb;
    color: #1b3e2b;
    line-height: 1.6;
    margin: 0;
    overflow-x: hidden;
  }
  
 /* ---------- 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;
  }
  
  /* Contenedor general */
  .contenedor {
    max-width: 1100px;
    margin: 80px auto 40px;
    padding: 0 2rem;
  }
  
  /* Título principal */
  .titulo {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #344429;
  }
  
  /* Bloques de flora */
  .bloque {
    background-color: #ffffff;
    border: 2px solid #3a5d3a;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease;
  }
  
  .bloque:hover {
    transform: scale(1.01);
  }
  
  .bloque img {
    width: 280px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
  }
  
  /* Texto dentro del bloque */
  .bloque .texto h2 {
    font-size: 1.4rem;
    color: #3f4c2e;
    margin-bottom: 0.5rem;
  }
  
  .bloque .texto p {
    font-size: 1rem;
    color: #33412f;
  }
  
/* PIE DE PÁGINA */

footer {
    width: 100%;
    background-color: #4C5F41;
    border-top: 1px solid #344432;
    padding: 2rem 1rem;
    box-sizing: border-box;
    margin: 0 auto;
  }
  
  .footer-texto {
    color: #ffffff;
    font-size: 0.875rem;
    text-align: center;
    margin: 0 auto;
    max-width: 1100px;
  }