* {

    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    scroll-behavior: smooth;

}


header {

    height: 130px;
    background-color: #089e74;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-bottom: #ff9d00 2px solid;
}

.logoEtika {

    height: 140px;
}

span {

    color: #eafff3;
}

.menu,
.menu2 {
    font-size: 18px;
    line-height: 1.6;
    border: #075a3b solid 2px;
    width: fit-content;
    display: flex;
    list-style: none;
}

.menu a,
.menu2 a {
    text-decoration: none;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

.menu .link,
.menu2 .link {
    position: relative;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 5px 20px;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu .link::after,
.menu2 .link::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu .link svg,
.menu2 .link svg {
    width: 14px;
    height: 14px;
    fill: #b0f1cb;
    transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu .item,
.menu2 .item {
    position: relative;
}

.menu .item .submenu,
.menu2 .item .submenu {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 100%;
    border-radius: 5px;
    width: 111%;
    left: -10px;
    overflow: hidden;
    border: 1px solid #cccccc;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1;
    pointer-events: none;
    list-style: none;
}

.menu .item:hover .submenu,
.menu2 .item:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    border-top: transparent;
    border-color: #06583a;
}

.menu .item:hover .link,
.menu2 .item:hover .link {
    color: #ffffff;
    border-radius: 16px 16px 0 0;
}

.menu .item:hover .link::after,
.menu2 .item:hover .link::after {
    transform: scaleX(1);
    transform-origin: right;
}

.menu .item:hover .link svg,
.menu2 .item:hover .link svg {
    fill: #ffffff;
    transform: rotate(-180deg);
}

.submenu .submenu-item {
    width: 100%;
    transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
    background-color: #06583a;
    color: #ffffff;
    display: flex;
    align-items: center;
}

.submenu .submenu-link {
    display: block;
    padding: 7px 24px;
    width: 100%;
    position: relative;
    text-align: center;
    transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.submenu .submenu-item:last-child .submenu-link {
    border-bottom: none;
}

.submenu .submenu-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transform: scaleX(0);
    width: 100%;
    height: 100%;
    background-color: #06583a;
    z-index: -1;
    transform-origin: left;
    transition: transform 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.submenu .submenu-link:hover:before {
    transform: scaleX(1);
    transform-origin: right;
}

.submenu .submenu-link:hover {
    color: #06583a;
    background-color: #ffffff;
}


/* botao de celular */



.menu3 {
    font-size: 18px;
    line-height: 1.6;
    border: #075a3b solid 2px;
    width: fit-content;
    display: none;
    list-style: none;
}

.menu3 a{
    text-decoration: none;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

.menu3 .link3 {
    position: relative;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 5px 20px;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu3 .link3::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu3 .link3 svg {
    width: 14px;
    height: 14px;
    fill: #b0f1cb;
    transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu3 .item3 {
    position: relative;
}

.menu3 .item3 .submenu3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 100%;
    border-radius: 5px;
    width: 111%;
    left: -10px;
    overflow: hidden;
    border: 1px solid #cccccc;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1;
    pointer-events: none;
    list-style: none;
}

.menu3 .item3:hover .submenu3 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    border-top: transparent;
    border-color: #06583a;
}

.menu3 .item3:hover .link3 {
    color: #ffffff;
    border-radius: 16px 16px 0 0;
}

.menu3 .item3:hover .link3::after {
    transform: scaleX(1);
    transform-origin: right;
}

.menu3 .item3:hover .link3 svg {
    fill: #ffffff;
    transform: rotate(-180deg);
}

.submenu3 .submenu-item {
    width: 100%;
    transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
    background-color: #06583a;
    color: #ffffff;
    display: flex;
    align-items: center;
}

.submenu3 .submenu-link3 {
    display: block;
    padding: 7px 24px;
    width: 100%;
    position: relative;
    text-align: center;
    transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.submenu3 .submenu-item:last-child .submenu-link3 {
    border-bottom: none;
}

.submenu3 .submenu-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transform: scaleX(0);
    width: 100%;
    height: 100%;
    background-color: #06583a;
    z-index: -1;
    transform-origin: left;
    transition: transform 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.submenu3 .submenu-link:hover:before {
    transform: scaleX(1);
    transform-origin: right;
}

.submenu3 .submenu-link:hover {
    color: #06583a;
    background-color: #ffffff;
}


/* fim do botao de celular */

.compraTelefone {

    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #005035;
    color: #ffffff;
    padding: 3px;
    font-size: 20px;
}

.compraTelefone strong {

    color: #ff9d00;
    letter-spacing: 0.8px;
    font-size: 20px;
}

.compraTelefone img {

    margin-left: 20px;
}

.tooltip-container {
    width: 170px;
    color: #ffffff;
    --background: #005035;
    position: relative;
    background: var(--background);
    cursor: pointer;
    transition: all 0.2s;
    font-size: 17px;
    padding: 0.7em 1.8em;
    border-radius: 50px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 30px;
}

.tooltip {
    background-color: #01442e;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-60%);
    padding: 0.3em 0.6em;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    border-radius: 50px;
    width: 175px;
}

.tooltip::before {
    background-color: #00a36d;
    position: absolute;
    content: "";
    height: 0.6em;
    width: 0.6em;
    bottom: -0.2em;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
}

.tooltip-container:hover .tooltip {
    top: -70%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


.produtos {

    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 100px;
}


.card {
    padding: 20px;
    border: #8caa95 solid 3px;
    width: 200px;
    border-radius: 20px;
    background: #e8e8e8;
    transition: 0.4s;
}

.card:hover {

    border: #042512 solid 3px;
}



.card-title {
    font-size: 18px;
    font-weight: 600;
    color: #042512;
    margin: 15px 0 0 10px;
}

.card-image {
    min-height: 170px;
    background-color: #c9c9c9;
    border-radius: 15px;
    box-shadow: inset 8px 8px 10px #c3c3c3,
        inset -8px -8px 10px #cfcfcf;
}

.img-produto2 {

    margin-left: 20px;

}

.card-body {
    margin: 15px;
    color: rgb(31, 31, 31);
    font-size: 15px;
}

.by-name {
    font-weight: 700;
}

.comprar {

    border: solid 2px #042512;
    background-color: #074226;
    color: #ffffff;
    padding: 5px 30px;
    text-decoration: none;
    border-radius: 7px;
    margin: 40px;
    transition: 0.3s ease-in;
}

.comprar:hover {

    background-color: #ebebeb;
    color: #042512;
}

#vermais {
    color: #ffffff;
    background-color: #f59f17;
    border: solid 2px #cc7e00;
    padding: 3px;
    padding-left: 13px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.svgVermais {

    fill: #ffffff;
}

#vermais svg {
    margin: 10px;
    width: 15px;
}

.maisItens {

    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.menu-todos {
    margin-top: 40px;
    font-size: 18px;
    line-height: 1.6;
    background-color: #075a3b;
    border: #042512 solid 1px;
    width: 80%;
    display: inline-block;
    list-style: none;

}

.menu-todos a {
    text-decoration: none;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

.menu-todos .link {
    position: relative;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 5px 20px;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu-todos .link::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu-todos .link svg {
    width: 14px;
    height: 14px;
    fill: #b0f1cb;
    transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu-todos .item {
    position: relative;
}

.menu-todos .item .submenu {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 100%;
    border-radius: 5px;
    left: 0;
    width: 100%;
    overflow: hidden;
    border: 1px solid #cccccc;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1;
    pointer-events: none;
    list-style: none;
}

.menu-todos .item:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    border-top: transparent;
    border-color: #06583a;
}

.menu-todos .item:hover .link {
    color: #ffffff;
    border-radius: 16px 16px 0 0;
}

.menu-todos .item:hover .link::after {
    transform: scaleX(1);
    transform-origin: right;
}

.menu-todos .item:hover .link svg {
    fill: #ffffff;
    transform: rotate(-180deg);
}

.submenu .submenu-item {
    width: 100%;
    transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
    background-color: #06583a;
    color: #ffffff;
}

.submenu .submenu-link {
    display: block;
    padding: 7px 24px;
    width: 100%;
    position: relative;
    text-align: center;
    transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.submenu .submenu-item:last-child .submenu-link {
    border-bottom: none;
}

.submenu .submenu-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transform: scaleX(0);
    width: 100%;
    height: 100%;
    background-color: #06583a;
    z-index: -1;
    transform-origin: left;
    transition: transform 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.submenu .submenu-link:hover:before {
    transform: scaleX(1);
    transform-origin: right;
}

.submenu .submenu-link:hover {
    color: #06583a;
    background-color: #ffffff;
}

.propaganda {

    margin: 150px 30px;
    display: flex;
    border: solid 3px midnightblue;
}

.validacao {

    width: 100%;
    height: 100%;
}

.propaganda .textoPropaganda {

    margin-left: 30px;
    display: flex;
    flex-direction: column;
}

.propaganda .textoPropaganda h1 {

    font-size: 45px;
    margin-top: 10px;
    color: #422f89;
}

.propaganda .textoPropaganda h2 {

    margin-top: 30px;

}

.propaganda .textoPropaganda p {

    margin-top: 10px;
    font-size: 18px;
}

.localizacao {

    display: flex;
    margin-top: -50px;
    padding: 50px;
    width: 90%;
    background-color: #033063;
    border: #7230dd solid 3px;

}

#locais {

    margin: 0;
    color: transparent;
    width: 2px;
}

.localizacao h1 {

    color: #ffffff;
    margin-left: 30px;

}

.localizacao .icon-loc {

    margin-right: 10px;
}

.localizacao .enderecos {

    margin-top: 50px;
}

.localizacao .enderecos p {

    color: #ffffff;
    margin: 30px;
}

.botaoMaps {

    text-decoration: none;
    color: #ffffff;
    padding: 10px;
    background-color: #007e54;
    border: solid #005035 2px;
    margin-left: 25px;
}

.botaoMaps:hover {

    background-color: #00df94;
    color: #002b1c;
    transition: 0.3s;
}


footer {

    width: 100%;
    height: 350px;
    background-color: #007e54;
    margin-top: 100px;
    border-top: #ff9d00 solid 3px;

}

.gambiarra {

    display: flex;
    justify-content: space-around;
}

.logoEtika2 {

    height: 140px;
    margin-left: 50px;

}


footer .informacoes h1 {

    margin-top: 3px;
}

footer .informacoes,
.informacoes2 {

    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #ffffff;
    margin-right: 150px;
}

footer .informacoes a,
.informacoes2 a {

    margin-top: 20px;
}

footer .informacoes a {

    text-decoration: none;
    color: #ffffff;
}

.informacoes2 a,
.informacoes2 p {

    text-decoration: none;
    color: white;
    margin-top: 10px;

}




footer .informacoes a:hover,
.informacoes2 a:hover {

    color: #002b1c;
    transition: 0.5s;
}

footer .footerWpp {

    margin-right: 5px;
}


@media (min-width: 768px) and (max-width: 1025px) {


    .logoEtika {

        width: 150px;
        height: 100px;
    }

    .menu .link,
    .menu2 .link {

        gap: 2px;
        padding: 1px 10px;
        border-radius: 16px;
        font-size: 17px;
    }


    .card {

        width: 150px;
        height: 250px;
    }


    .card-title {
        font-size: 18px;
        font-weight: 600;
        color: #042512;
        margin: 5px 0 0 2px;
    }

    .card-image {

        min-height: 0px;

    }

    .img-produto {

        width: 150px;

    }

    .img-produto2 {

        width: 150px;
        margin-left: 0px;

    }

    .card-body {
        margin: 10px;
        color: rgb(31, 31, 31);
        font-size: 15px;
        margin-bottom: 25px;
    }

    .comprar {

        padding: 5px 15px;
        border-radius: 7px;
        margin: 20px;

    }

    .validacao {

        width: 50%;
    }

    .propaganda {

        margin: 160px 10px;
        display: flex;
        border: none;
    }




}


@media (max-width: 767px) {

    header {

        height: 100px;
    }

    .logoEtika {

        width: 150px;
        height: 100px;
    }

    .menu,
    .menu2,
    .submenu,
    .submenu-item {

        display: none;
    }

    .compraTelefone {

        display: flex;
        align-items: center;
        gap: 10px;
        background-color: #005035;
        color: #ffffff;
        padding: 3px;
        font-size: 18px;
    }

    .produtos {

        display: flex;
        flex-direction: column;
        gap: 20px;
    }


    .propaganda {

        flex-direction: column;
    }

    .propaganda .textoPropaganda h1 {

        font-size: 35px;
        margin-top: 10px;
    }

    .propaganda .textoPropaganda h2 {

        margin-top: 30px;
    }

    .propaganda .textoPropaganda p {

        margin-top: 10px;
        font-size: 18px;
    }

    .localizacao {

        flex-direction: column;
        padding: 25px;
    }

    .minimapa {

        width: 300px;
        height: 300px;
    }

    .logoEtika2 {

        width: 130px;
        height: 100px;
    }

    footer .gambiarra {

        text-decoration: underline;
        color: #ffffff;
    }

    .informacoes{

        margin-left: 15px;
    }

    footer .informacoes,
    .informacoes2 {

        display: flex;
        flex-direction: column;
        color: #ffffff;
        margin-right: 20px;
    }

    .informacoes h1, .informacoes2 h1{

        font-size: 22px;
    }

    .menu3{

        display: flex;
    }

}