body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #285029;
    color: #3e3e3e;
  }

  header {
    background: #285029;
    color: #fff;
    padding: 20px 0;
    text-align: center;
  }
  
  .header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .logo {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
  
  }
  
  header h1 {
    margin: 0;
    font-size: 2.5em;
  }
  

  nav {
    background: #092e0b;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 10px 0;
  }

  nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
  }

  nav a:hover {
    text-decoration: underline;
  }

  .hero {
    background: url('https://images.unsplash.com/photo-1509042239860-f550ce710b93') no-repeat center center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 2px 2px 5px #000;
  }

  .hero h2 {
    font-size: 3em;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 10px 20px;
    border-radius: 10px;
  }

  .contenido {
    padding: 40px;
    text-align: center;
    background: white;
}

  .contenido h3 {
    font-size: 2em;
    margin-bottom: 20px;
  }

  .contenido p {
    font-size: 1.2em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
  }

  footer {
    background: #285029;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    margin-top: 25px;
  }

  .redes-sociales {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .redes-sociales a img {
    width: 30px;
    height: 30px;
    filter: invert(1); /* Para que se vean blancos en el fondo oscuro */
    transition: transform 0.3s ease;
  }
  
  .redes-sociales a:hover img {
    transform: scale(1.2);
  }
  

  #clasificaciones {
    padding: 40px;
    background: #fff5e6;
  }
  
  .categoria {
    margin-bottom: 50px;
  }
  
  .categoria h3 {
    color: #5a3d2b;
    border-bottom: 2px solid #ccc;
    padding-bottom: 10px;
  }
  
  .productos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
  }
  
  .producto {
    width: 200px;
    border: 1px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
    text-align: center;
  }
  
  .producto img {
    width: 100%;
    height: 130px;
    object-fit: cover;
  }
  
  .producto h4 {
    margin: 10px 0 5px;
  }
  
  .producto p {
    font-size: 0.9em;
    margin: 5px;
  }

  .btn-agregar {
    margin-top: 15px;
    padding: 10px 15px;
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  

  .cotizar-evento {
    text-align: center;
    margin: 2rem 0;
  }
  .cotizar-evento button {
    padding: 10px 20px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
  }

  .modal {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
  }

  .modal-contenido {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
  }

  .cerrar {
    float: right;
    font-size: 24px;
    cursor: pointer;
  }

  .modal-contenido input,
  .modal-contenido select {
    width: 90%;
    margin: 10px 0;
    padding: 8px;
  }

  #btnWhatsapp {
    background-color: #25d366;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    cursor: pointer;
  }