﻿:root {
    --black: #121A23;
    --blue: #1620C6;
    --green: #64DA77;
    --gray: #E5EAED;
    --darkgrey: #81888C;
}

body {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
}

a {
    color: var(--blue);
    font-weight: 700;
}

a:focus, a:hover {
    text-decoration: none;
    color: var(--blue);
    opacity: 0.8;
}

button:focus {
    outline: unset !important;
}

.loading {
    position: fixed;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    top: 0px;
    left: 0px;
    z-index: 9999999;
    background-color: rgba(255,255,255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 8px solid var(--blue);
    border-right-color: var(--green);
    animation: l2 1s infinite linear;
}

@keyframes l2 {
    to {
        transform: rotate(1turn)
    }
}

/* Nav top */

#mainNav {
    background-color: #fff;
    margin: 0px;
    padding: 20px;
    position: fixed;
    top: 0px;
    border-bottom: 1px solid var(--gray);
}

    #mainNav .navbar-brand {
        padding: 0px;
        line-height: unset;
        display: flex;
        align-items: center;
    }
    #mainNav .navbar-brand img {
        max-width: 185px;
    }

    #mainNav #navbarResponsive .navbar-nav {
        float:right;
    }

    #mainNav .navbar-nav .nav-item .nav-link {
        color: var(--black);
        font-weight: 700;
        margin-left: 35px;
    }

    #mainNav .navbar-nav .nav-item .nav-link:hover {
        opacity: 0.7;
    }

    #mainNav .navbar-dark .navbar-toggler {
        color: var(--black);
        border-color: var(--black);
    }

    

/* Hero */
#hero {
    margin-top: 60px;
    padding-bottom: 40px;
}

#hero-card {
    height: 740px;
    border-radius: 16px;
    position: relative;
}

#hero .side {
    position: absolute;
    width: 50%;
    height: 740px;
    top: 0px;
}

#hero #side1 {
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    left: 0px;
    overflow: hidden;
}

#hero #carousel, #hero #carousel .item {
    height: 740px;

}

#hero #carousel .carousel-caption {
    font-size: 40px;
    line-height: 48px;
    font-weight: 400;
    text-transform: uppercase;
    left: 36px;
    right: 36px;
    text-align: left;
    bottom: 30px;
}

#hero #carousel .carousel-indicators {
    left: 50px;
}

#hero #carousel .carousel-indicators li {
    margin: 0;
    margin-left: 5px;
    width: 12px;
    height: 12px;
    border: none !important;
    background-color: #fff;
    opacity: 0.45;
}

    #hero #carousel .carousel-indicators li.active {
        opacity: 1;
        margin: 0;
        margin-left: 5px;
    }

#hero #side2 {
    right: 0px;
    padding: 25px 80px;
}

/* Formularios */
.div-form {
    min-height: 630px;
}

.opcao-cadastro {
    display: block;
    padding: 25px 0px;
    border-bottom: 1px solid var(--gray);
    text-transform: uppercase;
    position: relative;
}

.opcao-cadastro i {
    position: absolute;
    right: 0px;
}

.passos {
    display: flex;
    margin: 20px 0px;
}

.passo1, .passo2 {
    width: 115px;
    border-radius: 100px;
    height: 4px;
    background-color: var(--gray);
    margin-right: 8px;
}

.div-form .row {
    margin-right: -8px !important;
    margin-left: -8px !important;
}

    .div-form .row .col-lg-4,
    .div-form .row .col-lg-6,
    .div-form .row .col-lg-1,
    .div-form .row .col-lg-3,
    .div-form .row .col-lg-12,
    .div-form .row .col-lg-2 {
        padding-right: 8px !important;
        padding-left: 8px !important;
    }

.passo1.active, .passo2.active {
    background-color: var(--blue);
}
/* Page Content */
#page-content {
}

/* Services */
#services {

}

    #services a {
        text-decoration: none !important;
    }

    #services a:hover {
        opacity: 1;
    }
/* Sobre */

#sobre a {
    text-decoration: none !important;
}

#sobre a:hover {
    opacity: 1;
}

/* Contato */


/* Footer */
#footer img {
    max-width: 224px;
}


#footer .footer-item {
    display: flex;
    align-items: center;
}

#footer .footer-item-icon {
    height: 48px;
    min-width: 48px;
    max-width: 48px;
    background-color: var(--gray);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-right: 20px;
    color: var(--blue);
}

#footer .footer-item-icon i {
    font-size: 20px;
    color: var(--blue);
}

#footer .footer-item span {
    color: var(--black);
    font-weight: 700;
}

/* Helpers Class */
section {
    padding-top: 60px;
    padding-bottom: 80px;
    border-top: 1px solid var(--gray);
}

