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

html {
    font-family: "Montsserat", sans-serif;
}

body {
    padding: 80px 120px;
    background-color: #ffe5ec;
}

.toposite {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.inp1 {
    height: 40px;
    width: 400px;
    border-radius: 10px;
    padding: 10px;
    margin-top: 105px;
    border-color: #ff1aff;
}

.btn1 {
    height: 40px;
    width: 50px;
    border-radius: 10px;
    border-color: #ff1aff;
}

hr {
    background-color: black;
    border: 0.5px solid;
}

#menutp {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    list-style-type: none;
    border-radius: 10px;
    text-align: center;
    font-size: 15px;
    font-family: Arial;
    color: #333333;
    cursor: pointer;
    height: 55px;
    gap: 15px;
    padding: 5px;
    flex-wrap: wrap;
}

h1 {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.imglogo {
    display: flex;
    justify-content: flex-start;
    height: 250px;
}

.img2 {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 12px;
    flex-wrap: wrap;
}

.img2 img {
    border-radius: 10%;
    border: 3px solid black;
    max-width: 100%;
    height: auto;
}

.tempo li {
    font-size: 20px;
    padding: 15px;
    border-radius: 8px;
}

.tempo {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.paragrafo {
    text-align: justify;
    margin-bottom: 40px;
}

.ingredientes {
    display: flex;
    justify-content: space-evenly;
    gap: 10px;
    flex-wrap: wrap;
}

.ingredientes li {
    list-style: none;
    display: flex;
    align-items: center;
    font-weight: bold;
    gap: 15px;
}

a {
    text-decoration: none;
    color: white;
    width: fit-content;
    background-color: #ffbf49;
    padding: 20px 50px;
    border-radius: 10px;
    font-weight: bold;
    margin: 50px auto;
    display: block;
    text-align: center;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
}

.titulo {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.calda {
    margin-top: 30px;
}

.original {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.ing {
    display: flex;
    justify-content: center;
}

.imgs {
    height: 100px;
    border: 2px solid black;
    border-radius: 10px;
    margin-top: 15px;
    max-width: 100%;
}

.format {
    margin-top: 15px;
    margin-left: 40px;
}

/* ========================= */
/* MEDIA QUERIES - RESPONSIVO */
/* ========================= */

/* Tablets (até 1024px) */
@media (max-width: 1024px) {
    body {
        padding: 50px 60px;
    }

    .inp1 {
        width: 300px;
    }

    #menutp {
        font-size: 14px;
        gap: 10px;
    }
}

/* Celulares médios (até 768px) */
@media (max-width: 768px) {
    body {
        padding: 40px 30px;
    }

    .toposite {
        flex-direction: column;
        align-items: center;
    }

    .inp1 {
        width: 100%;
        margin-top: 20px;
    }

    .btn1 {
        width: 100%;
    }

    #menutp {
        flex-direction: column;
        height: auto;
        gap: 10px;
    }

    .tempo {
        flex-direction: column;
    }

    .ingredientes {
        flex-direction: column;
        align-items: flex-start;
    }

    a {
        padding: 15px 30px;
        margin: 30px auto;
    }
}

/* Celulares pequenos (até 480px) */
@media (max-width: 480px) {
    body {
        padding: 20px 15px;
    }

    h1 {
        font-size: 22px;
        text-align: center;
    }

    .inp1 {
        font-size: 14px;
        padding: 8px;
    }

    .btn1 {
        font-size: 14px;
        height: 35px;
    }

    .tempo li {
        font-size: 16px;
        padding: 10px;
    }

    .imglogo {
        height: 150px;
    }

    a {
        padding: 12px 20px;
        font-size: 14px;
    }
}