* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    max-width: 1920px;
    min-width: 280px;
    margin: auto;
    font-family: Helvetica;
    color: rgba(0, 0, 0, 0.656);
}

header {
    display: flex;
    width: 100%;
    height: 110px;
    flex-direction: row;
    gap: 50px;
    background-color: white;
    align-items: center;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.056);
    top: 0px;
    padding-left: 100px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.223);
    position: relative;


}

.header_logo_link > img {
    height: 90px;
    width: 110px;
}


.header-right-buttons {
    height: 100%;
    width: 800px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    position: absolute;
    right: 0px;
}

ul {
    display: flex;
    gap: 30px;
    list-style: none;
    position: relative;
    padding-right: 35px;

}

li {
    font-size: 16px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    letter-spacing: 1px;
}
li>a {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.753);
}

li>a:hover {
    cursor: pointer;
    color: rgba(0, 0, 0, 0.44);
    transition: 0.5s;
}
.header_option_disabled{
    color: rgba(0, 0, 0, 0.22);
}

.header-right-buttons a>svg {
    width: 24px;
    height: 24px;
}

.header_svg_linkedin {
    transition: 0.5s;
    color: #0961b8;
}

.header_svg_linkedin:hover {
    fill: gray;
    cursor: pointer;
    transition: 0.5s;
}

.header_svg_wpp {
    transition: 0.5s;
    color: green;
}

.header_svg_wpp:hover {
    transition: 0.5s;
    color: black;
}

.header_svg_telegram {
    transition: 0.5s;
    color: #2599ef;
}

.header_svg_telegram:hover {
    transition: 0.5s;
    color: gray;
}

.header_svg_instagram {
    transition: 0.5s;
    color: rgb(245, 8, 237);
}

.header_svg_instagram:hover {
    transition: 0.5s;
    color: gray;
}

.header_svg_face {
    transition: 0.5s;
    color: rgb(50, 50, 228);
}

.header_svg_face:hover {
    transition: 0.5s;
    color: gray;
}

.hamburguer-container {
    width: 35px;
    height: 30px;
    display: none;
}

.hamburguer-container:hover {
    cursor: pointer;

}

.hamburguer {
    content: '';
    display: block;
    background: rgba(0, 0, 0, 0.656);
    height: 5px;
    width: 100%;
    position: relative;
    top: 50%;
    transform: translate(0%, -50%);

}

.hamburguer::before {
    content: '';
    display: block;
    background-color: rgba(0, 0, 0, 0.656);
    height: 5px;
    width: 100%;
    position: relative;
    bottom: 10px;
}

.hamburguer::after {
    content: '';
    display: block;
    background-color: rgba(0, 0, 0, 0.656);
    height: 5px;
    width: 100%;
    position: relative;
    top: 5px;
}

.hamburguer-to-close {
    background-color: rgba(0, 0, 0, 0.656);
    height: 5px;
    width: 50px;
    position: relative;
    display: block;
    background-color: transparent;

}

.hamburguer-to-close::before {
    content: '';
    display: block;
    background-color: rgba(0, 0, 0, 0.656);
    ;
    width: 30px;
    transform: rotate(-40deg);
    position: relative;
    top: 0px;
}

.hamburguer-to-close::after {
    content: '';
    display: block;
    background-color: rgba(0, 0, 0, 0.656);
    width: 30px;
    transform: rotate(40deg);
    position: relative;
    top: -5px;
}

.mobile-menu {
    height: 200px;
    max-width: 1920px;
    width: 100%;
    position: relative;
    text-align: center;
    display: none;
    transition: 0.7s;
    position: relative;
}

.mobile-menu-active {
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.7s;
    background-color: #F5F5F5;
}

.mobile-menu-item {
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-weight: bold;
    cursor: pointer;
}

.mobile-menu-item>a {
    width: 100%;
    display: block;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.656);
}

.mobile-menu-item:hover {
    background: rgba(128, 128, 128, 0.596);
}

/*===Header====*/
@media screen and (max-width: 1125px) {
    header {
        justify-content: space-between;
        padding: 0px 5px;
    }
}
@media screen and (max-width: 930px) {
    header {
        height: 65px;
    }

    .header_logo_link>img {
        height: 55px;
        width: 70px;
    }

    .header-right-buttons {
        display: flex;
        gap: 20px;
    }
    .header-right-buttons{
        width: 600px;
    }

    header>ul {
        display: none;
    }

    .header_ul{
        gap: 15px;
        padding: 0px;
    }
    .header-right-buttons > a{

    }


}

@media screen and (min-width: 780px) {
    .mobile-menu {
        display: none;
    }
}
@media screen and (max-width: 710px) {
    .header-right-buttons {
        display: none;
    }

    .hamburguer-container {
        display: block;
        position: relative;
        right: 20px;
    }


}

