﻿:root {
    font-family: 'Courier New', Courier, monospace !important;
    --color-black: #252b42;
    --color-blue: #0286d1;
    --color-gray: #bdbdbd;
    --color-orange: #e77c40;
    --color-blue-hover: #00478e;
    /*------------Transition-------------*/
    --transition-speed: 600ms;
}

body {
    background-color: #f2f2f2;
}


nav {
    margin-bottom: 10px;
}

    nav a {
        text-decoration: none;
        color: black !important;
    }

.navbar-light {
    background-color: #0e2326b5;
}

    .navbar-light .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }

    .navbar-light .navbar-toggler {
        color: rgb(255 255 255 / 55%) !important;
        border-color: rgba(0,0,0,.55);
    }

.nav-item a:hover {
    color: var(--color-blue) !important
}

/* Color Buttons */
.btn-primary {
    border: 1px solid var(--color-blue) !important;
    background-color: var(--color-blue) !important;
    color: white !important;
}

    .btn-primary:hover {
        border: 1px solid #1a97ab !important;
        background-color: #1a97ab !important;
        color: white !important;
    }

.btn-outline-primary {
    border: 1px solid var(--color-gray) !important;
    color: var(--color-gray) !important;
}

.textWhite, .textWhite h1, .textWhite p {
    color: white;
}

.container-login {
    display: grid;
}

/* Session 1 */
.section1 {
    background-image: url(../img/FundoBemolAtualizado.png);
    background-repeat: no-repeat;
    background-size: cover;
    /*background-attachment: fixed;*/
    background-position: 50%;
}

.cs-1 {
    display: grid;
    max-width: 1080px;
    margin: 0 auto;
    gap: 60px;
    grid-template-rows: 460px 50px;
    margin-top: 90px;
}
    
    .cs-1 .info {
        display: flex;
        flex-wrap: wrap;
        max-width: 1000px;
        margin: 0 auto;
    }

        .cs-1 .info > div {
            flex: 1 1 250px;
            margin: 20px;
            background-color: white;
            padding: 20px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
            transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
        }

            .cs-1 .info > div:hover {
                background-color: var(--color-blue) !important;
                box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
            }

                .cs-1 .info > div:hover i, .cs-1 .info > div:hover h3, .cs-1 .info > div:hover p {
                    color: white;
                }

        .cs-1 .info i {
            font-size: 2rem;
            margin-bottom: 10px;
            color: var(--color-blue);
        }

        .cs-1 .info p {
            font-size: .9rem;
            color: black;
            margin-bottom: 0;
        }

.block-class {
    display: block;
}

.none-class {
    display: none;
}

/* Fim Session 1 */

/* Session 2 */
.section2 {
    background-color: white;
    margin-top: 170px;
}

