/* @import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"); */
@import url("https://fonts.cdnfonts.com/css/aller");

:root {
    --primary-color: #133E6D;
    --primary-color-rgb: rgb(3, 71, 120);
    --primary-color-dark: #1b2c4b;
    --primary-color-dark-rgb: rgb(27, 44, 75);
    --primary-color-dark-bk: #13162a;
    --primary-color-dark-bk-rgb: rgb(19, 22, 42);
    --secundary-color: #d9b565;
    --secundary-color-rgb: rgb(217, 181, 101);
    --secundary-color-dark: #9d7c36;
    --secundary-color-dark-rgb: rgb(157, 124, 54);
    --background-color: #fefefe;
    --branco: #fff;
    --error-color: #fff6f6;
    --error-color-dark: #9f3a38;
    --success-color: #fcfff5;
    --success-color-dark: #2c662d;
    --background-field: #e2e7ed;
    --background-field2: #F6F6F6;
}

* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
    font-family: "Aller", sans-serif !important;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /*color: var(--primary-color);*/
}

html, body {
    width: 100%;
    height: 100%;
}

.dourado {
    color: var(--secundary-color-dark);
}

/****** Customizações *****/
.ui.toggle.checkbox input:checked ~ .box:before, .ui.toggle.checkbox input:checked ~ label:before {
    background-color: var(--primary-color) !important;
}

.fundo {
    background-image: url(../image/bg-5-scaled.jpg);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -4;
    background-color: #fefefe;
    background-position: top;
}

    .fundo .fundoColor {
        width: 100%;
        height: 100%;
        background: var(--primary-color);
        opacity: 0.15;
    }