@media screen and (min-width: 710px) {
    .mobile-menu-active {
        display: none;
    }
}




/* ========= SECTION ============== */
section {
    width: 100%;
    background-color: #F5F5F5;
    padding: 20px 0px;
    background-image: url(./poa1.jpg);
}

.section-container {
    display: flex;
    margin: auto;
    width: 1100px;
    border-radius: 10px;
    gap: 20px;
}

.section-left {
    width: 360px;
    background-color: rgba(255, 255, 255, 0.302);
    backdrop-filter: blur(10px);
}

.section-left>h4 {
    padding: 15px;
    letter-spacing: 0.5px;
    color: rgba(0, 0, 0, 0.824);
    font-size: 19px;
}

.section-left>ul {
    display: flex;
    flex-direction: column;
    gap: 0px;
    border-top: 1px solid rgba(0, 0, 0, 0.223);

}

.section-left>ul>li {
    font-size: 18px;
    line-height: 40px;
    width: 100%;
    list-style: none;
    padding: 0px 15px;
    border-bottom: 1px solid rgba(128, 128, 128, 0.596);
    ;
    font-weight: bold;
}

.section-left>ul>li:hover {
    cursor: pointer;
    border-right: 3px solid GREEN;
    background-color: white;
}

.section-right {
    width: 700px;
    display: flex;
    flex-direction: column;
    padding: 25px;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.302);
    backdrop-filter: blur(10px);

}

#h1-content {
    font-size: 30px;
    color: rgba(0, 0, 0, 0.824);
}

#h3-feature-4 {}

.section-right-options {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    border-radius: 5px;
}

.section-right-options>h3 {
    color: rgba(0, 0, 0, 0.658);
    display: flex;
    align-items: center;
    gap: 10px;

}

.option-container {
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.option-container>img {
    width: 26px;
    height: 26px;
}




.section-right-options>h3::before {
    content: '';
    width: 20px;
    height: 20px;
    background-size: cover;
    background-image: url(../img/green.png);

}

.contato-btn {
    width: 240px;
    height: 50px;
    border: none;
    border-radius: 5px;
    background-color: green;
    color: white;
    font-size: 18px;
    letter-spacing: 0.5PX;
    margin: auto;
    position: relative;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.479);
    text-decoration: none;
    line-height: 50px;
    text-align: center;
    transform: 0.5s;
}

.contato-btn-js {
    top: 1.7px;
    cursor: pointer;
    background-color: green;
    transform: 0.5s;
}

.section-right>a:hover {
    top: 2px;
    cursor: pointer;
    background-color: rgb(47, 136, 47);
}

@media screen and (max-width:1130px) {
    .section-container {
        width: 800px;
    }

    .section-left {
        width: 370px;
    }

    .section-left>h4 {
        text-align: center;
        font-size: 0px 15px;
        padding: 5px 0px;
        line-height: 40px;
    }

    .section-right-options>* {
        font-size: 17px;
    }

    .option-container>h3 {
        line-height: 19px;
    }
}


@media screen and (max-width: 830px) {
    section {
        padding: 20px 0px;

    }

    .section-container {
        width: 500px;
        flex-direction: column;
    }

    .section-left,
    .section-right {
        width: 100%;
    }

    .section-left>h1 {
        padding: 20px 10px;
        text-align: center;
        font-size: 23px;
    }

    .section-left>ul {
        flex-direction: initial;
        flex-wrap: wrap;
        justify-content: center;
        padding: 10px;

        border-top: none;

    }

    .section-left>ul>li {
        padding: 10px;
        width: 230px;
        height: 60px;
        border: 1px solid rgba(0, 0, 0, 0.223);
        line-height: 20px;
        text-align: center;
        font-size: 17px;
        color: rgba(0, 0, 0, 0.824);
        background-color: rgba(128, 128, 128, 0.253);
    }

    .section-left>ul>li:hover {
        background-color: rgba(128, 128, 128, 0.514);
        border-right: none;
    }
}
@media screen and (max-width: 780px){
    section{
        height: 830px;
    }
}

@media screen and (max-width: 520px) {
    section {
        background: #d6d6d6;
        height: 760px;
    }

    .section-container {
        width: 95%;
        gap: 0px;
    }

    .section-left>ul {
        width: 100%;
        justify-content: center;
    }

    .section-left>ul>li {
        width: 39%;
        line-height: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 15px;
    }

    .section-right {
        padding: 5px;
        padding-top: 20px;
    }

    .option-container>h3 {
        font-size: 16px;

    }

    .section-right-options {
        padding: 0px;
    }
}

@media screen and (max-width: 415px) {
    section{
        height: 720px;
    }
    .section-left>h1 {
        font-size: calc(17px + 1vw);
    }
    .section-left>ul {
        width: 320px;
        margin: auto;
    }
    .section-left>ul>li {
        font-size: 15px;
        height: 50px;
        width: 150px;
        padding: 5px;
    }

    #h1-content {
        font-size: calc(20px + 1vw);
    }
}

