body {
    background-color: #00111C;
}

/* Barra de Rolagem */

::-webkit-scrollbar {
    width: 10px;

}

::-webkit-scrollbar-track {
    background: #002742;

}

::-webkit-scrollbar-thumb {
    background: #00111C;
    border-radius: 12px;
    box-shadow: 0px 4px 31px 4px rgba(0, 0, 0, 0.7);

}

::-webkit-scrollbar-thumb:hover {
    background: #000c14;

}



/* Header */

header {
    height: 80px;
    background-color: #00111C;
    box-shadow: 0px 4px 31px 4px rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;

    padding: 0 2%;
    position: relative;
    z-index: 1;



    & nav {
        display: flex;
        width: 100%;
        height: 100%;
        max-width: 1728px;

        justify-content: space-between;
        align-items: center;
        flex-direction: row;
    }
}


.logoContainer {
    height: 100%;
    display: flex;
    align-items: center;
}

.logoImg {
    max-height: 65%;
    margin-right: 10px;
}

.logoTitle {
    font-family: "Inter", sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: white;
}

.logoSubtitle {
    font-family: "Inter", sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    color: #969696;
}

.contact-btn {
    background-color: #007CF8;

    border-radius: 13px;
    border: none;
    box-shadow: 0px 4px 20px 0px rgba(2, 70, 139, 1);

    width: 17%;
    height: 55%;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;


    & a {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;

        & span {
            font-family: "Inter", sans-serif;
            font-size: 1rem;
            font-weight: 700;
            color: #ffffff;
            margin-left: 4%;

        }

        & img {
            height: 70%;
        }

    }


    &:hover {
        background-color: #17A589;
        transform: scale(1.1);
        box-shadow: 0px 4px 20px 0px rgba(23, 165, 137, 0.5);
    }
}



/* Introduction Section */


.introductionSection {
    width: 100%;
    height: auto;
    background-image: url('../images/background.png');
    background-repeat: inherit;
    background-size: cover;
    background-position: center;
    position: relative;

    display: flex;
    justify-content: center;

}

.introductionSectionContainer {
    width: 100%;
    max-width: 1728px;
    padding: 0 3%;
}



.introductionSectionTextContainer {
    width: 85%;
    height: 100%;
    padding: 70px 0;

    & h1 {
        font-family: "Inter", sans-serif;
        font-size: 3.2rem;
        line-height: 1.25;
        font-weight: 900;
        color: white;
        margin-bottom: 20px;
    }

    & p {
        font-family: "Inter", sans-serif;
        font-size: 1.3rem;
        line-height: 1.75rem;
        font-weight: 300;
        color: #eeeeee;
        margin-bottom: 20px;
        width: 70%;
    }

    & button {
        width: 30%;
        height: 40px;
        margin: 50px 0;
        box-shadow: 0px 4px 100px 0px rgba(0, 0, 0, 0.5);
    }

}


/* Porques Section */

.porquesSection {
    background-color: #001E32;
    padding: 120px 3%;

    display: flex;
    justify-content: center;


}

.porquesSectionContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1728px;

    & h2 {
        font-family: "Inter", sans-serif;
        font-size: 2.5rem;
        font-weight: 900;
        color: white;
        margin-bottom: 20px;
        text-align: center;
    }

    & button {
        width: 50%;
        max-width: 500px;
        height: 40px;
        margin: 50px 0;
        box-shadow: 0px 4px 100px 0px rgba(0, 0, 0, 0.5);

        & a {

            & img {
                height: 70%;
            }

            & span {
                font-size: 1.2rem;
            }

        }
    }

}

.cardsContainer {
    margin-top: 70px;
    display: flex;
    flex-wrap: wrap;

    justify-content: center;

    gap: 10px 20px;

}

.card {
    width: 25%;
    padding: 0 2.5em 30px;

    & span {
        font-family: 'Kanit', sans-serif;
        font-size: 5rem;
        font-weight: 600;
        color: #009AFF;
    }

    & h3 {
        font-family: "Inter", sans-serif;
        font-size: 1.7rem;
        line-height: 1.25;
        font-weight: 700;
        color: white;
        margin: 10px 0;
    }

    & p {
        font-family: "Inter", sans-serif;
        font-size: 1rem;
        font-weight: 300;
        color: #e6e6e6;
        line-height: 1.50;
        margin-bottom: 30px;
    }
}

