@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible+Next:ital,wght@0,200..800;1,200..800&family=Outfit:wght@100..900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

html {
    font-size:  62.5%; /* 62.5% de 16px = 10px */
}

body {
    min-height: 100vh;
    font-size: 1.8rem;
    font-family: "Outfit", sans-serif;
    display: flex;
    flex-direction: column;
}

.sepHeaderMain {
    width: 100%;
    position: fixed;
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* CTNtop-A001 */

.headerTop {
    display: none;
    z-index: 100;
}

/* FIM CTNtop-A001 */

/* HDR-A001 */

header {
    height: auto;
    width: 100%;
    padding: 1.5rem;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

    .headerContent {
        width: 100%;
        padding: 0;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

        .logoEmpresaHeader {
            height: 3rem;
        }

        .linksAreaHeader {
            display: none;;
        }
    
            .listaLinksHeader {
                list-style: none;
                display: flex;
                flex-direction: row;
                gap: 5rem;
            }

                .itemListaLinksHeader > a {
                    color: #404040;
                    text-decoration: none;
                }

                    .itemListaLinksHeader > a:hover {
                        color: #A8A8A8;
                        text-decoration: none;
                    }

        .btnHeader {
            color: #FFFFFF;
            padding: 1.2rem 2.5rem;
            text-decoration: none;
            background: #006BE7;
            display: none;
        }

            .btnHeader:hover {
                background-color: #A8A8A8;
                transition: .25s;
            }

        #btn2Header {
            background: none;
            border: none;
            padding: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #006BE7;
        }

            .menuIconBtn2Header {
                color: #FFFFFF;
                font-size: 1.6rem;
            }

    .overlayMenuHeader {
        margin-top: -2px;
        min-height: 100vh;
        background-color: #006BE7;
        z-index: 9998;
        display: none;
    }

        .overlayMenuHeaderContent {
            height: 100%;
            padding: 1.5rem;
        }

            .linksAreaOverlay {
                display: flex;
                flex-direction: column;
            }

                .listaLinksOverlay {
                    width: 100%;
                    display: flex;
                    flex-direction: column;
                    list-style: none;
                }

                    .itemListaLinksOverlay > a {
                        color: #FFFFFF;
                        display: block;
                        text-decoration: none;
                        text-align: center;
                        padding: 2rem;
                    }

                        .itemListaLinksOverlay > a:hover {
                            color: #EEEEEE;
                        }

                .btnOverlay {
                    margin-top: 4rem;
                    color: #006BE7;
                    padding: 1.2rem 2.5rem;
                    text-decoration: none;
                    background: #FFFFFF;
                    display: block;
                    text-align: center;
                }

                    .btnOverlay:hover {
                        background: #EEEEEE;
                        transition: .2s;
                    }

/* FIM HDR-A001 */

/* HSC-A001 */

.heroSection {
    height: auto;
    padding: 8rem 1.5rem 14rem;
    display: flex;
    flex-direction: column;
    position: relative;
    background: url("https://i.ibb.co/6cLrV92v/Mask-group.webp") no-repeat center/cover;
    overflow: hidden;
    align-items: center;
}

    .heroSection::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #006ce7d5;
  }


    .heroSectionContent {
        width: 100%;
        padding: 0;
        z-index: 1;
        display: flex;
        flex-direction: column;
        justify-content: start;
    }

        .hrsAreaEsq {
            width: 90%;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            gap: 2rem;
        }

            .h1HeroSection {
                color: #FFFFFF;
                font-size: 3.2rem;
                line-height: 3.5rem;
            }

            .descHeroSection {
                color: #FFFFFF;
            }

            #btnHeroSection {
                color: #006ce7;
                background: #FFFFFF;
                text-decoration: none;
                padding: 1rem 3rem;
                align-self: self-start;
            }

                #btnHeroSection:hover {
                    background-color: #A8A8A8;
                    transition: .25s;
                    color: #FFFFFF;
                }

/* FIM HSC-A001 */

/* SBR-A001 */