section p {
    text-align: justify;
}
.section-bg {
    background-color: #FAFAFA;
}

.bordered {
    border-top: 20px solid var(--green);
}

.title {
    font-size: 32px;
    font-weight: 700;
    position: relative;
    padding-top: 50px;
    margin-bottom: 25px;
}

    .title::before {
        content: '';
        border-radius: 4px;
        position: absolute;
        width: 96px;
        height: 24px;
        top: 0px;
        left: 0px;
        background: var(--green);
    }

.title.right {
    text-align: end;
}
    .title.right::before {
        right: 0px;
        left: unset;
    }

.card {
    border: 1px solid var(--gray);
    border-radius: 8px;
    background-color: #fff;
}

    .card .card-body {
        margin: 15px;
    }

.card.card-item {
    cursor: pointer;
}


.card.card-item .card-body {
    display: flex;
    align-items: center;
}

.card.card-item:hover {
    background-color: var(--gray);
}

.card .card-item-icon {
    height: 80px;
    width: 80px;
    background-color: #F5F7F8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-right: 20px;
}

    .card:hover .card-item-icon {
        background-color: #fff;
    }

    .card .card-item-icon i {
        font-size: 48px;
        color: var(--blue);
    }



    .card .card-item-icon.secondary i {
        color: var(--green);
    }

.card.card-item span {
    color: var(--black);
}

.btn-primary {
    background-color: var(--blue) !important;
    color: #fff;
    font-weight: 700;
    border-radius: 6px;
    padding: 16px 12px !important;   
    text-transform: uppercase;
    border: 1px solid var(--blue) !important;
}

    .btn-primary:hover {
        background-color: var(--blue) !important;
        color: #fff;
        font-weight: 700;
        border-radius: 6px;
        opacity: 0.7;
    }

.btn-secondary {
    background-color: var(--green) !important;
    color: var(--black);
    font-weight: 700;
    border-radius: 6px;
    padding: 16px 12px !important;
    text-transform: uppercase;
    border: 1px solid var(--green) !important;
}

    .btn-secondary:hover {
        background-color: var(--green) !important;
        color: var(--black);
        font-weight: 700;
        border-radius: 6px;
        opacity: 0.7;
    }

.btn-white {
    background-color: #fff !important;
    color: var(--black);
    font-weight: 700;
    border-radius: 6px;
    padding: 16px 12px !important;
    text-transform: uppercase;
    border: 1px solid var(--gray) !important;
}

    .btn-white:hover {
        background-color: #fff !important;
        color: var(--black);
        font-weight: 700;
        border-radius: 6px;
        opacity: 0.7;
    }

.form-control {
    min-height: 56px !important;
    padding: 16px !important;
    border: 1px solid var(--gray) !important;
    border-radius: 8px !important;
    font-size: 16px;
}

.form-control.error {
    border: 1px solid red !important;
}

.div-form .col-lg-2 .form-control {
    padding: 0px !important;
}

.modal .modal-full {
    width: 90% !important;
    max-width: unset;
}

.modal .modal-title {
    font-size: 20px;
    font-weight: 700;
}

.modal .modal-content {
    border-radius: 18px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .2);
    border-color: var(--gray);
}

.modal .modal-header {
    border-bottom: none !important;
}

.modal .modal-sub-header {
    padding: 15px;
    border-bottom: 1px solid var(--gray);
}

#tbcartorios_wrapper .table-scrollable, #tbmunicipios_wrapper .table-scrollable {
    max-height: calc( 100vh - 300px );
    overflow-y: auto;
    border-bottom: 1px solid var(--gray);
}

.close {
    float: right;
    font-size: 35px;
    font-weight: 700;
    line-height: 10px;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    /*filter: alpha(opacity = 20);
     opacity: .2; */
}

.form-icon-field {
    padding-left: 40px !important;
}

.form-icon {
    position: absolute;
    color: var(--black);
    left: 30px;
    top: 20px;
    font-size: 16px;
}

