@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --verde-escuro: #008D36;
    --verde-claro: #8FBF2A;
    --laranja-escuro: #E84E1B;
    --laranja-claro: #FBB040;
    --preto: #000;
    --branco: #fff;
    --cinza-claro: #d9d9d986;
}

h2,
h3 {
    font-family: "Montserrat", serif;
    font-weight: bold !important;
    background: linear-gradient(to bottom, #E84E1B 0%, #FBB040 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

h4,
h5,
h6 {
    font-family: "Montserrat", serif;
    font-weight: bold !important;
}

button {
    cursor: pointer;
}

html,
body {
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: "Poppins", serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

main {
    min-height: 100vh;
}

.whatsApp {
    animation: mover 2s infinite ease-in-out;
    background-color: #25D366;
    color: #ffffff;
    border: transparent;
    border-radius: 100%;
    font-size: 2em;
    height: 50px;
    width: 50px;
    position: fixed;
    bottom: 20px;
    right: 15px;
    z-index: 10000;
}

.whatsApp:hover {
    transition: 500ms;
    transform: rotate(360deg);
    border: 2px solid #25D366;
    border-radius: 12px;
    color: #25D366;
    background-color: #ffffff;
}

.voltarTopo {
    display: none;
    border: 2px solid var(--laranja-escuro);
    background-color: var(--laranja-escuro);
    color: var(--branco);
    border-radius: 100%;
    font-size: 1.5em;
    height: 50px;
    width: 50px;
    position: fixed;
    bottom: 80px;
    right: 15px;
    z-index: 10000;
}

.voltarTopo:hover {
    transition: 500ms;
    transform: rotate(360deg);
    border-radius: 12px;
    background-color: var(--branco);
    border: 2px solid var(--laranja-escuro);
}

.voltarTopo:hover i {
    color: var(--laranja-escuro);
}

.voltarTopo.scrolled {
    display: block;
}

section {
    min-height: 100vh;
    scroll-margin-top: 100px;
}

/* HOME */
/* HOME */
/* HOME */

#home {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1em 2em;
    overflow: hidden;
    background-color: black;
    z-index: -1;
}

#home__video {
    position: absolute;
    /* Coloca o vídeo atrás do conteúdo */
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Garante que o vídeo cubra toda a seção */
    transform: translate(-50%, -50%);
    z-index: -1;
    /* Mantém o vídeo no fundo */
}

.content {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.5);
    /* Fundo escuro para melhor contraste */
    padding: 20px;
    border-radius: 10px;
}

.home__div {
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
    width: 100%;
    gap: 1em;
}

.home__titulo {
    color: var(--branco) !important;
    font-size: 3em;
    font-weight: bold;
    width: 80%;
}

.home__titulo-span {
    color: var(--laranja-escuro);
}

.home__span {
    color: var(--branco);
}

.home__p {
    color: var(--branco);
    width: 70%;
    font-size: 1.5em;
}

.home__btn {
    display: inline-block;
    background-color: var(--laranja-escuro);
    color: var(--branco);
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    padding: 1em;
    border-radius: 8px;
    border: 2px solid var(--laranja-escuro);
    width: 30%;
    text-align: center;
}

.home__btn:hover,
.home__btn:focus {
    transition: 1s;
    transform: scale(1.01);
    background-color: transparent;
    color: var(--laranja-escuro);
    border: 2px solid var(--laranja-escuro);
}

.home__cta-baixo {
    color: var(--branco);
    gap: 1em;
    font-size: 2em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: mover 2s infinite ease-in-out;
    text-decoration: none;
}

.home__cta-baixo:hover,
.home__cta-baixo:focus {
    transition: 1s;
    color: var(--laranja-claro);
}

@keyframes mover {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }

    100% {
        transform: translateY(0);
    }
}

/* SOBRE */
/* SOBRE */
/* SOBRE */
#sobre {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(-7deg, #E84E1B 56%, #008D36 56%);
}

.sobre__titulo {
    margin: 2em 0;
    background: var(--branco);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.sobre__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 2em 2em 2em;
    gap: 4em;
}

.sobre__container-cima {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 2em;
}

.sobre__img {
    width: 30%;
    border: 4px solid var(--laranja-escuro);
    border-radius: 12px;
}

.sobre__div-texto {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 40%;
}

