/* FONTES */
@font-face {
    font-family: latam-light;
    src: url("./fontes/LatamSans-Light.otf");
}

@font-face {
    font-family: latam-regular;
    src: url("./fontes/LatamSans-Regular.otf");
}

@font-face {
    font-family: latam-bold;
    src: url("./fontes/LatamSans-Bold.otf");
}

@font-face {
    font-family: latam-black;
    src: url("./fontes/LatamSans-Black.otf");
}

* {
    margin: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    background-color: #ffffff;
    -webkit-text-size-adjust: none;
    display: flex;
    flex-flow: column;
}

h3,
span,
label,
p,
button,
input,
select {
    font-family: latam-regular;
    font-size: 14px;
}

b {
    font-family: latam-bold;
    font-size: 14px;
}

button {
    user-select: none;
    cursor: pointer;
}

.relative {
    position: relative;
}

.display-none {
    display: none;
}

#loading_origem,
#loading_destino {
    position: absolute;
    right: 0;
    top: 0;
    width: 45px;
    height: max-content;
    z-index: 101;
    background-color: #ffffff;
    border-radius: 0 8px 8px 0;
    margin: 10px 0 0 0;
}

#loading_1 {
    margin: 0 auto;
    display: none;
    height: 50px;
    box-sizing: border-box;
    align-items: center;
    background-color: rgba(0, 0, 0, 0);
    z-index: 10;
}

#loading_1 div {
    height: 50px;
    margin: auto;
    display: flex;
    flex-flow: column;
}

#loading_1 span {
    margin: auto;
    border-radius: 25px;
    min-width: 50px;
    min-height: 50px;
    max-width: 50px;
    max-height: 50px;
    animation: spin 0.35s linear infinite;
    border: 3px solid transparent;
    border-bottom-color: rgb(16, 0, 79);
    border-right-color: rgb(16, 0, 79);
}

#loading_1 label {
    font-family: latam-bold;
    font-size: 16px;
    color: rgb(16, 0, 79);
    margin: 10px 0 0 0;
}

#loading_2 {
    margin: 0 auto;
    display: none;
    height: 50px;
    box-sizing: border-box;
    align-items: center;
    background-color: rgba(0, 0, 0, 0);
    z-index: 10;
}

#loading_2 div {
    height: 50px;
    margin: auto;
    display: flex;
    flex-flow: column;
}

#loading_2 span {
    margin: auto;
    border-radius: 25px;
    min-width: 50px;
    min-height: 50px;
    max-width: 50px;
    max-height: 50px;
    animation: spin 0.35s linear infinite;
    border: 3px solid transparent;
    border-bottom-color: rgb(16, 0, 79);
    border-right-color: rgb(16, 0, 79);
}

#loading_2 label {
    font-family: latam-bold;
    font-size: 16px;
    color: rgb(16, 0, 79);
    margin: 10px 0 0 0;
}

#loading_3 {
    position: fixed;
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 0.98);
    display: none;
    flex-flow: column;
    z-index: 11;
}

#loading_3 div {
    height: 50px;
    margin: auto;
    display: flex;
    flex-flow: column;
}

#loading_3 span {
    margin: auto;
    border-radius: 25px;
    min-width: 50px;
    min-height: 50px;
    max-width: 50px;
    max-height: 50px;
    animation: spin 0.35s linear infinite;
    border: 3px solid transparent;
    border-bottom-color: rgb(16, 0, 79);
    border-right-color: rgb(16, 0, 79);
}

#loading_3 label {
    font-family: latam-bold;
    font-size: 16px;
    color: rgb(16, 0, 79);
    margin: 10px 0 0 0;
}


#mini_loading {
    margin: 0 auto;
    display: flex;
    width: 25px;
    height: 25px;
    box-sizing: border-box;
    align-items: center;
    background-color: rgba(0, 0, 0, 0);
    z-index: 10;
}

#mini_loading>div {
    margin: auto;
    border-radius: 12.5px;
    width: 25px;
    height: 25px;
    animation: spin 0.35s linear infinite;
    border: 4px solid transparent;
    border-bottom-color: rgb(205, 16, 67);
    border-right-color: rgb(205, 16, 67);

}

#mini_loading_2 {
    margin: 0 auto;
    display: flex;
    width: 25px;
    height: 25px;
    box-sizing: border-box;
    align-items: center;
    background-color: rgba(0, 0, 0, 0);
    z-index: 10;
}

#mini_loading_2>div {
    margin: auto;
    border-radius: 12.5px;
    width: 25px;
    height: 25px;
    animation: spin 0.35s linear infinite;
    border: 4px solid transparent;
    border-bottom-color: #ffffff;
    border-right-color: #ffffff;

}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



footer {
    display: flex;
    flex-flow: column;
    flex-grow: 1;
    background-color: #ffffff;
    max-width: 100vw;
    box-sizing: border-box;
}

