* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
}

body {
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.up {
    font-size: clamp(1rem, 2vw, 1.5rem);
    margin: 0 4rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 3rem auto;
    width: 100%;
    cursor: pointer;
    gap: 2rem;
}

nav h1 {
    font-weight: bold;
    font-size: clamp(1rem, 3vw, 2rem);
    color: black;
    background-color: #FFD300;
    padding: clamp(0.5rem, 1vw, 1rem) clamp(1rem, 2vw, 2rem);
    border-radius: 30px;
    text-align: center;
}

nav div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background-color: white;
    font-weight: bold;
    transition: transform 0.2s ease-in-out;
}

nav div:hover {
    transform: scale(1.1);
}

nav i {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: white;
    background-color: #FFD300;
    padding: clamp(0.5rem, 1vw, 1rem);
    border-radius: 30px;
    rotate: 180deg;
}

.first p {
    font-size: clamp(1rem, 2vw, 1.25rem);
}

.first {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: black;
    gap: 1rem;
}

#f-down {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 4rem;
}

#f-down ul {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

#f-down ul div {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

#f-down img {
    width: clamp(20rem, 30vw, 35rem);
    border: 10px solid #FFD300;
    border-radius: 5rem;
}

.second {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    color: black;
    gap: 1rem;
}

.second img {
    width: clamp(30rem, 40vw, 50rem);
    border: 10px solid #FFD300;
    border-radius: 5rem;
}

.second .divs {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.divs ul {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.divs ul div {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.image-container {
    position: absolute;
    z-index: -1;
}

#up-left-container {
    top: 0;
    left: 0;
    margin: -4rem -6rem;
    width: clamp(10rem, 15vw, 20rem);
}

#down-right-container {
    bottom: -45rem;
    right: 0;
    margin-right: -4rem;
    width: clamp(10rem, 15vw, 20rem);
    rotate: 180deg;
}

.produtos {
    margin: 10rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.produto {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #FFD300;
    padding: 3rem 1rem;
    height: clamp(15rem, 20vw, 20rem);
    width: clamp(15rem, 20vw, 20rem);
    border: 2px solid black;
    border-radius: 31px;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.3);
}

.produto img {
    width: clamp(10rem, 15vw, 20rem);
    margin-bottom: 1rem;
}

.produto button {
    font-size: clamp(1rem, 1.5vw, 1rem);
    font-weight: bold;
    background-color: transparent;
    padding: 0rem 1rem;
    border: 2px solid black;
    border-radius: 20px;
    color: black;
}

.produto button:hover {
    border-color: white;
}

#div-beelive-beeathon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto;
    width: clamp(3rem, 3vw, 7rem);
}

@media (max-width: 900px) {
    #down-right-container {
        display: none;
    }

    .up {
        gap: 5rem;
    }

    #f-down {
        flex-direction: column;
        gap: 1rem;
        justify-content: center;
    }

    .second {
        flex-direction: column;
    }

    nav {
        margin: 3rem auto 0 auto;
    }
}

@media (max-width: 500px) {
    .second img {
        display: none;
    }

    .up {
        gap: 2rem;
    }

    .divs ul {
        gap: 1rem;
    }

    .second .divs {
        gap: 2rem;
    }

    #f-down ul {
        gap: 1rem;
    }
}

@media (max-width: 400px) {
    .up {
        margin: 0 1rem;
    }

    #f-down ul div,
    .divs ul div {
        margin: 0 0.5rem;
    }

    #up-left-container {
        display: none;
    }
}

@media (max-width: 330px) {
    nav {
        flex-direction: column;
    }

    #f-down img {
        width: clamp(15rem, 30vw, 35rem);
    }
}