
/*Estilos genéricos*/
html {
    scroll-behavior: smooth;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}
.body-cookie {
    padding: 0px;
    margin: 0px;
}
/*Estilos para menú*/
.main-menu {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #796146;
    padding: 1rem 0;
    z-index: 1000;
  }
  
  .main-menu nav {
    display: flex;
    justify-content: center;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 13pt;
  }
  
  .nav-links a:hover {
    color: #ffcc00;
  }
  .rrss {
    position: absolute;
    right: 15%;
    top: 25%;
}
  .icon-whatsapp {
    width: 45px;
}
/* Menú móvil */
.mobile {
    display: none;
  }
  
  .mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #333;
  }
  
  .mobile-menu ul {
    list-style-type: none;
    padding: 0;
    font-family: 'Montserrat';
    font-size: 14pt;
  }
  .mobile-menu ul li{
    border-bottom: 1px solid #796146d1;
  }
  
  .mobile-menu ul li a {
    color: #fff;
    text-decoration: none;
    padding: 1rem;
    display: block;
  }
  
/*Estilos banner*/
.banner-principal {
    margin-top: 72px;
}
.banner-full-width {
    width: 100%;
}
.banner-principal-logo_img {
    width: 500px;
}
.banner-principal-logo_text {
    font-size: 20pt;
    margin-top: 15px;
    margin-bottom: 30px;
    font-family: "Open Sans";
    font-weight: 600;
    color: #44382a;
}
/*Estilos sección sobre nosotros*/
.sobre-nosotros {
    background: #90865e;
    color: #ffffff;
    padding-top: 40px;
    padding-bottom: 40px;
    text-align: center;
    margin-top: 0px;
}
.sobre-nosotros-txt {
    font-family: 'Montserrat';
    font-weight: 400;
    line-height: 19pt;
    font-size: 13pt;
}

.banner-principal-logo {
    position: absolute;
    top: 20%;
    left: 5%;
}
/*Estilos sección descripcion*/
.descripcion {
    position: relative;
}
.descripcion-logo {
    position: absolute;
    top: 9%;
    left: 4%;
}
.descripcion-logo_img {
    width: 300px;
}
.descripcion-logo_text {
    color: #ffffff;
    font-size: 13pt;
    font-family: 'Roboto';
    font-weight: 300;
    width: 50%;
    line-height: 16pt;
}
/*Seccion mision*/
.mision {
    background-image: url('../images/banners/mision.webp');
    padding: 40px;
    min-height: 400px;
    background-position: left;
    background-size: cover;
}
.mision-title {
    color: #ffffff;
    font-family: 'Montserrat';
    font-size: 21pt;
    margin-bottom: 35px;
}
.mision-txt {
    width: 60%;
    color: #ffff;
    font-family: 'Montserrat';
    font-size: larger;
    line-height: 26pt;
}
/*Estilos sección contacto*/
.contacto {
    background: #796146;
    padding: 40px;
}
.form-container {
    background-color: transparent;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 350px;
    margin: 40px auto;
}
.form-container h2 {
    color: #ffffff;
    font-family: 'Roboto';
    font-size: 20pt;
    text-align: center;
}
label {
    display: block;
    margin: 10px 0 5px;
    color: #fff;
    font-family: 'Roboto';
}

input, select {
    width: 100%;
    padding: 12px 2px;
    margin-bottom: 15px;
    border: none;
    border-radius: 12px;
    background: #594937;
    color: #ffffff;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #45a049;
}
.confirmation {
    margin-top: 15px;
    padding: 10px;
    color: #fff;
    display: none;
    font-family: 'Montserrat';
    text-align: center;
    line-height: 19pt;
}
/*Estilos en footer*/
.footer-cookie {
    text-align: center;
    padding: 20px;
}
.footer-cookie {
    text-align: center;
    padding: 20px;
}
.footer-cookie_copy {
    font-family: 'Roboto';
    font-size: 10pt;
    font-weight: 500;
}
textarea {
    width: 100%;
    padding: 12px 2px;
    margin-bottom: 15px;
    border: none;
    border-radius: 12px;
    background: #594937;
    color: #ffffff;
}
.btn-cart {
    background: #ffffff;
    color: #594937;
    border-radius: 25px;
}
h3 {
    font-family: 'Montserrat';
    color: #ffffff;
    font-size: 13pt;
}
#cart li {
    font-size: 10pt;
    color: #ffffff;
    font-family: 'Montserrat';
}
@media (min-width: 320px) and (max-width: 480px) {
    .desktop {
        display: none;
    }
    .banner-principal {
        margin-top: 0px;
    }
    .banner-principal-logo {
        top: 12%;
    }
    .banner-principal-logo_img {
        width: 145px;
    }
    .banner-principal-logo_text {
        font-size: 11pt;
        margin-top: 0px;
    }
    .descripcion-logo_img {
        width: 85px;
    }
    .form-container {
        width: 90%;
    }  
    .mision-title {
        text-align: center;
    }
    .mision-txt {
        width: 100%;
        text-align: center;
    }  
    .descripcion-logo_text {
        width: 100%;
        font-size: 11pt;
    }
    .main-menu {
        display: none;
    }

    .nav-links {
        display: none;
      }
    
      .mobile {
        display: flex;
      }
      .menu-icon {
        font-size: 50px;
        margin-left: 10px;
    }
    .descripcion-img {
        filter: brightness(30%);
    }
}

/* Mostrar el menú móvil cuando se activa */
.show-menu {
    display: flex !important;
    position: absolute;
    width: 95%;
    top: 8%;
    z-index: 10;
    background: #796146;
  }