footer {
    padding: 70px 0;
    display: flex;
    justify-content: center;

    height: 300px;
    background-color: #00111C;
}

.footerContent {
    width: 100%;
    max-width: 1728px;
    display: flex;
    flex-direction: column;


    & .mainContent {
        display: flex;
    }

    & .copyrightContainer {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;

        margin-top: 100px;

        & span {
            font-family: 'Inter', sans-serif;
            margin-bottom: 5px;
            font-size: 0.9rem;
            font-weight: 200;
            color: rgb(192, 192, 192);

            & a {
                text-decoration: none;
                color: rgb(192, 192, 192);
                font-weight: 300;
            }
        }
    }
}

.contactsContainer {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;

    & .contactsTitleContainer {
        margin-bottom: 30px;

        & h4 {
            font-family: "Inter", sans-serif;
            font-size: 2rem;
            font-weight: 900;
            color: white;
            margin: 10px 0;
            text-align: center;
        }
    }

    & .contactsList {
        display: flex;
        flex-wrap: wrap;
        width: 25rem;

        & a {

            text-decoration: none;
            display: flex;
            align-items: center;
            width: 50%;
            justify-content: baseline;
            margin-bottom: 15px;

            & span {

                font-family: 'Kanit', sans-serif;
                font-size: 0.9rem;
                font-weight: 400;
                color: white;
                margin-left: 0.5rem;
            }

            & img {
                width: 2rem;
            }
        }
    }
}

.logoFooterContainer {
    width: 50%;
    display: flex;
    justify-content: center;
}

.verticalLine {
    width: 1px;
    height: 100%;
    background-color: white;
}

.footerLogo {
    height: 5rem;
    margin-right: 10px;
}

.logoTextsContainer {
    & .logoTitle {
        font-size: 2rem;
    }

    & .logoSubtitle {
        text-align: center;
    }
}



/* Media Queries */






@media (max-width: 480px) {

    header nav {

        justify-content: center;

        & .contact-btn {
            display: none;
        }

        & .logoImg {
            height: 50%;
        }

        & .logoTitle {
            font-size: 1.7rem;
        }

    }

    .introductionSectionContainer {
        padding: 0 2.5rem;
    }

    .introductionSectionTextContainer {
        display: flex;
        flex-direction: column;
        width: 100%;


        & h1 {
            font-size: 2.25rem;
        }

        & p {
            font-weight: 300;
            font-size: 1.125rem;
            width: 100%
        }

        & .contact-btn {
            width: 90%;
            align-self: center;
            box-shadow: 0px 4px 20px 0px rgba(2, 70, 139, 1);
            margin-bottom: 0;

        }

    }

    .porquesSectionContainer {
        & h2 {
            font-size: 1.87rem;
            line-height: 1.25;
        }

        & .contact-btn {
            width: 90%;
            align-self: center;
            box-shadow: 0px 4px 20px 0px rgba(2, 70, 139, 1);
            margin-bottom: 0;

        }
    }

    .card {


        width: 100%;
        padding: 0 1.5em 30px;

        & p {
            font-weight: 300;
            font-size: 1.125rem;
            line-height: 1.25;
            width: 100%
        }
    }


    .footerContent {

        padding: 0 2rem;

        & .mainContent{
            flex-direction: column;

            & .contactsContainer{
                width: 100%;
                
                & .contactsTitleContainer {
                    width: 100%;
                    & h4 {
                        font-size: 1.5rem;
                        text-align: start;
                    }
                }

                & .contactsList {

                    flex-direction: column;
                    width: 100%;

                    & a {
                        span {
                            font-size: 0.8rem;
                            line-break: auto;
                        }

                        img {
                            width: 1.7rem;
                        }
                    }
                }
            }

            & .logoFooterContainer{
                margin-top: 50px;
                width: 100%;

                & .footerLogo {
                    height: 3.5rem;
                }

                & .logoTextsContainer {
                    & .logoTitle {
                        font-size: 1.5rem;
                    }
                }
            }
        }

        & .copyrightContainer {
            margin: 40px 0;
            padding-bottom: 20px;

            & span {
                text-align: center;
                font-size: 0.6rem;
            }
        }
        
    }

    

    
}

