* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

.desktop {
    display: block;
}

.mobile {
    display: none;
}

html {
    min-height: 100vh;
}

body {
    background-image: url('../images/background_desktop.png');
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
}

main {
    min-height: 100vh;
}

.max-width-content {
    max-width: 1280px;
    min-height: 100vh;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 0 16px;
}

.inscription-section {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    min-height: 100vh;
}

.inscription-section .inscription-left {
    display: flex;
    flex-direction: column;
    margin: 88px 0 88px 0;
    min-width: 485px;
    overflow: hidden;
}

.inscription-section .inscription-right {
    align-self: flex-end;
}

.inscription-section .inscription-right img {
    max-width: 603px;
    width: 100%;
}

.inscription-section .banner {
    max-width: 271px;
    width: 100%;
}

.inscription-section h1 {
    font-size: 30px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    margin: 20px 0 0 0;
    line-height: 40px;
}

.inscription-section p {
    font-size: 16px;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    margin: 10px 0 0 0;
    line-height: 150%;
    max-width: 475px;
}

.inscription-section span {
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: #27D8DF;
    margin: 10px 0 0 0;
    display: inline-block;
    line-height: 150%;
    text-transform: uppercase;
}

.inscription-section ul {
    font-size: 16px;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
}

.inscription-section .form-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 485px;
    width: 100%;
    margin: 22px 0 0 0;
}

.inscription-section .container-ddi-input {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
    position: relative;
    transition: .5s all ease;
}

.inscription-section .form-container .input-name,
.inscription-section .form-container input[type="email"] {
    font-size: 14px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    height: 44px;
    width: 100%;
    border: 1px solid #C5C5C5;
    border-radius: 100px;
    padding: 12px 16px;
    outline: none;
}

.inscription-section .form-container .form-box-phonemask input {
    font-size: 14px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    height: 42px;
    width: 100%;
    border-radius: 100px;
    padding: 12px 16px;
    outline: none;
    border: none;
}

.inscription-section .form-container .input-ddi {
    font-size: 14px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    height: 44px;
    width: 100px;
    border: 1px solid #C5C5C5;
    border-radius: 100px;
    padding: 12px 16px;
    outline: none;
    position: absolute;
    top: 0;
    transform: translateX(-110px);
    transition: .5s all ease;
}

.inscription-section .form-container .input-terms {
    font-size: 11px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
    accent-color: #27D8DF;
    transition: all 0.2s ease;
    cursor: pointer;
}

.inscription-section .form-container .form-box-phonemask {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    background-color: #ffffff;
    height: 44px;
    border: 1px solid #C5C5C5;
    border-radius: 100px;
    padding: 12px 16px;
    transition: .5s all ease;
}

.inscription-section .form-container .dropdown-toggle {
    background-color: #ffffff;
    border: none;
    padding-left: 0px;
}

.inscription-section .form-container .dropdown-toggle::after {
    border: none !important;
    margin-left: 0 !important;
    vertical-align: middle !important;
    content: url('../images/arrow-down.svg');
    position: absolute;
    right: -15px;
    top: 58%;
    transform: translateY(-50%);
}

.inscription-section .form-container .dropdown-toggle:active {
    background-color: #ffffff !important;
}

.inscription-section .form-container .dropdown-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.inscription-section .dropdown img {
    height: 24px;
    width: 24px;
}

.input-submit {
    font-size: 18px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: #040301;
    background-color: #44F152;
    box-shadow: 0px 0px 6px 0px #0000004D;
    box-shadow: 0px 9px 9.4px 0px #285F5F33 inset;
    padding: 14px;
    width: 100%;
    border-radius: 50px;
    border: none;
    opacity: 100%;
    transition: .3s all ease;
}

.input-submit:disabled {
    opacity: 50%;
}

.error-modal,
.loading-modal {
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    overflow: auto;
    opacity: 0;
    transition: visibility, opacity .5s linear;
    visibility: hidden
}

.error-modal {
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .4)
}

.error-modal-content {
    background-color: #fefefe;
    padding: 20px;
    width: 30%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px
}

.error-modal-header {
    display: flex;
    justify-content: right;
    align-items: center;
    flex-direction: column;
    width: 100%
}

.error-modal-close,
.loading-modal-close {
    text-align: right;
    width: 100%
}

.error-modal-title,
.loading-modal-title {
    font-family: Alegreya Sans;
    font-size: 30px;
    font-weight: 800;
    line-height: 33px;
    letter-spacing: -.01em;
    text-align: center;
    color: #1a1a1a
}

.error-modal-description,
.loading-modal-description {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    line-height: 17.6px;
    letter-spacing: -.01em;
    text-align: center;
    color: #6d6d6d
}

.loading-modal {
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .7)
}

.loading-modal-content {
    padding: 20px;
    width: 30%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px
}

.loading-modal-content .modal-header {
    border-bottom: none !important
}

.loading-modal-content .modal-header img {
    width: 100px;
}

.loading-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%
}

.btn-close-error-modal {
    cursor: pointer;
}

.loading-modal-btn {
    width: auto;
    padding: 10px 30px;
    color: #fff;
    background-color: #00c174;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0;
    margin-bottom: 10px
}

.loading-modal-btn a {
    text-decoration: none;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center
}

.loading-modal-btn:nth-child(5) {
    margin-bottom: 0
}

.loading-modal-btn img {
    margin-right: 10px
}

.loading-modal-btn-text {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: center
}

@media screen and (max-width: 980px) {
    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }

    body {
        background-image: url('../images/background_mobile.png');
        background-repeat: no-repeat;
        background-size: cover;
        min-height: 100vh;
    }

    .max-width-content {
        padding: 68px 16px 0px 16px;
    }

    .inscription-section {
        flex-direction: column;
        align-items: center;
    }

    .inscription-section .inscription-right {
        align-self: inherit;
    }

    .inscription-section .inscription-left {
        margin: 0px;
        min-width: inherit;
    }

    .inscription-section .banner {
        max-width: 154px;
    }

    .inscription-section h1 {
        font-size: 25px;
        margin-top: 15px;
        line-height: 130%;
    }

    .inscription-section p {
        font-size: 14px;
        line-height: 150%;
    }

    .inscription-section span {
        margin-top: 15px;
    }

    .inscription-section ul {
        font-size: 14px;
    }

    .inscription-section .form-container {
        margin-top: 15px;
    }

    .inscription-section .form-container .input-terms {
        font-size: 12px;
    }

    .inscription-section .inscription-right img {
        margin-top: 10px;
    }
}

/* RESPONSIVIDADE DOS TÍTULOS MOBILE: */

@media screen and (max-width: 367px) {
    .mobile-p1 {
        font-size: 23px !important;
    }
}

@media screen and (max-width: 342px) {
    .mobile-p3 {
        font-size: 23px !important;
    }
}

@media screen and (max-width: 340px) {
    .mobile-p1 {
        font-size: 21px !important;
    }
}

@media screen and (max-width: 334px) {
    .mobile-p4 {
        font-size: 23px !important;
    }
}

@media screen and (max-width: 317px) {
    .mobile-p3 {
        font-size: 21px !important;
    }
}

@media screen and (max-width: 314px) {
    .mobile-p1 {
        font-size: 19px !important;
    }
}

@media screen and (max-width: 310px) {
    .mobile-p4 {
        font-size: 21px !important;
    }
}

@media screen and (max-width: 310px) {
    .mobile-p6 {
        font-size: 23px !important;
    }
}