        html {
          scroll-behavior: smooth;
        }
    /* Estilos generales */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: Arial, sans-serif;
      }
      .foto{
        display: flex;
        width: 15px;
        height: 15px;
      }
      body {
        line-height: 1.6;
        margin: 15px;
        scrollbar-base-color: #4a7c59;
        scrollbar-width: 5%;
      }
      /* Estilos del encabezado */
      header img{
        width: 100px;
        height: 100px;
      }
      header {
        background-color: #4a7c59;
        color: white;
        padding: 1rem;
      }
      img{
        width: 30%;
        height: 30%;
        border-radius: 15px;
      }
      nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 15px;
      }
      nav h1 {
        margin-bottom: 1rem;
        text-align: center;
        text-align: top;
        display: block;
      }
      nav ul {
        display: flex;
        list-style: none;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
      }
      .boton {
        background-color: transparent;
        border: 1px solid white;
        color: white;
        padding: 0.5rem 1rem;
        cursor: pointer;
        border-radius: 4px;
        transition: all 0.3s ease;
      }
      .boton:hover {
        background-color: white;
        color: #4a7c59;
      }
      /* Sección hero */
      .hero {
        height: 30vh;
        background-image: url('https://thumbs.dreamstime.com/b/campo-verde-primavera-con-dientes-amarillos-en-un-d%C3%ADa-soleado-banner-horizontal-largo-fondo-floral-natural-principios-de-226078077.jpg');
        background-size: cover;
        background-position: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: white;
        background-color: rgba(0, 0, 0, 0.5);
        padding: 1rem;
        border-radius: 15px;
      }
      .hero img{
        width: 30%;
        height: 30%;
      }
      .hero h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
      }
      /* Sección productos */
      .informacion{
        margin-left: 2%;
        margin-right: 2%;
        margin-top: auto;
        text-align: center;
        background-image: url('paisaje-flores.png');
        background-repeat: no-repeat;
        background-size: cover;
        border-radius: 15px;
      }
      .informacion h2{
        text-align: center;
      }
      .productos {
        padding: 2rem 1rem;
        text-align: center;
      }
      .productos h2 {
        margin-bottom: 2rem;
        color: #4a7c59;
      }
      .cards-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
      }
      .card {
        border: 1px solid #ddd;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
      }
      .card:hover {
        transform: translateY(-5px);
      }
      .card img {
        width: auto;
        height: auto;
        max-height: 250px;
        object-fit: cover;
      }
      .card h3 {
        padding: 1rem 0 0.5rem;
        color: #4a7c59;
      }
      .card p {
        padding: 0 1rem;
      }
      .card button {
        margin: 1rem;
        padding: 0.5rem 1.5rem;
        background-color: #4a7c59;
        color: white;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        transition: background-color 0.3s ease;
      }
      .card button:hover {
        background-color: #3a5d46;
      }
      /* Sección contacto */
      .contacto {
        background-color: #f9f9f9;
        padding: 2rem 1rem;
        text-align: center;
      }
      .contacto h2 {
        margin-bottom: 2rem;
        color: #4a7c59;
      }
      #contactForm {
        display: flex;
        flex-direction: column;
        max-width: 500px;
        margin: 0 auto;
        gap: 1rem;
      }
      #contactForm input, 
      #contactForm textarea {
        padding: 0.8rem;
        border: 1px solid #ddd;
        border-radius: 4px;
      }
      #contactForm textarea {
        min-height: 150px;
        resize: vertical;
      }
      #contactForm button {
        padding: 0.8rem;
        background-color: #4a7c59;
        color: white;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-weight: bold;
        transition: background-color 0.3s ease;
      }
      #contactForm button:hover {
        background-color: #3a5d46;
      }
      /* Footer */
      footer {
        background-color: #333;
        color: white;
        text-align: center;
        padding: 1.5rem;
        border-radius: 15px;
      }
      /* Media queries para responsividad */
      @media (min-width: 576px) {
        .cards-container {
          grid-template-columns: repeat(2, 1fr);
        }
      }
      @media (min-width: 768px) {
        nav {
          flex-direction: row;
          justify-content: space-between;
        }
        nav h1 {
          margin-bottom: 0;
        }
        .hero h2 {
          font-size: 2.5rem;
        }
        #contactForm {
          padding: 0 1rem;
        }
    }
      @media (min-width: 992px) {
        .cards-container {
          grid-template-columns: repeat(3, 1fr);
        } 
        .hero h2 {
          font-size: 3rem;
        }
      }  