@media (min-width: 481px) and (max-width: 768px) {

    header nav .contact-btn {
        width: 35%;

        & span {
            font-size: 0.9rem;
        }
    }



    .introductionSectionContainer {
        padding: 0 2.5rem;
    }

    .introductionSectionTextContainer {
        width: 100%;
        display: flex;
        flex-direction: column;

        & h1 {
            font-size: 2.5rem;
            width: 90%;
        }

        & p {
            font-weight: 300;
            font-size: 1.125rem;
            width: 90%
        }

        & .contact-btn {
            align-self: center;
            width: 90%;
            box-shadow: 0px 4px 20px 0px rgba(2, 70, 139, 1);
            margin-bottom: 0;

        }



    }

    .porquesSectionContainer {
        & h2 {
            font-size: 2.2rem;

        }

        & .contact-btn {
            width: 90%;
            align-self: center;
            box-shadow: 0px 4px 20px 0px rgba(2, 70, 139, 1);
            margin-bottom: 0;

        }
    }

    .card {


        width: 100%;
        padding: 0 1.5em 30px;

        & p {
            font-weight: 300;
            font-size: 1.125rem;
            width: 100%
        }
    }

    .footerContent {

        & .mainContent{
            flex-direction: column;

            & .contactsContainer{
                width: 100%;
                
                & .contactsTitleContainer {
                    & h4 {
                        font-size: 1.7rem;
                    }
                }

                & .contactsList {

                    & a {
                        span {
                            font-size: 1rem;
                        }

                        img {
                            width: 1.7rem;
                        }
                    }
                }
            }

            & .logoFooterContainer{
                margin-top: 50px;
                width: 100%;

                & .footerLogo {
                    height: 3.5rem;
                }

                & .logoTextsContainer {
                    & .logoTitle {
                        font-size: 1.5rem;
                    }
                }
            }
        }

        & .copyrightContainer {
            margin: 40px 0;
            padding-bottom: 20px;

            & span {
                text-align: center;
                
            }
        }
        
    }

    

}

@media (min-width: 769px) and (max-width: 1211px) {

    header nav .contact-btn {
        width: 27%;

        & span {
            font-size: 1rem;
        }
    }

    .contact-btn:hover {
        background-color: #17A589;
        transform: none;
        box-shadow: 0px 4px 20px 0px rgba(23, 165, 137, 0.5);
    }

    .introductionSectionTextContainer {
        width: 100%;

        & h1 {
            font-size: 3rem;
        }

        & p {
            width: 80%;
            font-size: 1.25rem;
        }

        & .contact-btn {
            width: 40%;
            box-shadow: 0px 4px 20px 0px rgba(2, 70, 139, 1);
            margin-bottom: 0;

        }

    }

    .card {
        width: 35%;
        padding: 0 2.0em 30px;
    }

    .porquesSectionContainer {
        & h2 {
            font-size: 2.5rem;
            line-height: 1.25;
        }

        & .contact-btn {
            width: 90%;
            align-self: center;
            box-shadow: 0px 4px 20px 0px rgba(2, 70, 139, 1);
            margin-bottom: 0;

        }
    }

    
    .footerContent {

        padding: 0 2rem;

        & .mainContent{

            & .contactsContainer{
                width: 50%;
                align-items: start;
                
                & .contactsTitleContainer {
                    width: 100%;
                    & h4 {
                        font-size: 1.5rem;
                        text-align: center;
                    }
                }

                & .contactsList {
                    flex-direction: column;
                    & a {
                        span {
                            font-size: 0.9rem;
                        }

                        img {
                            width: 1.9rem;
                        }
                    }
                }
            }

            & .logoFooterContainer{
                width: 50%;

                & .footerLogo {
                    height: 3.5rem;
                }

                & .logoTextsContainer {
                    & .logoTitle {
                        font-size: 1.5rem;
                    }
                }
            }
        }

        & .copyrightContainer {
            margin: 40px 0;
            padding-bottom: 20px;

            & span {
                text-align: center;
            }
        }
        
    }
}