.sobre__paragrafos {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sobre__p1,
.sobre__p2 {
    padding: 1em;
    border-radius: 12px;
    box-shadow: 1px 5px 15px 1px rgba(0, 0, 0, 0.33);
    color: var(--branco);
}

.sobre__p1 {
    background-color: var(--verde-escuro);
}

.sobre__p2 {
    background-color: var(--laranja-escuro);
}

.sobre__div-botoes {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 1em;
}

.sobre1__btn {
    box-shadow: 1px 5px 15px 1px rgba(0, 0, 0, 0.33);
    background-color: var(--laranja-escuro);
    padding: 1em;
    border-radius: 8px;
    border: 2px solid var(--laranja-escuro);
    width: 100%;
    text-decoration: none;
    color: var(--branco);
    font-weight: bold;
    font-size: 1em;
    text-align: center;
}

.sobre1__btn:hover,
.sobre1__btn:focus {
    transition: 1s;
    transform: scale(1.01);
    background-color: #d24212;
}

.sobre2__btn {
    box-shadow: 1px 5px 15px 1px rgba(0, 0, 0, 0.33);
    background-color: var(--laranja-escuro);
    padding: 1em;
    border-radius: 8px;
    border: 2px solid var(--branco);
    width: 100%;
    text-decoration: none;
    color: var(--branco);
    font-weight: bold;
    font-size: 1em;
    text-align: center;
}

.sobre2__btn-link {
    text-decoration: none;
    color: var(--branco);
    font-weight: bold;
    font-size: 1em;
}

.sobre2__btn:hover,
.sobre2__btn:focus {
    transition: 1s;
    transform: scale(1.01);
    background-color: var(--verde-escuro);
    border: 2px solid var(--laranja-escuro);
}

.sobre__container h3 {
    background: var(--branco);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.sobre__div-cards {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.sobre__card {
    background-color: #f3f3f3;
    border: 4px solid #c13c10;
    border-radius: 12px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 25%;
}

.sobre__card-baixo {
    padding: 2em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
}

.sobre__card img {
    width: 100%;
    border-radius: 8px 8px 0 0;
}

.sobre__card-baixo h4 {
    font-size: 1.5em;
    font-weight: 600 !important;
    color: var(--preto) !important;
    margin-bottom: 0 !important;
    text-align: center;
    width: 100%;
    border-bottom: 2px solid var(--laranja-escuro);
}

.sobre__card-infos {
    display: flex;
    flex-direction: column;
    align-self: center;
    gap: 1em;
}

.sobre__card-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
}

.sobre__card-info i {
    color: var(--laranja-escuro);
    font-size: 1.5em;
}

.sobre__card-info p {
    margin: 0;
    font-size: 1.5em;
}

.sobre__dados {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3em;
    margin-top: 3em;
}

.sobre__dado {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1em;
}

.sobre__dado i {
    font-size: 3em;
    background: linear-gradient(14deg, #ffffff 0%, #dddddd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.sobre__dado p {
    font-weight: bold;
    flex-wrap: wrap;
}

.barrinha {
    width: 2px;
    background-color: var(--branco);
    height: 100px;
}

/* BANNER */
/* BANNER */
/* BANNER */
#banner {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #004938;
}

#banner__1 {
    background: var(--branco);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: underline;
    text-align: center;
}

.banner__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    padding: 0 2em;
    gap: 2em;
}

.banner__container-cards {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2em;
}

.banner__container-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: column;
    gap: 2em;
    padding: 2em;
    border: 4px solid var(--laranja-escuro);
    border-radius: 12px;
    background-color: var(--laranja-escuro);
    color: var(--branco);
    text-align: center;
    width: 20%;
}

.banner__container-card i {
    font-size: 3em;
}

.banner__container-card-img {
    width: 100px;
    height: 100px;
}

.btn-banner {
    background-color: transparent;
    padding: 1em 3em;
    border-radius: 8px;
    border: 2px solid var(--branco);
    text-decoration: none;
    color: var(--branco);
    font-weight: bold;
    font-size: 1em;
    text-align: center;
}

.btn-banner:hover,
.btn-banner:focus {
    transition: 1s;
    transform: scale(1.01);
    background-color: #ffffff2d;
    color: var(--branco);
}

/* PRODUTOS */
/* PRODUTOS */
/* PRODUTOS */
#produtos {
    display: flex;
    align-items: left;
    flex-direction: column;
    background: linear-gradient(to bottom, #E84E1B 0%, #FBB040 100%);
}

.produtos__titulo {
    margin: 2em 0;
    background: var(--branco);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

#prTotal {
    width: 100%;
    min-height: 200px;
    padding: 2em 4em;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#prTotal img {
    width: 30%;
}