.cs-2 {
    display: grid;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.cs-2 > div:nth-child(1) {
    padding: 20px 190px;
    text-align: center;
}

    .cs-2 .parceiros {
        display: flex;
        flex-wrap: wrap;
        max-width: 1000px;
        margin: 0 auto;
    }

        .cs-2 .parceiros .item {
            flex: 1 1 250px;
            margin: 20px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
        }

    .cs-2 .item {
        display: grid;
        grid-template:
            "i1 i2" 35px
            "i1 i3" 65px;
        padding: 10px;
    }

        .cs-2 .item i {
            grid-area: i1;
            font-size: 32px;
            padding: 15px 10px;
            color: var(--color-blue)
        }

        .cs-2 .item h4 {
            grid-area: i2;
            margin: 0;
            padding: 10px 0 0 0;
            font-size: 18px;
        }

        .cs-2 .item p {
            grid-area: i3;
            margin: 0;
        }

/* Session 3 */
.section3 {
    background-color: #ececec;
}

.cs-3 {
    display: grid;
    gap: 20px;
    max-width: 1000px;
    margin: 170px auto 0 auto;
}

    .cs-3 > div:nth-child(1) {
        padding: 20px 190px;
        text-align: center;
    }

    .cs-3 .infos {
        display: flex;
        flex-wrap: wrap;
        max-width: 1000px;
        margin: 0 auto;
    }

        .cs-3 .infos .item {
            flex: 1 1 250px;
            margin: 20px;
            border: 1px solid red;
        }

        .cs-3 .infos .item {
            display: grid;
            grid-template:
                "i1 i2" 60px
                "i1 i3" auto;
            padding: 20px;
        }

            .cs-3 .infos .item i {
                grid-area: i1;
                font-size: 40px;
                padding: 15px 25px 0 0;
                color: var(--color-blue);
            }

            .cs-3 .infos .item h4 {
                grid-area: i2;
                margin: 0;
                padding: 10px 0 0 0;
                font-size: 18px;
            }

            .cs-3 .infos .item p {
                grid-area: i3;
                margin: 0;
            }

/* Fim Session 3 */

/* Session 4 */
.section4 {
    background-color: #e0e0e0;
}

.cs-4 {
    display: grid;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

    .cs-4 h1 {
        color: var(--color-blue);
    }

    .cs-4 > div:nth-child(1) {
        padding: 20px 190px;
        text-align: center;
    }

    .cs-4 .item {
        display: flex;
        flex-wrap: wrap;
        max-width: 900px;
        margin: 0 auto;
    }

        .cs-4 .item > div {
            flex: 1 1 292px;
            text-align: center;
        }

            .cs-4 .item > div:nth-child(1) {
                border: 1px solid red;
                display: block;
                height: 370px;
                margin-top: 65px;
                border-radius: 10px;
                padding: 20px;
                background-color: white;
                /*font-weight: 500;*/
            }

                .cs-4 .item > div:nth-child(1) h3 {
                    text-align: center;
                    padding: 20px 0 10px 0;
                    color: var(--color-blue);
                }

            .cs-4 .item > div:nth-child(1) p {
                text-align: center;
                padding: 20px 0 10px 0;
            }

                .cs-4 .item > div:nth-child(1) > a {
                    text-align: center;
                    background-color: var(--color-blue);
                    color: white;
                    border-radius: 3px;
                    margin: 0 auto;
                    padding: 10px;
                    width: 215px;
                    text-decoration: none;
                    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25), 0 3px 10px rgba(0, 0, 0, 0.22);
                }
                    .cs-4 .item > div:nth-child(1) > a:hover {
                        background-color: #00478e !important;
                    }

                    .cs-4 .item > div:nth-child(2) {
                        border: 1px solid red;
                        display: block;
                        height: 516px;
                        border-radius: 10px;
                        padding: 20px;
                        background-color: var(--color-blue);
                        color: white;
                    }

            .cs-4 .item > div:nth-child(2) h3 {
                text-align: center;
                padding: 20px 0 10px 0;
                color: white;
            }

            .cs-4 .item > div:nth-child(2) p {
                text-align: center;
                padding: 20px 0 10px 0;
            }

                .cs-4 .item > div:nth-child(2) > a {
                    text-align: center;
                    background-color: var(--color-blue);
                    color: white;
                    border-radius: 3px;
                    margin: 0 auto;
                    padding: 10px;
                    width: 215px;
                    text-decoration: none;
                    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25), 0 3px 10px rgba(0, 0, 0, 0.22);
                }
                    .cs-4 .item > div:nth-child(2) > a:hover {
                        background-color: #00478e !important;
                    }

                    .cs-4 .item > div:nth-child(3) {
                        border: 1px solid red;
                        display: block;
                        height: 436px;
                        margin-top: 35px;
                        border-radius: 10px;
                        padding: 20px;
                        background-color: white;
                    }

                .cs-4 .item > div:nth-child(3) h3 {
                    text-align: center;
                    padding: 20px 0 10px 0;
                    color: var(--color-blue);
                }

            .cs-4 .item > div:nth-child(3) p {
                text-align: center;
                padding: 20px 0 10px 0;
            }

                .cs-4 .item > div:nth-child(3) > a {
                    text-align: center;
                    background-color: var(--color-blue);
                    color: white;
                    border-radius: 3px;
                    margin: 0 auto;
                    padding: 10px;
                    width: 215px;
                    text-decoration: none;
                    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25), 0 3px 10px rgba(0, 0, 0, 0.22);
                }
                .cs-4 .item > div:nth-child(3) > a:hover{
                     
                        background-color: #00478e !important;
                    }
                }

footer {
    background-color: var(--color-blue);
}

    footer a, footer p, footer h5, footer li {
        text-decoration: none;
        color: white;
    }

    /*NAVBAR CHANGE COLOR SCROLL*/
    .navbar-light.scrolled {
        background-color: rgb(37,43,66) !important;
        transition: background-color 200ms linear;
    }

@media (max-width: 1400px) {

    .cs-1 {
        max-width: 1320px;
    }   

}

