* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
  }
  /* ------------------------header----------------------- */
  header {
    position: relative;
    padding: 0 20px;
    margin-right: 20px;
  }
  .head {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 20px 10px;
  }
  header img {
    width: 8%;
  }
  li {
    list-style-type: none;
  }
  header a {
    text-decoration: none;
    color: #253532;
    font-size: 1.3em;
    transition: 1s;
  }
  header a:hover {
    font-size: 1.35em;
    color: #9e8d77;
  }
  header .active {
    font-weight: bold;
    color: #9e8d77;
  }
  .head .links {
    display: flex;
    gap: 80px;
  }
  .head .btn-menu {
    color: #9e8d77;
    font-size: 1.5em;
    cursor: pointer;
    display: none;
  }
  /*Dropdown menu*/
  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100px;
    height: 0;
    left: 10px;
    width: 100%;
    background-color: black;
    overflow: hidden;
    transition: height 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 100;
  }
  .dropdown-menu.open {
    height: 350px;
  }
  .dropdown-menu li {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .dropdown-menu li a{
    color: white;
  }
  /*Slider*/
  .carousel-container .carousel-slide img {
    width: 100%;
    height: 500px;
    display: block;
  }
  .carousel-container .carousel-slide .overlay img {
    width: 300px;
    height: auto;
    margin-top: 130px;
  }
  .carousel-container {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
  }
  .carousel-slide {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(-100%);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  }
  .carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
  }
  .overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    display: flex;
    width: 100%;
    justify-content: space-around;
    align-items: center;
  }
  .overlay .info {
    margin-top: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .overlay .info h3 {
    font-weight: lighter;
  }
  .overlay .info h2 {
    font-size: 2em;
    font-weight: bolder;
    margin: 10px 0;
  }
  .overlay .info p {
    font-size: 1.1em;
  }
  .overlay .info a {
    width: 200px;
    background-color: #253532;
    padding: 10px 20px;
    margin: 20px;
    border-radius: 20px;
    font-weight: bolder;
    text-decoration: none;
    color: white;
  }
  .navegadores {
    display: flex;
    width: 100%;
    justify-content: space-between;
    position: absolute;
    top: 50%;
  }
  .navegadores button {
    margin: 0 5px 0 5px;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: #253532;
    opacity: 0.6;
    transition: 1s;
    cursor: pointer;
  }
  .navegadores button:hover {
    scale: 110%;
  }
  #prevBtn {
    transform: rotate(-180deg);
  }
  .mensaje-uno{
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    color: #253532;
  }
  .mensaje-uno img{
    width: 100px;
  }
  .mensaje-uno h3{
    margin: 20px;
    font-size: 1.2em;
  }
  .mensaje-uno p{
    font-weight: lighter;
    margin: 0 80px;
  }
  /* Seccion Dos */
  .iconos-seccion-dos{
    display: flex;
    flex-direction: column;
    width: 20%;
  }
  .iconos-seccion-dos img{
    width: 200px;
  }
  .iconos-seccion-dos .link{
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
  }
  .iconos-seccion-dos .link h3{
    text-decoration: underline;
  }
  .iconos-seccion-dos .link a{
    color: white;
    background-color: #253532;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    transition: 1s;
    font-size: 1em;
  }
  .iconos-seccion-dos .link a:hover{
    color: red;
    background-color: white;
    color: #253532;
    scale: 105%;
  }
  .seccion-dos{
    margin-top: 40px;
    display: flex;
    justify-content: space-evenly;
  }
  /* Seccion tres */
  .seccion-tres{
    margin-top: 80px;
    background:url(/assets/index-img/vecteezy_vista-superior-de-fideos-salteados_1903935.jpg) no-repeat;
    background-size: cover;
    padding: 40px;
  }
  .seccion-tres h2{
    margin-top: 150px;
    color: white;
    background-color: rgba(0, 0, 0, 0.7);
    width: 40%;
    padding: 20px;
  }
  .seccion-tres a{
    background-color: #253532;
    color: white;
    text-decoration: none;
    padding: 10px 40px;
    margin-top: 50px;
    margin-bottom: 50px;
    display: inline-block;
    border-radius: 20px 20px 20px 20px;
    transition: 1s;
  }
  .seccion-tres a:hover{
    scale: 105%;
  }
  /* Seccion cuatro */
  .seccion-cuatro{
    display: flex;
    width: 100%;
  }
  .seccion-cuatro .left{
    width: 50%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 40px;
  }
  .seccion-cuatro .left .insta{
    width: 220px;
    height: 200px;
  }
  .seccion-cuatro .left .tik{
    width: 200px;
  }
  .seccion-cuatro .right{
    display: flex;
    align-items: center;
    margin: auto;
  }
  .seccion-cuatro .right a{
    margin: 0 30px;
    background-color: #253532;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    color: white;
    text-align: center;
    line-height: 50px;
    font-size: 1.8em;
    transition: 1s;
  }
  .seccion-cuatro .right .instagram:hover{
    background-color: rgb(224, 52, 224);
    scale: 105%;
  }
  .seccion-cuatro .right .tik-tok:hover{
    background-color: rgb(219, 25, 25);
    scale: 105%;
  }
  .seccion-cuatro .right .facebook:hover{
    background-color: rgb(58, 26, 235);
    scale: 105%;
  }
  /* Footer */
  footer{
    background-color: #1F1B17;
    padding: 40px;
    color: white;
    display: flex;
    justify-content: space-between
  }
  .foot-col-uno{
    width: 30%;
  }
  .foot-col-uno img{
    width: 100px;
    margin-bottom: 20px;
  }
  footer p{
    margin-bottom: 10px;
  }
  .foot-col-dos{
    width: 30%;
  }
  .foot-col-dos .links-footer{
    margin-top: 90px;
    display: flex;
    flex-direction: column;
  }
  .foot-col-dos .links-footer a{
    color: white;
    text-decoration: none;
    margin-bottom: 5px;
    width: 150px;
  }
  .foot-col-tres{
    width: 30%;
  }
  .foot-col-tres .links-footer{
    margin-top: 90px;
  }
  .foot-col-tres .links-footer a{
    color: white;
    text-decoration: none;
    margin-bottom: 5px;
    font-size: 1.8em;
  }
  .foot-col-tres .redes-footer{
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
  }
  .parrafo-final{
    display: flex;
    justify-content: space-between;
    font-size: .8em;
    margin: 5px 10px;
  }
  /* Responsive*/
  @media (max-width: 992px) {
    .head .links {
      display: none;
    }
    header img {
      width: 80px;
    }
    .head .btn-menu {
      display: block;
    }
    .dropdown-menu {
      display: block;
    }
    /*Slider*/
    .carousel-container .carousel-slide img {
      width: 100%;
      height: auto;
      display: block;
    }
    .carousel-container .carousel-slide .overlay img {
      display: none;
    }
    .overlay {
      width: 100%;
      display: flex;
      flex-direction: column; /* Ajusta el ancho máximo del overlay según tus preferencias */
    }
    .overlay .info {
      margin-top: 0;
    }
    .mensaje-uno img{
      margin-top: 20px;
      width: 80px;
    }
    .mensaje-uno h3{
      margin: 20px;
      font-size: 1em;
    }
    .info h2,.info h3, .info p{
      font-size: .5em;
    }
    .navegadores {
      display: none;
    }
    /* Seccion Dos */
    .seccion-dos{
      align-items: center;
      flex-direction: column;
    }
    .iconos-seccion-dos{
      width: 80%;
      display: flex;
    }
    .iconos-seccion-dos img{
      width: 100px;
    }
    /* Seccion tres */
    .seccion-tres{
      padding: 20px;
    }
    .seccion-tres h2{
      margin-top: 20px;
      width: 80%;
      padding: 20px;
    }
    /* Seccion cuatro */
    .seccion-cuatro{
      display: flex;
      flex-direction: column;
      width: 100%;
    }
    .seccion-cuatro .left{
      width: 80%;
      flex-direction: column;
    }
    .seccion-cuatro .left .insta{
      margin-bottom: 50px;
    }
    .seccion-cuatro .right{
      margin-bottom: 40px;
    }
    /* Footer */
    footer{
      flex-direction: column;
    }
    .foot-col-uno{
      width: 95%;
      margin: auto;
      margin-bottom: 40px;
    }
    .foot-col-uno img{
      width: 70px;
      margin-bottom: 20px;
    }
    footer p{
      margin-bottom: 5px;
    }
    .foot-col-dos{
      width: 95%;
    }
    .foot-col-dos .links-footer{
      margin-top: 10px;
      margin-bottom: 40px;
    }
    .foot-col-tres{
      width: 95%;
    }
    .foot-col-tres .links-footer{
      margin-top: 10px;
    }
    .parrafo-final{
      font-size: .6em;
    }
  }
  