.contentWeb {
    width: 100%;
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 767px) {
    .desktop-container {
        display: none;
    }

    .mobile-container {
        display: block;
    }
}

@media screen and (min-width: 768px) {
    .desktop-container {
        display: block;
    }

    .mobile-container {
        display: none;
    }

    .section1 {
        width: 100%;
        position: relative;
    }

    .section1 img {
        width: 100%;
        display: block;
    }

    /* Section 2 */
    .section2 {
        width: 100%;
        background-color: #FCF5EB;
        padding: 40px 30px 40px 30px;
        position: relative;
    }

    .section2 .inputsData{
        width: 100%;
        position: relative;
        display: flex;
        justify-content: center;
        gap: 50px;
        margin-bottom: 50px;
    }

    .inputsData .inputsName{
        width: 30%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .inputsName input{
        width: 100%;
    }

    .inputsData .inputsRoom{
        width: 30%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .inputsRoom select{
        width: 100%;
    }

    .inputsData .inputsPax{
        width: 30%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .inputsPax select{
        width: 100%;
    }

    .menuSection{
        width: 100%;
        position: relative;
    }

    .menuSection .mainDish{
        width: 100%;
        position: relative;
    }

    .mainDish h3{
        font: normal normal 400 20px/30px Trajan Pro3;
        color: #8B4009;
        -webkit-text-stroke: 1px #8B4009;
        margin-bottom: 30px;
    }

    .mainDish .mainFlex{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .mainFlex .cardMain{
        width: 40%;
        background-color: gray;
        padding: 30px;
    }

    .cardMain h2{
        font: normal normal 400 20px/30px Trajan Pro3;
        color: #fff;
        -webkit-text-stroke: 1px #fff;
        margin-bottom: 30px;
    }

    .cardMain p{
        font: normal normal 400 18px/30px Accia Piano;
        color: #fff;
    }

    .quantity-controls {
        display: flex;
        justify-content: center;
        gap: 10px;
        align-items: center;
        margin-top: 10px;
      }

      .quantity-controls button {
        padding: 6px 12px;
        font-size: 16px;
        cursor: pointer;
      }


}