.aboutSection {
    width: 100%;
    padding: 8rem 1.5rem;
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;
    align-items: center;
}

    .aboutSectionContent {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 5rem;
    }

        .esqAreaAboutSection {
            height: auto;
            width: 100%;
        }

            .infosEsqAboutSection {
                display: flex;
                flex-direction: column;
                gap: 1.8rem;
            }

                .pInfoEsqAboutSection {
                    text-align: justify;
                    word-spacing: -0.06em;
                    hyphens: auto;
                }

                .btn-EsqAboutSection {
                    text-decoration: none;
                    align-self: self-start;
                    padding: 1rem 2rem;
                    background: #006BE7;
                    color: #FFFFFF;
                }
                
            .dirAreaAboutSection {
                display: flex;
                flex-direction: column;
            }

                .dirAreaAboutSection > video {
                    width: 100%;
                    height: fit-content;
                }

/* FIM SBR-A001 */

@media screen and (min-width: 768px) {

/* CTNtop-A001 */

.headerTop {
    width: 100%;
    background-color: #006BE7;
    display: flex;
    justify-content: center;
    padding: .5rem 3rem;
}

    .headerTopContent {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

        .areaContatosTopEsq {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 4rem;
        }

            .itemContatosTopEsq  {
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: center;
                gap: .7rem;
                text-decoration: none;
            }

                .iconeContatoTopEsq {
                    color: #FFFFFF;
                    font-size: 1.6rem;
                }

                .pItem {
                    font-size: 1.6rem;
                    color: #FFFFFF;
                }

        .areaRedesSociaisDir {
            font-size: 1.6rem;
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: .7rem;
        }

            .iconeContatoTopDir {
                color: #FFFFFF;
            }

/* FIM CTNtop-A001 */

/* HDR-A001 */

header {
    padding: 1.5rem 3rem; /* CB-ED */
}

    .btnOverlay {
        align-self: center;
        padding: 1.2rem 6rem;
    }

/* FIM HDR-A001 */

/* HSC-A001 */

.heroSection {
    padding: 8rem 3rem;
}

    .hrsAreaEsq {
        width: 60%;
    }

/* FIM HSC-A001 */

/* SBR-A001 */

.aboutSection {
    padding: 8rem 3rem;
}

    .aboutSectionContent {
        flex-direction: row;
        align-items: flex-start;
    }

        .esqAreaAboutSection {
            width: 50%;
            flex: 1;
        }

        .dirAreaAboutSection {
            flex: 1;
        }

/* FIM SBR-A001 */

}

@media screen and (min-width: 1024px) {

/* CTNtop-A001 */

.headerTop {
    padding: .5rem 0;
}

.headerTopContent {
    width: 1120px;
}

/* FIM CTNtop-A001 */

/* HDR-A001 */

header {
    padding: 1.5rem 0; /* CB-ED */
}

    .headerContent {
        width: 1120px;
    }

        .linksAreaHeader {
            display: block;
        }

        .btnHeader {
            display: block;
        }

        #btn2Header {
            display: none;
        }

.overlayMenuHeader {
    display: none;
}

/* FIM HDR-A001 */

/* HSC-A001 */

.heroSection {
    height: 80vh;
    justify-content: center;
}

    .heroSectionContent {
        width: 1120px;
    }

        .hrsAreaEsq {
            width: 50%;
        }

            .h1HeroSection {
                font-size: 4.5rem;
                line-height: 4.8rem;
            }

/* FIM HSC-A001 */

}

@media screen and (min-width: 1440px) {

/* CTNtop-A001 */

.headerTopContent {
    width: 1290px;
}

/* FIM CTNtop-A001 */

/* HDR-A001 */

.headerContent {
    width: 1290px;
}

/* FIM HDR-A001 */

/* HSC-A001 */

.heroSectionContent {
    width: 1290px;
}

/* FIM HSC-A001 */

/* SBR-A001 */

.aboutSectionContent {
    width: 1290px;
}

/* FIM SBR-A001 */

}
