* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: white;
  font-family: sans-serif;

  #headerup {
    background-color: rgb(227, 227, 239);
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;

    & div:nth-of-type(1) {
        width: 20%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        & p:nth-of-type(1) {
        font-size: 35px;
        font-weight: bold;
        }

        & p:nth-of-type(2) {
        font-size: 8px;
        color: orange;
        letter-spacing: 5px; 
        /* margin-bottom: 15px;  */
        
        }
    }
    

    & nav {
      width: 70%;
      height: 100%; 
      display: flex;
      gap: 20px;
      align-items: center;
      justify-content: space-evenly;

      & span {
        cursor: pointer;
        padding: 8px 16px; 
        border-radius: 20px; 
        transition: all 0.8s ease;

        &:hover {
          background-color: rgba(255, 100, 100, 0.2); 
          font-weight: bold;
        }
      }
      & a {
        cursor: pointer;
        padding: 8px 16px; 
        border-radius: 20px; 
        transition: all 0.8s ease;
        text-decoration: none;

        &:hover {
          background-color: rgba(255, 100, 100, 0.2); 
          font-weight: bold;
        }
      }


      & span {
        color: orange;
        & a{
          color: black;
        }
        & div{
          color: black;
        }
        & a:nth-of-type(1){
          color: orange;
        }
      }

     & .dropdown {
        position: relative;
        display: inline-block;
        align-items: center;
          justify-content: center;

        & .dropdown-menu {
          display: none;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          position: absolute;
          /* top: calc(100% + 180px);  */
          margin-top: 15px;
          left: 0;
          background-color: white;
          padding: 12px;
          gap: 8px;
          /* z-index: 100; */
          border: 1px solid rgba(0, 0, 0, 0.15);
          border-radius: 6px;
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
          min-width: 140px;
          min-height: 400px;
          width: 100%; 
          transition: opacity 0.3s ease;
          opacity: 1;

          & > div {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 8px 12px;
            white-space: nowrap;
            width: 100%;
            height: 100%;
            font-size: 14px;
            transition: background-color 0.2s ease;

            &:hover {
              background-color: rgba(255, 100, 100, 0.1);
              font-weight: bold;
              cursor: pointer;
            }
          }
        }

        &.open .dropdown-menu {
          display: flex;
        }
      }
    }
  }
      

  .hamburger-panel {
  display: none;
  position: fixed;
  top: 80px;
  right: 0;
  width: 250px;
  height: 500px;
  padding: 20px;
  background-color: #fff;
  box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 999;

    & p {
      margin-bottom: 20px;
      color: grey;
      font-size: 14px;
    }

    & p:nth-of-type(1) {
      font-weight: bold;
      color: black;
      font-size: 35px;
      margin-bottom: 0px;
    }

    & p:nth-of-type(2) {
      font-size: 10px;
      color: orange;
      letter-spacing: 2px;
      
    }
    & p:nth-of-type(4) {
      font-size: 25px;
      color: black;
      font-weight: bold;
      margin-top: 30px;
    }
    & p:nth-last-of-type(1) {
      font-size: 20px;
      color: orange;
      font-weight: bold;
      margin-top: 40px;
    }
  }


  .search-panel {
    display: none;
    position: fixed;
    top: 80px;
    right: 0;
    width: 250px;
    padding: 20px;
    background-color: #fff;
    box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;

    & input {
      width: 100%;
      padding: 10px;
      font-size: 16px;
    }
  }

  
  #ourKitchen{
    width: 100%;
    height: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
    flex-direction: column;

    & >div:nth-of-type(1){
      width: 100%;
      height: 20%;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;

      & p:nth-of-type(1){
        width: 100%;
        height: 50%;
        font-size: 60px;
        text-align: center;
        justify-content: center;
        font-weight: bold;
        
      }
      & p:nth-of-type(2){
        width: 100%;
        height: 20%;
        font-size: 16px;
        text-align: center;
        justify-content: center;
        color: rgb(172, 172, 172);
        

        & span{
          color: orange;
          margin-right: 17px;
          margin-left: 12px;
          font-weight: bold;
        }
       
      }
      
    }

    & >div:nth-of-type(2){
      width: 100%;
      height: 80%;
      display: flex;
      justify-content: space-around;
      align-items: center;
      
      

      & div:nth-of-type(1){
        width: 45%;
        height: 100%;
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-direction: column;
        margin-top: 50px;

        & p:nth-of-type(1){
          width: 100%;
          height: 3%;
          font-size: 20px;
          color:orange;
          text-align: start;
          justify-content: center;
          margin-top: 150px;
        }
        & p:nth-of-type(2){
          width: 100%;
          height: 13%;
          font-size: 60px;
          text-align: start;
          justify-content: center;
        }
        & p:nth-of-type(3){
          width: 90%;
          height: 15%;
          font-size: 20px;
          text-align: start;
          justify-content: center;
          margin-right: 80px;
        }
        & p:nth-of-type(4){
          width: 100%;
          height: 3%;
          font-size: 20px;
          justify-content: space-evenly;
       
          
        }
        & p:nth-of-type(5){
          width: 100%;
          height: 3%;
          font-size: 20px;
          justify-content: center;
          
        }
        & p:nth-of-type(6){
          width: 100%;
          height: 3%;
          font-size: 20px;
          justify-content: center; 
          
        }
        & p:nth-of-type(7) {
        width: 100%;
        height: 3%;
        font-size: 20px;
        justify-content: center;
        margin-bottom: 150px;
        }
        & span{
            margin-right:20px; 
            color: orange;
        }

       
        

      }

      & div:nth-of-type(2){
        width: 45%;
        height: 85%;
        display: flex;
        background-image: url(../Kitchen/img/1.jpg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        justify-content: center;
        margin-top: 80px;
        
        
      }
      
    }


  }

  #kitchenGallery{
    width: 100%;
    height: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 100px;

    & >div:nth-of-type(1){
      width: 100%;
      height: 20%;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;

      & p:nth-of-type(1){
        width: 100%;
        height: 30%;
        font-size: 20px;
        text-align: center;
        justify-content: center;
        color:orange;
        letter-spacing: 5px;
        
      }
      & p:nth-of-type(2){
        width: 100%;
        height: 40%;
        font-size: 60px;
        text-align: center;
        justify-content: center;
        
      }
    }

    & >div:nth-of-type(2){
      width: 100%;
      height: 80%;
      display: flex;
      justify-content: space-around;
      align-items: center;
      flex-wrap: wrap;
      margin-top: 50px;

      & p{
        width: 32%;
        height: 45%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
      }

      & p:nth-of-type(1){        
        background-image: url(../Kitchen/img/01.jpg);     
      }
      & p:nth-of-type(2){        
        background-image: url(../Kitchen/img/2.jpg);     
      }
      & p:nth-of-type(3){        
        background-image: url(../Kitchen/img/3.jpg);     
      }
      & p:nth-of-type(4){        
        background-image: url(../Kitchen/img/4.jpg);     
      }
      & p:nth-of-type(5){        
        background-image: url(../Kitchen/img/5.jpg);     
      }
      & p:nth-of-type(6){        
        background-image: url(../Kitchen/img/6.jpg);     
      }

        
    }
  }

  #firstfooter{
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 120px;

 
  /*   & article:nth-of-type(2) & div:nth-of-type(1){
      background-image: url(../img/002.png)  
      }
    & article:nth-of-type(3) & div:nth-of-type(1){
      background-image: url(../img/003.png)  
      }
    & article:nth-of-type(4) & div:nth-of-type(1){
      background-image: url(../img/004.png)  
      }
       */

    & article{
      width: 22%;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      

       /* & article:nth-of-type(1), & div:nth-of-type(2), & p:nth-of-type(2){
        padding-top: 150px;

      } */

      & div:nth-of-type(1){
      width: 25%;
      height: 30%;
      display: flex;
      align-items: start;
      /* justify-content: end; */
      background-image: url(../img/001.png);
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      margin-bottom: 110px;
      padding-right: 30px;
      
      /* border: 2px solid rgba(0, 0, 0, 0.15); */
      
      }

      &:nth-of-type(2) {
      & div:nth-of-type(1) {
        background-image: url(../img/002.png);
        }
      }
     /*  // Para el tercer artículo */
      &:nth-of-type(3) {
        & div:nth-of-type(1) {
          background-image: url(../img/003.png);
          }
        }

    /*  // Para el cuarto artículo */
      &:nth-of-type(4) {
        & div:nth-of-type(1) {
          background-image: url(../img/004.png);
          }
        }

      & div:nth-of-type(2){
        width: 75%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: start;
        


        & p:nth-of-type(1){
          width: 60%;
          height: 27%;
          font-size: 30px;
          font-weight: bold;
          /* margin-bottom: 10px; */
          /* border: 2px solid rgba(0, 0, 0, 0.15); */
          margin-right: 140px;
        }

        & p:nth-of-type(2){
          width: 100%;
          height: 28%;
          font-size: 20px;
          color: grey;
          /* margin-bottom: 10px; */
          /* border: 2px solid rgba(0, 0, 0, 0.15); */
        }
      }


    }

    
    
  }

  #subscribe{
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-top: 50px; */
    background-image: url(../img/22.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-wrap: wrap;

    & div:nth-of-type(1){
      width: 70%;
      height: 70%;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      padding-top: 30px;
      /* margin-top: 50px; */

      & p:nth-of-type(1){
        width: 100%;
        height: 12%;
        font-size: 25px;
        text-align: center;
        justify-content: center;
        color: white;
        margin-top: 30px;
        letter-spacing: 5px;
      }
      & p:nth-of-type(2){
        width: 100%;
        height: 27%;
        font-size: 80px;
        text-align: center;
        justify-content: center;
        color: white;
      }
      & p:nth-of-type(3){
        width: 60%;
        height: 20%;
        font-size: 20px;
        text-align: center;
        justify-content: center;
        color: white;
        padding-top: 10px;
      }
      
    }

    & div:nth-of-type(2){
      width: 70%;
      height: 30%;
      display: flex;
      justify-content: center;
      align-items: center;
      padding-bottom: 130px;
      
      & input{
        width: 600px;
        height: 50px;
        font-size: 20px;
        text-align: center;
        justify-content: center;
        color: white;
        background-color: transparent;
        border: white solid 1px;
        cursor: pointer;
        text-align: start;
        padding-left: 30px;
      }

      input::placeholder {
        color: white;
      }

      & button{
        width: 200px;
        height: 50px;
        font-size: 20px;
        text-align: center;
        justify-content: center;
        color: white;
        background-color: orange;
        border: none;
        cursor: pointer;
        margin-left: 10px;
        /* margin-right: 500px; */
      }
    }

  }

  #footerEnd{
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-top: 50px; */
    background-color: rgb(54, 52, 58);
    flex-wrap: wrap;

    & div:nth-of-type(1){
      width: 100%;
      height: 85%;
      display: flex;
      justify-content: space-around;
      align-items: center;
      padding-top: 30px;

      

      
      & article{
        width: 22%;
        height: 60%;
        flex-direction: column;
        justify-content: start;
        align-items: center;

        &:nth-of-type(1) {
          p:nth-of-type(4){ 
            font-style: italic; /* Hace que el texto sea cursiva */
            word-spacing: 10px; /* Ajusta la separación entre palabras */
            /* font-weight: bold; */
            font-size: 20px;
          }
        }

        &:nth-of-type(2) {
          p:nth-of-type(2){   
            height: 17%;       
            font-size: 18px;
            margin-top: 30px;
            color: white;
            margin-left: 0px;
            letter-spacing: 0px;
            
          }
          p:nth-of-type(3){    
            height: 17%;       
            padding-bottom: 20px;          
          }

          p:nth-of-type(4){  
            height: 17%;         
            color: white;          
            font-size: 18px;
          }
          p:nth-of-type(5){  
            height: 17%;         
          }
          
        }
        &:nth-of-type(3) {
          p:nth-of-type(2){   
            height: 17%;       
            font-size: 18px;
            margin-top: 30px;
            color: white;
            margin-left: 0px;
            letter-spacing: 0px;
            
          }
          p:nth-of-type(3){    
            height: 17%;       
            padding-bottom: 20px;          
          }

          p:nth-of-type(4){  
            height: 17%;         
            color: white;          
            font-size: 18px;
          }
          p:nth-of-type(5){  
            height: 17%;         
          }
          p:nth-of-type(6){  
            height: 17%;         
          }
        }
        &:nth-of-type(4) {
          p:nth-of-type(2){   
            height: 14%;       
            font-size: 18px;
            margin-top: 30px;
            margin-left: 0px;
            letter-spacing: 0px;
            
          }
          p:nth-of-type(3){    
            height: 14%;       
            padding-bottom: 0px;          
          }

          p:nth-of-type(4){  
            height: 14%;         
            color: white;          
            font-size: 18px;
            color:orange;
          }
          p:nth-of-type(5){  
            height: 14%;         
          }
          p:nth-of-type(6){  
            height: 14%; 
            color: orange;        
          }
          p:nth-of-type(7){  
            height: 14%;         
          }
        }

        & p{
          width: 100%;
          height: 15%;
          font-size: 18px;
          color:white;
          text-align: start;
          justify-content: center;
        }

        & p:nth-of-type(1){
          width: 100%;
          height: 20%;
          font-size: 45px;
          
        }
        & p:nth-of-type(2){
          width: 100%;
          height: 15%;
          font-size: 10px;
          letter-spacing: 5px;
          color: orange;  
          margin-left: 2px;   
        }
        & p:nth-of-type(3){
          width: 90%;
          height: 35%;
          font-size: 18px;
          
        }
        & p:nth-of-type(4){
          width: 100%;
          height: 35%;
          font-size: 30px;
          color: orange; 
          /* padding-bottom: 20px; */
          /* margin-bottom: 40px;  */   
        }



      }
    }

    & div:nth-of-type(2){
      width: 100%;
      height: 15%;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      flex-wrap: wrap;
      padding-top: 45px;


      & p:nth-of-type(1){
        width: 80%;
        height: 3%;
        background-color: grey;
        
      }

      & p:nth-of-type(2){
        width: 100%;
        height: 97%;
        color: white;
        font-size: 15px;
        text-align: center;
        justify-content: center;
        text-align: center;
        padding-top: 17px;
      }
    }

  }
}