.produtos__branco {
    background-color: var(--branco);
    flex-direction: row-reverse;
}

.produtos__branco div {
    align-items: end;
}

.produtos__pr3 {
    background: linear-gradient(to bottom, #8FBF2A 0%, #066129 100%);
}

.produtos__pr4 {
    background: linear-gradient(to bottom, #b343d5 0%, #c97ae1 100%);
}

.produtos__div {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 1em;
    color: var(--branco);
    width: 500px;
}

.produtos__div h3 {
    background: var(--branco);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.produto__btnlinkIndex {
    background-color: transparent;
    padding: 1em;
    border-radius: 8px;
    border: 2px solid var(--branco);
    width: 50%;
    text-decoration: none;
    color: var(--branco);
    font-weight: bold;
    font-size: 1em;
    text-align: center;
}

.produto__btnlinkIndex:hover,
.produto__btnlinkIndex:focus {
    transition: 1s;
    transform: scale(1.01);
    background-color: #ffffff2d;
    color: var(--branco);
}

.mangaRosa-h3 {
    background: linear-gradient(to bottom, #E84E1B 0%, #FBB040 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    text-align: end;
}

.mangaRosa-p {
    color: #E84E1B;
    text-align: end;
}

#btn__mangaRosa-link {
    border: 2px solid #E84E1B;
    color: #E84E1B;
}

.gengibre-h3 {
    background: linear-gradient(to bottom, #D09D73 0%, #AC643D 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    text-align: end;
}

.gengibre-p {
    color: #D09D73;
    text-align: end;
}

#btn__gengibre-link {
    border: 2px solid #D09D73;
    color: #D09D73;
}

/* LOGISTICA */
/* LOGISTICA */
/* LOGISTICA */
.logistica__titulo {
    text-align: center;
    margin: 2em 0;
}

.logistica__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 3em;
}

.logistica__cima {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 3em;
    padding: 0 2em;
}

.logistica__p {
    border: 2px solid var(--laranja-escuro);
    border-radius: 12px;
    padding: 1em;
    width: 90%;
    text-align: center;
}

.logistica__meio {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4em;
}

.logistica__meio-video {
    width: 100%;
    max-width: 300px;
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.logistica__meio-video-play {
    width: 100%;
    height: auto;
    display: block;
}

.logistica__img {
    width: 20%;
    height: auto;
}

.logistica__baixo {
    background-color: var(--laranja-escuro);
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    padding: 1em 2em;
    gap: 1em;
}

.logistica__baixo-item {
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: start;
    width: 30%;
}

.logistica__baixo-item h3 {
    background: var(--preto);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Montserrat", serif;
    font-size: 1.3em;
}

.logistica__baixo-item p {
    color: var(--branco);
}

/* QUALIDADE */
/* QUALIDADE */
/* QUALIDADE */
#qualidade {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.qualidade__titulo {
    margin: 2em 0;
}

.qualidade__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2em;
    width: 60%;
}

.qualidade__p {
    border: 2px solid var(--laranja-escuro);
    border-radius: 12px;
    padding: 1em;
    text-align: center;
}

.qualidade__selos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2em;
}

.qualidade__selo {
    text-decoration: none;
    text-align: center;
}

.qualidade__selo img {
    width: 250px;
    max-width: 100%;
    border: 2px solid var(--laranja-escuro);
    border-radius: 6px;
    padding: 0.5em;
    height: 200px;
    max-height: 100%;
}

.qualidade__selo img:hover,
.qualidade__selo img:focus {
    transition: 1s;
    transform: scale(1.01);
    border: 2px solid var(--laranja-claro);
    cursor: pointer;
    background-color: var(--cinza-claro);
}

/* CONTATO */
/* CONTATO */
/* CONTATO */
#contato {
    background-image: url(../assets/localizacao.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-clip: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contato__titulo {
    margin: 2em 0;
}

.contato__container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2em;
}

.contato__banner {
    background-color: var(--laranja-escuro);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    width: 80%;
}

.contato__banner img {
    width: 100%;
    height: auto;
    border-radius: 12px 12px 0 0;
}

.contato__infos {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1em;
    padding: 0.5em;
}

.contato__infos_cima {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
}

.contato__info {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    gap: 0.2em;
}

.contato__info button {
    margin-bottom: 0.3em;
    color: var(--branco);
    background-color: transparent;
    border: none;
}