@media (max-width: 1220px) {
    .cs-1 {
        max-width: 1140px;
    }

    .formAuth {
        height: 80% !important;
    }

    .subgrid h1 {
        font-size: 45px !important;
    }

    .subgrid.h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 992px) {

    .navbar-light .navbar-toggler-icon {
        color: white !important;
    }

    /*.navbar-light {
        background-color: #0e2326;
    }*/

    .formAuth {
        justify-content: space-between !important;
    }

    .subgrid h1 {
        font-size: 40px !important;
    }

    .subgrid h3 {
        font-size: 1.2rem !important;
    }

    .text-muted {
        font-size: 15px;
    }

    .cs-1 {
        max-width: 960px;
    }

    .cs-2 > div:nth-child(1) {
        padding: 0;
        margin-top: 15%;
    }

    .cs-3 {
        margin: 300px auto 0 auto;
    }

    .cs-3 > div:nth-child(1) {
        padding: 0;
    }

    .cs-4 > div:nth-child(1) {
        padding: 0;
    }

    .cs-4 .item {
        display: grid;
        margin: 0 auto;
        gap: 20px;
    }

        .cs-4 .item > div {
            margin-top: 0;
        }

            .cs-4 .item > div:nth-child(1) {
                height: auto;
                margin-top: 0;
            }

            .cs-4 .item > div:nth-child(2) {
                height: auto;
                margin-top: 0;
            }

            .cs-4 .item > div:nth-child(3) {
                height: auto;
                margin-top: 0;
            }
        
}

    @media (max-width: 1447px) {
        .section1{
            background-position: 45%;
            padding: 0px !important;
        }

        .dvValidados{
            display: flex;
            align-items: center;
            padding: 40px
        }
        .navbar {
            padding-bottom: 15px !important;
        }
       #title_ValidaDados{
           margin-top: 45px
        }
    }


    @media (max-width: 1221px) {
        .section1 {
            background-position: 45%;
            padding: 0px !important;
        }
    }
    @media (max-width: 1066px) {
        .section1 {
            background-position: 32%;
        }
       
    }
@media (max-width: 985px) {
    .section1 {
        background-image: url(../img/FundoBemolMobileAtualizado.png);
    }
    .cs-1 {
        max-width: 100%;
        justify-content: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    #title > h1 {
        font-size: 50px;
        text-align: center;
    }

    #title > h3 {
        padding: 20px 0;
        text-align: center;
    }

    .text-muted {
        font-size: 12px;
    }

    .formulario {
        width: 100%;
    }

    .subgrid {
        justify-content: center;
        align-items: center;
    }

    .none {
        display: none;
    }

    .formAuth {
        width: 100% !important;
    }

    .cs-3 {
        margin: 50px auto 0 auto;
    }

    .form-subgrid {
        width: 80vw;
    }
}
    /*Responsivo antes data imagem atual */

   /* @media (max-width: 768px) {
        .cs-1 {
            max-width: 100%;
            justify-content: center;
            align-items: center;
            display: flex;
            flex-direction: column;
        }

        #title > h1 {
            font-size: 50px;
            text-align: center;
        }

        #title > h3 {
            padding: 20px 0;
            text-align: center;
        }

        .text-muted {
            font-size: 12px;
        }

        .formulario {
            width: 100%;
        }

        .subgrid {
            justify-content: center;
            align-items: center;
        }

        .none {
            display: none;
        }

        .formAuth {
            width: 100% !important;
        }

        .section1 {
            background-image: url(../img/fundoBemol-mobile.jpg);
        }

        .cs-3 {
            margin: 50px auto 0 auto;
        }

        .form-subgrid {
            width: 80vw;
        }
    }*/

    @media (max-width: 615px) {
        .text-muted {
            font-size: 10px;
        }
    }

    @media (max-width: 576px) {
        .cs-1 {
            max-width: 540px;
        }

        #title > h1 {
            font-size: 50px;
            text-align: center;
        }

        #title > h3 {
            padding: 20px 0;
            text-align: center;
        }

        .formulario {
            width: 100%;
        }

        .form-subgrid {
            width: 80vw;
        }

        .col-5 {
            line-height: 1 !important;
            text-align: left;
            width: 80%;
        }
    }

    @media (max-width: 440px) {
        #title > h1 {
            font-size: 30px;
        }

        #title > h3 {
            font-size: 20px;
        }

        .form-subgrid {
            width: 95vw;
        }
    }

    @media (max-width: 350px) {
        .container {
            width: 90%;
        }

        .btn-default {
            width: auto !important;
            padding: 10px 5px;
        }

        .responsive {
            width: 90vw;
        }

        .item {
            display: flex !important;
            flex-direction: column;
        }

            .item i {
                padding: 0 !important;
            }

            .item h4, p {
                text-align: center;
            }

            .item p {
                padding-top: 8px;
            }

            .item > div a {
                font-size: 15px;
            }

        .col-5 {
            line-height: 1 !important;
            width: 50%;
        }

        .NavMenu {
            width: 60%;
        }

        .NavMenuImg {
            width: 58%
        }
    }