@media (max-width: 431px) and (orientation: portrait){

  * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

  body {
    background-color: white;
    font-family: sans-serif;

    #headerup {
    background-color: rgb(227, 227, 239);
    width: 100%;
    height: 900px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    flex-direction: column;

    & div:nth-of-type(1) {
        width: 100%;
        height: 10%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        & p:nth-of-type(1) {
        font-size: 60px;
        font-weight: bold;
        }

        & p:nth-of-type(2) {
        font-size: 15px;
        color: orange;
        letter-spacing: 5px; 
        /* margin-bottom: 15px;  */
        
        }
    }
    

    & nav {
      width: 100%;
      height: 75%; 
      display: flex;
      gap: 20px;
      align-items: center;
      justify-content: space-evenly;
      flex-direction: column;

      & span {
        font-size: 35px;     
      }

        .dropdown-menu > a:first-child { color: orange; }


        &:hover {
          background-color: rgba(255, 100, 100, 0.2); 
          font-weight: bold;
        }
      }
      & a {
        cursor: pointer;
        padding: 8px 16px; 
        border-radius: 30px; 
        transition: all 0.8s ease;
        text-decoration: none;
        font-size: 35px;

        &:hover {
          background-color: rgba(255, 100, 100, 0.2); 
          font-weight: bold;
        }
      }


      & a:nth-of-type(1) {
        color: black;
      }

      & a:nth-of-type(2) {
        color: black;
      }

      & a:nth-of-type(3) {
        color: black;
      }

      & a:nth-of-type(4) {
        color: black;
      }

     & .dropdown {
        position: relative;
        display: inline-block;
        align-items: center;
        justify-content: center;
        

        & .dropdown-menu {
          width: 400px;
          height: 500px;
          display: none;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          position: absolute;
          /* top: calc(100% + 80px);  */
          top:60px;
          bottom: 80px;
          /* margin-top: 55px; */
          left: 0;
          background-color: white;
          padding: 22px;
          gap: 8px;
          /* z-index: 100; */
          border: 1px solid rgba(0, 0, 0, 0.15);
          border-radius: 6px;
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
          min-width: 180px;
          min-height: 800px;
          width: 100%; 
          transition: opacity 0.3s ease;
          opacity: 1;

          & a {
          color: black;
        }

          & > div {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 8px 12px;
            white-space: nowrap;
            width: 100%;
            height: 100%;
            font-size: 35px;
            transition: background-color 0.2s ease;



            &:hover {
              background-color: rgba(255, 100, 100, 0.1);
              font-weight: bold;
              cursor: pointer;
            }
          }
        }

        &.open .dropdown-menu {
          display: flex;
        }
      }
    }   

    .search-icon, .hamburger-toggle {
      padding: 10px 30px;
    }

    .hamburger-panel {
    display: none;
    position: fixed;
    top: 80px;
    right: 0;
    width: 300px;
    height: 600px;
    padding: 20px;
    background-color: #fff;
    box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.2);
    /* z-index: 999; */

      & p {
        margin-bottom: 20px;
        color: grey;
        font-size: 20px;
      }

      & p:nth-of-type(1) {
        font-weight: bold;
        color: black;
        font-size: 45px;
        margin-bottom: 0px;
      }

      & p:nth-of-type(2) {
        font-size: 20px;
        color: orange;
        letter-spacing: 2px;
        
      }
      & p:nth-of-type(4) {
        font-size: 35px;
        color: black;
        font-weight: bold;
        margin-top: 30px;
      }
      & p:nth-last-of-type(1) {
        font-size: 20px;
        color: orange;
        font-weight: bold;
        margin-top: 40px;
      }
    }

    .search-panel {
    display: none;
    position: fixed;
    top: 80px;
    right: 0;
    width: 220px;
    padding: 20px;
    background-color: #fff;
    box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;

    & input {
      width: 100%;
      padding: 10px;
      font-size: 16px;
    }
  }

    
    #ourKitchen{
      width: 100%;
      height: 1100px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 50px;
      flex-direction: column;

      & >div:nth-of-type(1){
        width: 100%;
        height: 15%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;

        & p:nth-of-type(1){
          width: 100%;
          height: 50%;
          font-size: 60px;
          text-align: center;
          justify-content: center;
          font-weight: bold;
          
        }
        & p:nth-of-type(2){
          width: 100%;
          height: 20%;
          font-size: 16px;
          text-align: center;
          justify-content: center;
          color: rgb(172, 172, 172);
          

          & span{
            color: orange;
            margin-right: 17px;
            margin-left: 12px;
            font-weight: bold;
          }
        
        }
        
      }

      & >div:nth-of-type(2){
        width: 100%;
        height: 80%;
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-wrap: wrap;
        
        

        & div:nth-of-type(1){
          width: 100%;
          height: 60%;
          display: flex;
          justify-content: space-around;
          align-items: center;
          flex-direction: column;
          margin-top: 20px;
          margin-left: 1%;
          margin-right: 1%;
          

          & p:nth-of-type(1){
            width: 100%;
            height: 5%;
            font-size: 20px;
            color:orange;
            text-align: start;
            justify-content: center;
            margin-top: 0px;
          }
          & p:nth-of-type(2){
            width: 100%;
            height: 22%;
            font-size: 50px;
            text-align: start;
            justify-content: center;
          }
          & p:nth-of-type(3){
            width: 90%;
            height: 29%;
            font-size: 20px;
            text-align: start;
            justify-content: center;
            margin-right: 25px;
          }
          & p:nth-of-type(4){
            width: 100%;
            height: 3%;
            font-size: 18px;
            justify-content: center;
        
            
          }
          & p:nth-of-type(5){
            width: 100%;
            height: 3%;
            font-size: 18px;
            justify-content: center;
            
          }
          & p:nth-of-type(6){
            width: 100%;
            height: 3%;
            font-size: 18px;
            justify-content: center; 
            
          }
          & p:nth-of-type(7) {
          width: 100%;
          height: 3%;
          font-size: 18px;
          justify-content: center;
          margin-bottom: 0px;
          }
          & span{
              margin-right:20px; 
              color: orange;
          }

        
          

        }

        & div:nth-of-type(2){
          width: 100%;
          height: 40%;
          display: flex;
          background-image: url(../Kitchen/img/1.jpg);
          background-size: cover;
          background-position: center;
          background-repeat: no-repeat;
          justify-content: center;
          margin-top: 20px;
          
          
        }
        
      }


    }

    #kitchenGallery{
      width: 100%;
      height: 1700px;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      margin-top: 80px;

      & >div:nth-of-type(1){
        width: 100%;
        height: 10%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;

        & p:nth-of-type(1){
          width: 100%;
          height: 15%;
          font-size: 20px;
          text-align: center;
          justify-content: center;
          color:orange;
          letter-spacing: 5px;
          
        }
        & p:nth-of-type(2){
          width: 100%;
          height: 50%;
          font-size: 50px;
          text-align: center;
          justify-content: center;
          
        }
      }

      & >div:nth-of-type(2){
        width: 100%;
        height: 90%;
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-wrap: wrap;
        margin-top: 50px;

        & p{
          width: 96%;
          height: 16%;
          background-size: cover;
          background-position: center;
          background-repeat: no-repeat;
        }

        & p:nth-of-type(1){        
          background-image: url(../Kitchen/img/01.jpg);     
        }
        & p:nth-of-type(2){        
          background-image: url(../Kitchen/img/2.jpg);     
        }
        & p:nth-of-type(3){        
          background-image: url(../Kitchen/img/3.jpg);     
        }
        & p:nth-of-type(4){        
          background-image: url(../Kitchen/img/4.jpg);     
        }
        & p:nth-of-type(5){        
          background-image: url(../Kitchen/img/5.jpg);     
        }
        & p:nth-of-type(6){        
          background-image: url(../Kitchen/img/6.jpg);     
        }

          
      }
    }

    #firstfooter{
      width: 100%;
      height: 600px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 100px;
      flex-direction: column;


      & article{
        width: 100%;
        height: 23%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        margin-bottom: 40px;
        


        & div:nth-of-type(1){
        width: 30%;
        height: 100%;
        display: flex;
        align-items: start;
        /* justify-content: end; */
        background-image: url(../img/001.png);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        margin-bottom: 60px;
        padding-right: 30px;
        
        /* border: 2px solid rgba(0, 0, 0, 0.15); */
        
        }

        &:nth-of-type(2) {
        & div:nth-of-type(1) {
          background-image: url(../img/002.png);
          }
        }
      /*  // Para el tercer artículo */
        &:nth-of-type(3) {
          & div:nth-of-type(1) {
            background-image: url(../img/003.png);
            }
          }

      /*  // Para el cuarto artículo */
        &:nth-of-type(4) {
          & div:nth-of-type(1) {
            background-image: url(../img/004.png);
            }
          }

        & div:nth-of-type(2){
          width: 65%;
          height: 100%;
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          text-align: start;
          


          & p:nth-of-type(1){
            width: 80%;
            height: 65%;
            font-size: 30px;
            font-weight: bold;
            /* margin-bottom: 10px; */
            /* border: 2px solid rgba(0, 0, 0, 0.15); */
            margin-right: 50px;
          }

          & p:nth-of-type(2){
            width: 100%;
            height: 30%;
            font-size: 20px;
            color: grey;
            /* margin-bottom: 10px; */
            /* border: 2px solid rgba(0, 0, 0, 0.15); */
          }
        }


      }

      
      
    }

    #subscribe{
      width: 100%;
      height: 600px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 110px;
      background-image: url(../img/22.jpg);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      flex-wrap: wrap;

      & div:nth-of-type(1){
        width: 100%;
        height: 65%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding-top: 20px;
        /* margin-top: 50px; */

        & p:nth-of-type(1){
          width: 100%;
          height: 12%;
          font-size: 20px;
          text-align: center;
          justify-content: center;
          color: white;
          margin-top: 30px;
          letter-spacing: 5px;
        }
        & p:nth-of-type(2){
          width: 100%;
          height: 35%;
          font-size: 50px;
          text-align: center;
          justify-content: center;
          color: white;
        }
        & p:nth-of-type(3){
          width: 100%;
          height: 20%;
          font-size: 20px;
          text-align: center;
          justify-content: center;
          color: white;
          padding-top: 10px;
        }
        
      }

      & div:nth-of-type(2){
        width: 100%;
        height: 35%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-bottom: 20px;
        flex-direction: column;
        
        & input{
          width: 95%;
          height: 50px;
          font-size: 20px;
          text-align: center;
          justify-content: center;
          color: white;
          background-color: transparent;
          border: white solid 1px;
          cursor: pointer;
          text-align: start;
          padding-left: 30px;
        }

        input::placeholder {
          color: white;
        }

        & button{
          width: 250px;
          height: 50px;
          font-size: 20px;
          text-align: center;
          justify-content: center;
          color: white;
          background-color: orange;
          border: none;
          cursor: pointer;
          margin-left: 10px;
          margin-top: 20px;
          /* margin-right: 500px; */
        }
      }

    }

    #footerEnd{
      width: 100%;
      height: 1350px;
      display: flex;
      justify-content: center;
      align-items: center;
      /* margin-top: 50px; */
      background-color: rgb(54, 52, 58);
      flex-wrap: wrap;

      & div:nth-of-type(1){
        width: 100%;
        height: 93%;
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding-top: 30px;
        flex-wrap: wrap;

        & article:nth-of-type(4){
          width: 100%;
          height: 26%;
          flex-direction: column;
          justify-content: start;
          align-items: center;
          margin-top: 30px;
          padding-bottom: 20px;
        }

        & article:nth-of-type(3){
          width: 100%;
          height: 19%;
          flex-direction: column;
          justify-content: start;
          align-items: center;
        }

        & article:nth-of-type(2){
          width: 100%;
          height: 19%;
          flex-direction: column;
          justify-content: start;
          align-items: center;
        }

        & article:nth-of-type(1){
          width: 100%;
          height: 18%;
          flex-direction: column;
          justify-content: start;
          align-items: center;
        }

        
        & article{
          width: 100%;
          height: 21%;
          flex-direction: column;
          justify-content: start;
          align-items: center;
          margin-left: 1%;
          margin-right: 1%;
          /* flex-wrap: wrap; */

          &:nth-of-type(1) {
            p:nth-of-type(4){ 
              font-style: italic; /* Hace que el texto sea cursiva */
              word-spacing: 10px; /* Ajusta la separación entre palabras */
              /* font-weight: bold; */
              font-size: 20px;
            }
          }

          &:nth-of-type(2) {
            p:nth-of-type(2){   
              height: 17%;       
              font-size: 22px;
              margin-top: 30px;
              color: white;
              margin-left: 0px;
              letter-spacing: 0px;
              
            }
            p:nth-of-type(3){    
              height: 17%;       
              padding-bottom: 20px;          
            }

            p:nth-of-type(4){  
              height: 17%;         
              color: white;          
              font-size: 22px;
            }
            p:nth-of-type(5){  
              height: 17%;         
            }
            
          }
          &:nth-of-type(3) {
            p:nth-of-type(2){   
              height: 17%;       
              font-size: 22px;
              margin-top: 30px;
              color: white;
              margin-left: 0px;
              letter-spacing: 0px;
              
            }
            p:nth-of-type(3){    
              height: 17%;       
              padding-bottom: 20px;          
            }

            p:nth-of-type(4){  
              height: 17%;         
              color: white;          
              font-size: 22px;
            }
            p:nth-of-type(5){  
              height: 17%;         
            }
            p:nth-of-type(6){  
              height: 17%;         
            }
          }
          &:nth-of-type(4) {
            p:nth-of-type(2){   
              height: 11%;       
              font-size: 22px;
              margin-top: 20px;
              margin-left: 0px;
              letter-spacing: 0px;
              
            }
            p:nth-of-type(3){    
              height: 20%;       
              padding-bottom: 0px;          
            }
            p:nth-of-type(1){    
              height: 14%;       
              padding-bottom: 0px;          
            }

            p:nth-of-type(4){  
              height: 12%;         
              color: white;          
              font-size: 22px;
              color:orange;
            }
            p:nth-of-type(5){  
              height: 20%;         
            }
            p:nth-of-type(6){  
              height: 11%; 
              color: orange;        
            }
            p:nth-of-type(7){  
              height: 18%;         
            }
          }

          & p{
            width: 100%;
            height: 15%;
            font-size: 22px;
            color:white;
            text-align: start;
            justify-content: center;
          }

          & p:nth-of-type(1){
            width: 100%;
            height: 20%;
            font-size: 45px;
            
          }
          & p:nth-of-type(2){
            width: 100%;
            height: 15%;
            font-size: 15px;
            letter-spacing: 5px;
            color: orange;  
            margin-left: 2px;   
          }
          & p:nth-of-type(3){
            width: 90%;
            height: 35%;
            font-size: 22px;
            
          }
          & p:nth-of-type(4){
            width: 100%;
            height: 35%;
            font-size: 30px;
            color: orange; 
            /* padding-bottom: 20px; */
            /* margin-bottom: 40px;  */   
          }



        }
      }

      & div:nth-of-type(2){
        width: 100%;
        height: 7%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        flex-wrap: wrap;
        padding-top: 45px;


        & p:nth-of-type(1){
          width: 80%;
          height: 3%;
          background-color: grey;
          
        }

        & p:nth-of-type(2){
          width: 100%;
          height: 97%;
          color: white;
          font-size: 15px;
          text-align: center;
          justify-content: center;
          text-align: center;
          padding-top: 17px;
        }
      }

    }
  }


}