.contato__info p {
    margin-bottom: 0.3em;
    color: var(--branco);
}

.contato__infos-baixo {
    background-color: #c13c10;
    padding: 0.3em;
    border-radius: 6px;
    color: var(--branco);
}

@media (max-width: 920px) {

    /* HOME */
    /* HOME */
    /* HOME */
    .home__titulo {
        font-size: 2.3em;
    }

    /* SOBRE */
    /* SOBRE */
    /* SOBRE */
    .sobre__container-cima {
        flex-direction: column;
    }

    .sobre__div-cards {
        flex-direction: column;
    }

    .sobre__img {
        width: 60%;
    }

    .sobre__div-texto {
        width: 60%;
    }

    .sobre__card {
        width: 50%;
    }

    .sobre__dados {
        flex-direction: column;
    }

    .barrinha {
        height: 2px;
        width: 200px;
    }

    /* BANNER */
    /* BANNER */
    /* BANNER */

    .banner__container {
        margin: 2em 0;
        gap: 2em;
    }

    .banner__container-cards {
        flex-wrap: wrap;
    }

    .banner__container-card {
        width: 100%;
    }

    /* PRODUTOS */
    /* PRODUTOS */
    /* PRODUTOS */
    #prTotal img {
        width: 50%;
    }

    #prTotal,
    .produtos__branco {
        flex-direction: column-reverse;
    }

    .produtos__div,
    .produtos__branco div,
    #prTotal {
        align-items: center;
    }

    .limaoTahiti-h3,
    .limaoTahiti-p,
    #prTotal p {
        text-align: center;
    }

    /* LOGISTICA */
    /* LOGISTICA */
    /* LOGISTICA */

    /* QUALIDADE */
    /* QUALIDADE */
    /* QUALIDADE */

    /* CONTATO */
    /* CONTATO */
    /* CONTATO */
    .contato__infos-baixo {
        text-align: center;
    }
}

@media (max-width: 480px) {

    /* HOME */
    /* HOME */
    /* HOME */
    #home {
        align-items: center;
        padding: 1em 0;
    }

    .home__div {
        align-items: center;
        padding: 0 2em;
    }

    .home__titulo {
        font-size: 2em;
        width: 80%;
    }

    .home__p {
        width: 80%;
        font-size: 1em;
    }

    .home__btn {
        width: 80%;
        padding: 0.5em;
    }

    .home__cta-baixo {
        font-size: 1.5em;
        bottom: 20px;
    }

    /* SOBRE */
    /* SOBRE */
    /* SOBRE */
    .sobre__img {
        width: 80%;
    }

    .sobre__div-texto {
        width: 80%;
    }

    .sobre__div-botoes {
        flex-direction: column;
    }

    .sobre__card {
        width: 90%;
    }

    .sobre__card-cargo {
        width: 50%;
    }

    .sobre__card-cargo img {
        width: 100%;
    }

    .sobre__card-baixo h4 {
        font-size: 1.2em;
    }

    .sobre__card-info p {
        font-size: 1em;
    }

    .sobre1__btn,
    .sobre2__btn {
        padding: 0.5em;
    }

    /* BANNER */
    /* BANNER */
    /* BANNER */

    .banner__btn {
        width: 100%;
    }

    .banner__direita img {
        width: 80%;
    }

    /* PRODUTOS */
    /* PRODUTOS */
    /* PRODUTOS */
    #prTotal {
        padding: 2em 2em;
    }

    .produtos__div {
        width: 100%;
    }

    .produto__btn {
        padding: 0.5em;
    }

    /* LOGISTICA */
    /* LOGISTICA */
    /* LOGISTICA */
    .logistica__meio {
        flex-direction: column;
    }

    .logistica__meio-video {
        max-width: 250px;
    }

    .logistica__img {
        width: 30%;
        height: auto;
    }

    .logistica__baixo {
        flex-direction: column;
        align-items: center;
    }

    .logistica__baixo-item {
        width: 70%;
    }

    /* QUALIDADE */
    /* QUALIDADE */
    /* QUALIDADE */
    .qualidade__container {
        width: 60%;
    }

    .qualidade__selos {
        flex-direction: column;
    }

    .qualidade__selo img {
        width: 250px;
        height: 220px;
    }

    /* CONTATO */
    /* CONTATO */
    /* CONTATO */
    .contato__banner {
        width: 100%;
    }

    .contato__infos_cima {
        flex-direction: column;
    }

    .contato__info {
        font-size: 1em;
    }
}