header {
    width: 100%;
    height: 80px;
    background-color: var(--background-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    padding-top: 10px;
    box-shadow: 0 1px 2px 0 rgb(34 36 38 / 15%);
    position: relative;
    z-index: 100;
}

.logo img {
    width: 230px;
}

p, h2 {
    color: var(--primary-color);
}

.sc-container {
    width: 100%;
    height: calc(100% - 80px);
    background-color: transparent;
    display: grid;
    grid-template-columns: 60% 40%;
}

.informativo {
    background-color: rgb(246, 246, 246);
    display: flex;
}

    .informativo .image {
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .informativo .image img {
            min-width: 250px;
            width: 80%;
        }

    .informativo .text {
        padding: 200px 20px 20px 20px;
    }

        .informativo .text h2 {
            color: var(--primary-color);
        }

        .informativo .text p {
            color: var(--primary-color-dark);
            font-size: 18px;
        }

.sc-container-form {
    padding: 50px;
}

form .sc-field {
    width: 100%;
    display: grid;
    grid-template-columns: 100%;
    padding: 10px 0;
}


.sc-field label {
    color: var(--primary-color);
}

.sc-field input,
.sc-field select {
    border-left: none;
    border-right: none;
    border-top: none;
    border-bottom: 2px solid #ccc;
    font-size: 18px;
    padding: 10px;
    background-color: var(--background-field2);
    color: var(--primary-color);
    outline: none;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition-property: border-bottom, background-color;
    transition-duration: 0.3s;
    transition-timing-function: ease;
}

    .sc-field input:focus,
    .sc-field select:focus {
        border-left: none;
        border-right: none;
        border-top: none;
        border-bottom: 2px solid var(--primary-color);
        background-color: var(--background-field);
    }

.sc-error {
    color: var(--error-color-dark) !important;
    font-size: 12px;
}

.sc-cards {
    display: grid;
    grid-template-columns: calc(50% - 5px) calc(50% - 5px);
    grid-column-gap: 10px;
    padding: 10px 0;
}
    .sc-cards .sc-card {
        padding: 5px;
        border-left: none;
        border-right: none;
        border-top: none;
        border-bottom: 2px solid #ccc;
        transition-property: background-color;
        transition-duration: 0.1s;
        transition-timing-function: linear;
        cursor: pointer;
        background-color: var(--background-field2);
    }
        .sc-cards .sc-card .title {
            font-size: 16px;
            font-weight: 800;
            color: var(--primary-color);
            height: 20px;
        }

        .sc-cards .sc-card .description {
            font-size: 12px;
            color: var(--primary-color);
            user-select: none;
        }

        .sc-cards .sc-card .title::after {
            content: "";
            background-color: #fff;
            border: 2px solid var(--primary-color);
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: block;
            position: relative;
            top: -20px;
            right: calc(-100% + 20px);
            transition: border 0.2s linear;
        }

        .sc-cards .sc-card:hover {
            background-color: var(--background-field);
            border-bottom: 2px solid var(--primary-color);
        }

        .sc-cards .sc-card.active {
            background-color: var(--background-field);
            border-bottom: 2px solid var(--primary-color);
        }

            .sc-cards .sc-card.active .title::after {
                border: 7px solid var(--primary-color);
            }

.sc-button {
    cursor: pointer;
    display: inline-block;
    min-height: 1em;
    outline: 0;
    border: 1px solid #e0e1e2;
    vertical-align: baseline;
    background: #e0e1e2 none;
    color: rgba(0,0,0,.6);
    margin: 0 0.25em 0 0;
    padding: 0.78571429em 0.5em;
    text-transform: none;
    text-shadow: none;
    font-weight: 700;
    line-height: 1em;
    font-style: normal;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 0 1px transparent inset, 0 0 0 0 rgb(34 36 38 / 15%) inset;
    box-shadow: 0 0 0 1px transparent inset, 0 0 0 0 rgb(34 36 38 / 15%) inset;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: opacity .1s ease,background-color .1s ease,color .1s ease,background .1s ease,-webkit-box-shadow .1s ease;
    transition: opacity .1s ease,background-color .1s ease,color .1s ease,background .1s ease,-webkit-box-shadow .1s ease;
    transition: opacity .1s ease,background-color .1s ease,color .1s ease,box-shadow .1s ease,background .1s ease;
    transition: opacity .1s ease,background-color .1s ease,color .1s ease,box-shadow .1s ease,background .1s ease,-webkit-box-shadow .1s ease;
    -webkit-tap-highlight-color: transparent;
}

.swal2-styled.swal2-confirm {
    border: 1px solid var(--primary-color) !important;
    background-color: var(--primary-color) !important;
    border: 1px solid var(--primary-color) !important;
    color: #fff !important;
    transition: 0.3s !important;
}

    .swal2-styled.swal2-confirm:focus {
        box-shadow: 0 0 0 3px rgba(226,231,237,.5) !important;
    }

.sc-buttons {
    display: grid;
    grid-template-columns: 30% 70%;
}

.sc-button.sc-basic {
    background-color: #fff;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    transition: 0.3s;
}

    .sc-button.sc-basic:hover {
        border: 1px solid var(--primary-color-dark);
        color: var(--primary-color-dark);
    }

.sc-button.sc-button-primary {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #fff;
    transition: 0.3s;
}

    .sc-button.sc-button-primary:hover {
        background-color: var(--primary-color-dark);
        border: 1px solid var(--primary-color-dark);
        color: #fff;
    }

.sc-button.sc-fluid {
    width: 100%;
}

.resumo {
    border: 1px solid var(--secundary-color-dark);
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 10px;
    transition: display linear 0.3s;
}

    .resumo p {
        text-align: center;
        margin: 0;
        font-size: 12px;
    }

    .resumo hr {
        border: 1px solid var(--secundary-color-dark);
        margin: 10px 0;
    }

    .resumo .valor {
        font-size: 16px;
        color: var(--secundary-color-dark);
    }

    .resumo .observacao {
        font-weight: bold;
    }

.sc-loading {
    z-index: 1000;
    position: fixed;
    width: 100%;
    height: 100%;
}

    .sc-loading .sc-loading-fundo {
        position: absolute;
        z-index: 1001;
        width: 100%;
        height: 100%;
        background-color: black;
        opacity: 0.8;
    }

    .sc-loading .sc-loading-text {
        position:absolute;
        z-index: 1002;
        width: 100%;
        height: 100%;
        font-size: 25px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
    }

.steps {
    display: grid;
    grid-template-columns: 100px calc(100% - 100px);
    margin-bottom: 25px;
}

    .steps h2 {
        margin-bottom: 0;
    }

    .steps p {
        color: var(--secundary-color-dark);
    }

.graph {
    text-align: center;
    width: 50px;
    height: 50px;
    line-height: 60px;
    /*text-transform: uppercase;*/
    font-family: sans-serif;
    text-decoration: none;
    font-size: 10px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

svg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    fill: transparent;
    stroke-width: 6px;
    stroke: #ddd;
}

:root {
    --size: 255;
}

.graph svg.cor {
    stroke: var(--secundary-color-dark);
    stroke-dasharray: 255;
    stroke-dashoffset: calc(var(--size) - 25.4);
    transform: rotate(-90deg);
    transform-origin: center;
}

@media only screen and (max-width: 900px) {
    .informativo .image img {
        min-width: 200px;
        margin-top: -120px;
    }

    .informativo .text p {
        color: var(--primary-color-dark);
        font-size: 14px;
        margin: 0 0 0.5em;
    }

    h2 {
        font-size: 1.4rem;
    }
}

@media only screen and (max-width: 800px) {
    .sc-container {
        grid-template-columns: 100%;
        height: calc(100% - 150px);
    }

    .informativo .image {
        display: none;
    }

    .informativo .text {
        padding: 20px 20px 20px 20px;
    }

        .informativo .text p {
            color: var(--primary-color-dark);
            font-size: 14px;
            margin: 0 0 0.5em;
        }

    h2 {
        font-size: 1.4rem;
    }
}

@media only screen and (max-width: 700px) {
    .sc-buttons {
        position: fixed;
        bottom: 0;
        width: 100%;
        left: 0;
        padding: 10px 50px;
        background-color: #fff;
        box-shadow: 0 -1px 2px 0 rgb(34 36 38 / 15%);
    }

    .sc-container-form {
        padding: 50px 50px 75px 50px;
    }
}