@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

* {
    padding: 0;
    margin: 0;
    font-family: var(--fonte);
    scroll-behavior: smooth;
}

:root {
    --background: #2b781b4f;
    --background-destaque: #2c8437;
    --botoes-e-titulos: #003771;
    --texto-conteudo: #000000;
    --texto-botao: #ffffff;
    --texto-destaque: #ffffff;
    --fonte: "Inter", sans-serif;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--background-destaque);
    padding: 25px 7rem;
}


.header-botoes {
    display: flex;
    gap: 2rem;
}

.botao {
    display: flex;
    border-radius: 50px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--texto-botao);
    font-size: 16px;
    box-shadow: 2px 2px 2px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: 0.5s;
}

.botao:hover {
    scale: 1.05;
    transition: all 0.5s;
}

.ref {
    display: flex;
    height: 30px;
    width: 160px;
    color: var(--texto-destaque);
    border: 2px solid #FFF;
}


body {
    background-color: var(--background);
}

.conteudo {
    display: flex;
    padding: 65px 10rem;
    gap: 3rem;
}

.conteudo-titulo {
    font-size: 45px;
    color: #ca2222;
    line-height: 130%;
}

.sobre {
    text-align: center;
    font-size: 30px;
    color: var(--botoes-e-titulos);
    line-height: 130%;
}

.conteudo-texto {
    font-size: 16px;
    color: var(--texto-conteudo);
    letter-spacing: -2%;
    line-height: 1.6;
}

.botao-conteudo {
    height: 50px;
    width: 255px;
    background-color: #ca2222;
}

.imagem {
    width: 540px;
    height: 380px;
    border-radius: 15px;
}

ul {
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

.bullet-points {
    display: flex;
    align-items: flex-start;
    padding: 91px 0 30px 0;
    padding-left: 10rem;
}

li {
    margin: 0 1rem;
    width: 350px;
    height: 100px;
}

.bullet-points-icone {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bullet-points-titulo {
    display: flex;
    color: var(--botoes-e-titulos);
    font-size: 20px;
    line-height: 130%;
    letter-spacing: -2%;
    font-weight: bold;
}

h2 {
    font-size: 20px;
}

footer {
    background-color: var(--background);
}

.texto-footer {
    display: flex;
    justify-content: center;
    font-size: 10px;
    color: #23272e;
    padding: 46.5px 0;
}

@media (min-width: 2500px) {
    .bullet-points {
        gap: 0;
    }
}

@media (min-width: 1600px) {
    .bullet-points {
        justify-content: space-around;
    }
}

@media (max-width: 1390px) {
    header {
        padding: 25px 3rem;
    }

    .bullet-points {
        gap: 0;
        row-gap: 2rem;
    }
}

@media (max-width: 1305px) {
    header {
        padding: 4rem;
    }

    .bullet-points {
        justify-content: space-around;
        padding-left: 3rem;
    }

    .conteudo {
        padding: 30px 3rem;
    }

    .imagem {
        width: 440px;
        height: 310px;
    }
}

@media (max-width: 1150px) {
    .container-imagem {
        display: flex;
        align-self: center;
        justify-self: center;
        flex-direction: column-reverse;
    }

    #culinaria, #artesanato {
        flex-direction: column-reverse;
    }

    .complemento {
        flex-direction: column-reverse;
    }
}

@media (max-width: 980px) {
    .header-botoes {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .botao-conteudo {
        align-content: center;
    }

    .ref {
        width: 125px;
        font-size: 12px;
    }

    .conteudo {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 652px) {
    .botao-conteudo {
        width: auto;
    }
}

@media (max-width: 430px) {
    .logo {
        width: 100px;
        height: 37.5px;
    }

    header {
        padding: 25px 1rem;
    }

    .conteudo {
        padding: 35px 1rem;
        }
        
    .imagem {
        width: 300px;
        height: 212px;
    }
        
    .bullet-points {
        padding: 50px 0;
    }

    .texto-footer {
        text-align: center;
    }
}