.alert-bottom {
    position: fixed;
    width: 40%;
    padding: 15px 20px;
    border-radius: 6px;
    bottom: 15px;
    left: -40%;
    /* opacity: 0.9; */
    z-index: 999999;
    transition: all 0.4s;
    filter: drop-shadow(5px 5px 10px #666);
}

    .alert-bottom.active {
        left: 15px;
    }

    .alert-bottom i {
        cursor: pointer;
        position: absolute;
        top: 5px;
        right: 5px;
        font-size: 12px;
    }

    .alert-bottom.alert-danger {
        border: 1px solid #721c24;
    }

    .alert-bottom.alert-success {
        border: 1px solid #155724;
    }

    .alert-bottom.alert-warning {
        border: 1px solid #856404;
    }

@media (max-width: 1199.98px) {
    .alert-bottom {
        width: 90%;
        left: -95%;
    }
}

.alert-success {
    color: #ffffff;
    background-color: #079128;
    border: none !important;
}

.alert-warning {
    color: #ffffff;
    background-color: #a47d01;
    border: none !important;
}

.alert-danger {
    color: #ffffff;
    background-color: #a40101;
    border: none !important;
}

/* DataTables */
.dataTables_info {
    margin-top: 20px;
    padding: 8px;
}

.pagination {
    float: right;
}

    .pagination > li > a, .pagination > li > span {
        margin-left: 10px !important;
        width: 48px;
        height: 48px;
        border-radius: 4px;
        border-color: var(--gray) !important;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 16px;
        font-weight: 700;
        color: var(--black);
    }

    .pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
        color: #fff;
        background-color: var(--blue);
        border-color: var(--blue) !important;
    }

.table th {
    vertical-align: middle !important;
    text-align: center !important;
}

/* wizard */
.wizard h1 {
    font-weight: 400;
    font-size: 32px;
}

    .wizard h1 a {
        color: var(--darkgrey);
        font-weight: 400;
        text-decoration: none;
    }

    .wizard h1 span {
        color: var(--gray);
        margin: 0px 10px;
    }

.wizard p {
    text-align: left;
}

.wizard .form-icon-field {
    padding-left: 45px !important;
}

.wizard .form-icon {
    position: absolute;
    color: var(--black);
    left: 20px;
    top: 20px;
    font-size: 16px;
}

.wizard .rodape {
    border-top: 1px solid var(--gray);
    width: calc( 100% - 80px );
    padding: 20px;
    position: absolute;
    bottom: 20px;
    left: 40px;
}

/* MOVBILE */

@media (max-width: 1025px) {
    .navbar > .container, .navbar > .container-fluid {
        justify-content: start;
        /*display: block !important;*/
    }

    .navbar-dark .navbar-toggler {
        color: var(--black);
        position: absolute;
        font-size: 25px;
        right: 20px;
        top: 30px;
    }



    #hero #side2 {
        padding: 25px 25px;
    }

    #hero #carousel .carousel-caption {
        font-size: 25px;
        line-height: 30px;
    }

    .wizard .rodape {
        bottom: 0px;
    }

    #mainNav #navbarResponsive .navbar-nav {
        float: unset;
    }

    #mainNav .navbar-collapse.collapse {
        display: none !important;
    }

    #mainNav .navbar-collapse.in {
        display: block !important;
    }

    #mainNav .navbar-nav .nav-item .nav-link {
        margin: 0px 20px !important;
    }

    .wizard h1 {
        font-size: 25px;
    }

        .wizard h1 span {
            margin: 0px;
        }
}

@media (max-width: 525px) {
    #hero-card {
        height: auto;
        background-color: transparent;
        border: none !important;
    }

    #hero .side {
        position: relative;
        display: block;
        width: auto;
    }

    #hero #side1 {
        height: 80vh;
        border-radius: 12px;
    }

    #hero #carousel, #hero #carousel .item {
        height: 80vh;
    }

    #hero #side2 {
        height: auto;
        border-radius: 12px;
        background-color: #fff;
        border-radius: 12px;
        border: 1px solid var(--gray);
        margin-top: 20px;
    }

    #hero #side2 .div-form {
        min-height: unset !important;
    }

    .title {
        font-size: 25px;
    }
    
    .wizard h1 {
        font-size: 25px;
    }

    .wizard h1 span {
        margin: 0px;
    }

    .wizard .rodape {
        position: relative;
        margin-top: 20px;
        width: 100%;
        left: 0px;
    }

    .card .card-item-icon {
        height: 50px;
        width: 50px;
        padding: 20px;
    }

    .card .card-item-icon i {
        font-size: 32px;
    }

    .div-form .col-lg-2 .form-control {
        padding: 16px !important;
    }

    .table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th {
        font-size: 13px;
        line-height: 15px;
    }
}

.ou {
    position: relative;
    text-align: center;
    margin: 8px 0px;
}

    .ou::before {
        content: "";
        height: 1px;
        background-color: #eee;
        width: 100%;
        position: absolute;
        z-index: 0;
        top: 50%;
        left: 0px;
    }

    .ou span {
        background-color: #fff;
        display: inline-block;
        padding: 5px;
        z-index: 1;
        position: relative;
    }

.btn-white.govbr {
    text-align: center;
    text-transform: unset;
    display: flex;
    align-items: center;
    justify-content: center;
}

.govbr img {
    max-width: 62px;
    margin-left: 5px;
}