@media screen and (max-width: 340px) {
    section{
        height: 680px; 
    }
    .section-left>h4 {
        font-size: 15px
    }
    .section-left>ul {
        padding: 0px;
        width: 300px;
    }
    .section-left>ul>li {
        font-size: 13px;
        line-height: 15px;
        height: 40px;
        width: 140px;
        padding: 0px;
    }
}



/* ========= MAIN ========= */
main {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    background-color: #F5F5F5;
    background-size: cover;
    background-position-y: 70%;
    padding: 0px 0px;
    padding-bottom: 30px;
    position: relative;

}

main>h1 {
    margin: auto;
    font-size: 35px;
    margin-top: 40px;
    color: rgba(0, 0, 0, 0.773);
}

.container-cards {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    position: relative;
    left: 0px;
}

.card {
    width: 270px;
    background: white;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.079);
    border-radius: 5px;
    padding: 10px;
    display: flex;
    gap: 10px;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.223);
    padding: 15px;
}

.card:hover {
    background-color: #e1e1e1;
    cursor: pointer;
}

.card>img {
    width: 100%;
    height: 140px;
    border: 1px solid rgba(0, 0, 0, 0.354);
    margin-bottom: 5px;
}

.card>p {
    display: flex;
    gap: 5px;
    align-items: center;
}

.card>p::before {
    content: '';
    display: block;
    background-color: green;
    width: 8px;
    height: 8px;
    border-radius: 100%;
}

.card h2 {
    color: rgba(0, 0, 0, 0.676);
    font-size: 20px;
}

.card-saiba-mais {
    background-color: rgb(3, 152, 3);
    color: white;
    width: 130px;
    padding: 5px 0px;
    border-radius: 5px;
    text-align: center;
    border: none;
    font-size: 17px;
    letter-spacing: 0.9px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.545);
    position: relative;
}

.card-saiba-mais:hover {
    cursor: pointer;
    top: 2px;
}





/* ======== FOOTER ===== */
footer {
    background: white;
    height: 170px;
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.223);
    position: relative;
    display: flex;
    justify-content: center;
    gap: 50px;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 450;
}

.footer-logo-container img {
    width: 110px;
    height: 90px;

}

.footer-logo-container-text {
    display: flex;
    flex-direction: column;
    position: relative;
    left: -30px;
}

.footer-logo-container h1 {
    color: black;
}

.footer_links_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 300px;
    gap: 6px;
}

.footer-email,
.footer-tel-cel,
.footer-tel-fix {
    font-size: 17px;
    letter-spacing: 0.5px;
    display: flex;
    gap: 7px;
    align-items: center;
    transition: 0.5s;
}

.internet_svg {
    color: black;
    width: 17px;
}

.telephone_svg {
    color: black;

}

.redes-container {
    position: relative;
    top: 5px;
    display: flex;
    gap: 23px;
    margin-top: 5px;
}

.redes-container>a>svg {
    width: 22px;
    height: 22px;

}

.footer_svg_linkedin {
    transition: 0.5s;
    color: #0961b8;
}

.footer_svg_linkedin:hover {
    fill: gray;
    cursor: pointer;
    transition: 0.5s;
}

.footer_svg_wpp {
    transition: 0.5s;
    color: green;
}

.footer_svg_wpp:hover {
    transition: 0.5s;
    color: black;
}

.footer_svg_telegram {
    transition: 0.5s;
    color: #2599ef;
}

.footer_svg_telegram:hover {
    transition: 0.5s;
    color: gray;
}

.footer_svg_instagram {
    transition: 0.5s;
    color: rgb(245, 8, 237);
}

.footer_svg_instagram:hover {
    transition: 0.5s;
    color: gray;
}

.footer_svg_face {
    transition: 0.5s;
    color: rgb(50, 50, 228);
}

.footer_svg_face:hover {
    transition: 0.5s;
    color: gray;
}

/* Footer */
@media screen and (max-width: 750px) {
    footer {
        padding-top: 10px;
        flex-direction: column;
        align-items: center;
        justify-content:flex-start;
        gap: 10px;
        height: 230px;
    }

    .footer-logo-container {
        display: flex;
        gap: 20px;
        width: 100%;
        position: relative;
    }

    .footer-logo-container>img {
        height: 60px;
        width: 70px;
    }

    .footer-logo-container-text>h1 {
        font-size: 17px;
    }

    .footer-logo-container-text>p {
        font-size: 12px;
    }

    .footer_links_container {
        width: 100%;
        width: 230px;
    }

    .footer_links_container>* {
        gap: 10px;
        font-size: 13px;
    }
}