footer span {
    color: rgb(92, 92, 92) !important;
}

footer h3 {
    color: rgb(16, 0, 79) !important;
    margin: 10px 0 !important;
    font-size: 18px !important;
}

.footer-section-2 {
    display: flex;
    flex-wrap: wrap;
    height: max-content;
    border-top: solid 1px rgb(236, 236, 236);
    width: 70%;
    margin: 0 auto;
    padding: 50px 0;
}

.footer-section-2>div {
    display: flex;
    flex-flow: column;
    width: max-content;
}

.footer-section-2>div>div {
    display: flex;
    flex-flow: row;
    width: max-content;
}

.footer-section-2>div>div:first-of-type>img {
    width: 36px;
    height: 36px;
}

.footer-section-2>div span {
    margin: 0 0 10px 0;
}

.footer-section-2-div>img:first-of-type {
    max-width: 148px;
    max-height: 71px;
}

.footer-section-2-div>img:last-of-type {
    max-width: 48px;
    max-height: 48px;
}

.footer-section-2 .apps img {
    max-width: 148px;
    max-height: 71px;
}

.footer-section-2 .apps img:first-child {
    margin: 0 10px 0 0;
}

.footer-section-2-div hr {
    margin: 15px 0;
    border: none;
}

.footer-section-3 {
    margin: 75px auto;
    width: 70%;
}

.footer-section-4 {
    display: flex;
    align-items: center;
    background-color: rgb(236, 236, 238);
    border-top: solid 1px rgb(184, 184, 184);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.footer-section-4>div {
    display: flex;
    align-items: center;
    width: 70%;
    margin: 0 auto;
}

.footer-section-4 div {
    display: flex;
    align-items: center;
}

.quadrado {
    position: absolute;
    left: calc(100vw - 101px);
    bottom: -1px;
    min-width: 85px;
    max-width: 85px;
    min-height: 85px;
    max-height: 85px;
    background-color: transparent;
}

.triangulo {
    min-width: 85px;
    max-width: 85px;
    min-height: 85px;
    max-height: 85px;
    background-color: rgb(30, 8, 121);
    clip-path: polygon(0 0, 100% 0, 0 100%);
    transform: rotate(180deg);
}

.triangulo span {
    transform: rotate(134deg);
    color: #ffffff !important;
    margin-left: 10px;
    margin-top: -30px;
    font-size: 16px;
}

@media only screen and (min-width:913px) {

    /* DESKTOP */
    .footer-section-2>div:nth-of-type(1) {
        margin: 0 auto 0 0;
    }

    .footer-section-2>div:nth-of-type(2) {
        margin: 0 auto;
    }

    .footer-section-2>div:nth-of-type(3) {
        margin: 0 auto;
    }

    .footer-section-2>div:nth-of-type(4) {
        margin: 0 0 0 auto;
    }

    .footer-section-4>div>img {
        max-width: 148px;
        max-height: 71px;
    }

    .footer-section-4>div>span {
        max-width: 500px;
        margin: auto 25px;
    }

    .cert {
        margin: 0 0 0 auto;
    }

    .assoc {
        margin: 0 0 0 20px;
    }

    .cert img,
    .assoc img {
        width: 48px;
        height: 48px;
        margin: auto 10px;
    }
}

@media only screen and (max-width:912px) {

    /* MOBILE */
    .footer-section-2>div:nth-of-type(1) {
        margin: 0 auto 0 0;
    }

    .footer-section-2>div:nth-of-type(2) {
        margin: 0 auto 0 0;
    }

    .footer-section-2>div:nth-of-type(3) {
        margin: 0 auto 0 0;
    }

    .footer-section-2>div:nth-of-type(4) {
        margin: 0 auto 0 0;
    }

    .footer-section-2 {
        width: calc(100vw - 40px);
        margin: 0 auto;
        padding: 10px 0 50px;
    }

    .footer-section-2>div h3 {
        margin-top: 25px !important;
    }

    .footer-section-3 {
        margin: 0 auto 50px;
        width: calc(100vw - 40px);
    }

    .footer-section-4 {
        display: flex;
        flex-flow: column;
    }

    .footer-section-4>div {
        display: flex;
        flex-flow: column;
        width: 100vw;
        box-sizing: border-box;
    }

    .footer-section-4>div>img {
        max-width: 148px;
        max-height: 71px;
    }

    .footer-section-4>div>span {
        margin: 25px;
        text-align: center;
    }

    .cert {
        margin: 10px auto;
        display: flex;
        flex-flow: column;
    }

    .assoc {
        margin: 20px auto;
        display: flex;
        flex-flow: column;
    }

    .cert span,
    .assoc span {
        margin: 0 0 10px;
    }

    .cert img,
    .assoc img {
        width: 48px;
        height: 48px;
        margin: auto 10px;
    }

    .quadrado {
        left: calc(100vw - 84px) !important;
    }
}