@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@601&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Caveat:wght@601&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    max-width: 1920px;
    min-width: 280px;
    margin: auto;
    color: rgba(0, 0, 0, 0.656);
    font-family: Helvetica;
}

i {
    width: 30px;
    height: 30px;
    font-size: 30px;
}

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: 600px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    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-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: 780px) {
    header {
        height: 65px;
    }

    .header_logo_link>img {
        height: 55px;
        width: 70px;
    }

    header>ul {
        display: none;
    }

    .header-right-buttons {
        display: flex;
    }

    section {
        margin-bottom: -100px;
    }

    .section-text-container {
        width: 100%;

        padding: 0px 50px;
        justify-content: center;
    }

    .section-text-container>p {
        font-size: 30px;
    }

    .slide-images {
        height: 300px;
    }

    .section-text-container>h1 {
        font-size: calc(40px + 1vw);
    }

    .section-text-container>h2 {
        font-size: calc(15px + 1vw);
        letter-spacing: 0.5px;
    }
}

@media screen and (min-width: 780px) {
    .mobile-menu {
        display: none;
    }
}

@media screen and (max-width: 880px) {
    header {
        justify-content: space-between;
        padding: 0px 5px;
    }
}

@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 {
    background-image: url(./poa2.jpg);
    background-size: cover;
    background-position: bottom;
    background-color: rgba(0, 0, 0, 0.336);
    background-blend-mode: darken;
    height: 650px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-bottom: -100px;
}

.section-text-container {
    top: 40px;
    position: relative;
    width: 800px;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    font-family: Helvetica;
    text-align: center;
}

.section-h1 {
    font-size: 62px;
    color: transparent;
    position: relative;
    left: 3px;
    top: -360px;
    letter-spacing: 4PX;
    font-family: 'Anton', sans-serif;
}

.section-h1-on {
    color: rgba(0, 0, 0, 0.918);
    transition: 1s;

}

.section-p {
    font-size: 30px;
    color: transparent;
    font-family: 'Caveat', cursive;
    font-size: 55px;
    letter-spacing: 1px;
    position: relative;
    top: -250px;
    font-weight: bold;
    transition: 1s;
}

.section-p-on {
    color: white;
    text-shadow: 2px 2px black;

    transition: 1s;
    font-size: 40px;
}

.r,
.y,
.b,
.g {
    display: flex;
    position: relative;
    top: 120px;
}

.r-on {
    top: -260px;
    transition: 2s;
}

.y-on {
    top: -230px;
    transition: 2s;
}

.b-on {
    top: -230px;
    transition: 2s;
}

.g-on {
    top: -250px;
    transition: 2s;
}

.r-float {
    top: -268px;
    transition: 2s;
}

.y-float {
    top: -220px;
    transition: 3s;
}

.b-float {
    top: -225px;
    transition: 2s;
}

.g-float {
    top: -240px;
    transition: 2s;
}

.r::after {
    content: '';
    display: block;
    height: 190px;
    width: 50px;
    border-radius: 35px;
    background-color: #f81b26d5;
}

.y::after {
    content: '';
    display: block;
    height: 260px;
    width: 50px;
    border-radius: 35px;
    background-color: #f9b71ce0;
}

.b::after {
    content: '';
    display: block;
    height: 270px;
    width: 50px;
    border-radius: 35px;
    position: relative;
    top: -10px;
    background-color: #058ed2dc;
}

.g::after {
    content: '';
    display: block;
    height: 220px;
    width: 50px;
    border-radius: 35px;
    background-color: #009f50da;
}

.bg-img-container {
    width: 1200px;
    position: relative;
    float: left;
    background-color: rgba(0, 0, 0, 0.514);
    transition: 0.5s;
}

@media screen and (max-width: 450px) {
    .section-text-container>h1 {
        font-size: calc(30px + 1vw);
    }

    .section-text-container>h2 {
        font-size: calc(13px + 1vw);
        letter-spacing: 0.5px;
    }
}

@media screen and (max-width: 320px) {
    .section-text-container>h1 {
        font-size: calc(25px + 1vw);
    }

    .section-text-container>h2 {
        font-size: calc(13px + 1vw);
        letter-spacing: 0.5px;
    }
}

@media screen and (max-width: 590px) {
    section {
        height: 500px;
    }

    .section-text-container {
        top: 20px;
    }

    .r-on {
        top: -260px;
        transition: 2s;
    }

    .y-on {
        top: -230px;
        transition: 2s;
    }

    .b-on {
        top: -230px;
        transition: 2s;
    }

    .g-on {
        top: -250px;
        transition: 2s;
    }

    .r-float {
        top: -268px;
        transition: 2s;
    }

    .y-float {
        top: -220px;
        transition: 3s;
    }

    .b-float {
        top: -225px;
        transition: 2s;
    }

    .g-float {
        top: -240px;
        transition: 2s;
    }


    .r::after {
        content: '';
        display: block;
        height: 120px;
        width: 40px;
        border-radius: 35px;
        background-color: #f81b26;
    }

    .y::after {
        content: '';
        display: block;
        height: 170px;
        width: 40px;
        border-radius: 35px;
        background-color: #F9B81C;
    }

    .b::after {
        content: '';
        display: block;
        height: 180px;
        width: 40px;
        border-radius: 35px;
        position: relative;
        top: -10px;
        background-color: #058ED2;
    }

    .g::after {
        content: '';
        display: block;
        height: 140px;
        width: 40px;
        border-radius: 35px;
        background-color: #009F4F;
    }

    .section-h1 {
        top: -320px;
        font-size: 40px;
    }

    .section-p {
        font-size: 30px;
    }
}




/* ========= MAIN ======== */
main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    background-color: #e1e1e1;
    background-size: cover;
    background-position-y: 70%;
    padding: 0px;
    padding-bottom: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.223);
    position: relative;
    top: -140px;
    margin-bottom: -140px;
}

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;
    transition: 0.4s
}

.card {
    width: 350px;
    height: 430px;
    background: white;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.079);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    gap: 10px;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.223);
    padding: 15px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: rgba(0, 0, 0, 0.753);
    transition: 0.4s;
}

.card:hover {
    background-color: #d4d4d4;
    cursor: pointer;
}

.card-text-content {
    width: 100%;
}

.card-text-content>img {
    width: 100%;
    height: 180px;
    border: 1px solid rgba(0, 0, 0, 0.354);
    margin-bottom: 5px;
}

.card-text-content>h2 {
    margin-bottom: 5px;
}

.description {
    display: flex;
    align-items: center;
    gap: 3px;
}

.description>img {
    width: 25px;
    height: 25px;
}

.card h2 {
    color: rgba(0, 0, 0, 0.676);
    font-size: 20px;
}

.card-saiba-mais {
    background: rgb(3, 136, 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;
}

@media screen and (max-width: 450px) {
    main>h1 {
        font-size: calc(17px + 1vw);
    }
}

@media screen and (max-width: 320px) {
    main>h1 {
        font-size: calc(13px + 1vw);
    }
}

@media screen and (max-width: 900px) {
    main>h1 {
        font-size: calc(17px + 1vw);
    }

    .container-cards {
        width: 770px;
        gap: 15px;
    }

    .card {
        width: 240px;
        height: 280px;
        gap: 5px;
        padding: 10px;
    }

    .card-text-content>img {
        height: 100px;
    }

    .card-text-content>h2 {
        font-size: 15px;
    }

    .description {}

    .description>img {
        width: 15px;
        height: 15px;
    }

    .description>p {
        font-size: 13px;
        letter-spacing: 0px;
    }


    .card>button {
        width: 100%;
        font-size: 13px;
    }
}

@media screen and (max-width: 590px) {
    main {
        gap: 20px;
    }
}

@media screen and (max-width: 770px) {
    .container-cards {
        width: 100%;
        align-items: initial;
    }
}

@media screen and (max-width: 590px) {

    .container-cards {
        width: 100%;
        align-items: initial;
    }

    .card {
        border-radius: 5px;
        width: 150px;
        height: 185px;
        gap: 2px;
        padding: 5px;
    }

    .card-text-content>img {
        height: 70px;
        margin-bottom: 0px;

    }

    .card-text-content>h2 {
        font-size: 10px;
        margin-bottom: 0px;
    }

    .description>img {
        width: 10px;
        height: 10px;
        letter-spacing: 0.4px;
    }

    .description>p {
        font-size: 7px;
    }

    .card-saiba-mais {
        width: 100%;
        font-size: 1.5px;
    }
}

@media screen and (max-width: 355px) {
    main {
        padding-bottom: 20px;
    }

    main>h1 {
        font-size: calc(14px + 1vw);
        margin-top: 20px;
    }

    .container-cards {
        width: 100%;
        gap: 5px;
    }

    .card {
        width: 140px;
        height: 170px;
        gap: 0px;

    }

    .card>h2 {
        font-size: 10px;
    }

    .card>p {
        font-size: 8px;
    }

    .card>p::before {
        width: 5px;
        height: 5px;
    }

    .card>button {
        /*   width: 60px; */
        padding: 3px;
        border-radius: 2px;
        font-size: 7px;
        margin-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;
    }
}




/* ===== WPP FIXED BTN ====== */
.wpp-container {
    display: flex;
    justify-content: center;
    position: relative;
    top: 87%;
    right: 40px;
    position: fixed;
    text-decoration: none;
    background-color: #f0f0f0;
    background: rgb(3, 152, 3);
    height: 50px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.276);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.218);
}

.wpp-container:hover {
    cursor: pointer;
    background: rgb(4, 136, 4);
}

.wpp-img {
    width: 35px;
}

.wpp-container>h3 {
    border-radius: 10px;
    border: none;
    font-size: 18px;
    color: white;
    cursor: pointer;
    letter-spacing: 0.6px;
    padding: 0px 5px;
    background: none;
    font-family: Helvetica;
}

.wpp-container:hover>h3 {
    color: rgb(218, 218, 218);
}

.wpp-container:hover .wpp-container>h3 {
    color: rgb(54, 174, 54);
}

@media screen and (max-width: 1200px) {
    .wpp-container {
        top: 60%;
    }

    .wpp-container>h3 {
        display: none;
    }
}
/* Min */
@media screen and (min-width: 1200px) {
    .wpp-container {
        top: 87%;
    }

    .wpp-container>h3 {
        display: flex;
    }
}

@media screen and (max-width: 500px) {
    .wpp-container{
        right: 10px;
    }
}