/*********************************
* ************* BOOT *************
******************************** */
* {
    font-family: 'Inter', sans-serif;
}

body {
    background-image: url("../../img/bg.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
}

/*********************************
* ******** REUTILIZÁVEIS *********
******************************** */
/* Forms */
.form {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.form_label_box {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: start;
}

.form_label {
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.form_label:last-child {
    margin-bottom: 0;
}

.form_label_two {
    width: calc(50% - 10px);
}

.form_text {
    font-size: var(--textSize14);
    color: var(--color-title);
    display: block;
    padding-bottom: 9px;
    width: 100%;
}

.form_text_info {
    font-size: var(--textSize13);
    color: var(--color-gray-60);
    display: block;
    padding-top: 4px;
}

.form_input {
    width: 100%;
    font-size: var(--textSize16);
    height: 50px;
    color: var(--color-title);
    padding: 0 20px;
    border: 1px solid var(--color-border);
    outline: none;
    resize: none;
    border-radius: var(--border-radius);
    background: var(--color-input-bg);
}

.form_input_area {
    height: 150px;
    padding: 20px;
}

.form_input:focus {
    border: 2px solid var(--color-input-focus);
}

.form_input.disabled {
    background: var(--color-input-bg);
}

.form_label_info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form_label_info .form_text{
    padding-bottom: 0;
}

.form_label_inputs{
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    position: relative;
    align-items: center;
}

.form_label_inputs .form_input.left{
    padding-left: 50px;
}

.form_label_inputs .form_input.right{
    padding-right: 50px;
}


.form_label_inputs_icon{
    position: absolute;
    display: flex;
    color: var(--color-gray-70);
}

.form_label_inputs_icon.left{
    font-size: var(--textSize18);
    left: 20px;
}

.form_label_inputs_icon.right{
    font-size: var(--textSize18);
    right: 20px;
}

.form_label_inputs_icon.password {
    cursor: pointer;
}

.form_label_inputs_icon.money {
    font-weight: 600;
    font-size: var(--textSize15);
}

.form_label_inputs_icon.percentage {
    font-weight: 600;
    font-size: var(--textSize17);
}

.form_label select {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: url("data:image/svg+xml,%3Csvg width='14' height='8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m1 1 6 6 6-6' stroke='%235A5A5A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") right 20px center no-repeat;
    cursor: pointer;
    padding-right: 40px;
}

.form_label select option,
select option {
    color: var(--color-title);
    background-color: var(--color-input-bg);
}

.switch {
    display: inline-block;
    height: 22px;
    position: relative;
    width: 44px;
}

.switch input {
    display:none;
}

.slider {
    background-color: var(--color-border);
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
}

.slider:before {
    background-color: var(--color-white);
    bottom: 3px;
    content: "";
    height: 16.5px;
    left: 3px;
    position: absolute;
    transition: .4s;
    width: 16.5px;
}

.switch input:checked + .slider {
    background-color: var(--color-primary);
}

.switch input:checked + .slider:before {
    transform: translateX(21px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Buttons */
.btn {
    display: inline-block;
    border: none;
    text-decoration: none;
    font-size: var(--textSize15);
    color: var(--color-white);
    background: #666;
    border-radius: var(--border-radius);
    padding: 0 35px;
    height: 50px;
    line-height: 50px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
}

.btn-default {
    background: var(--color-secondary);
    color: var(--color-primary);
}

.btn-default:hover {
    background: var(--color-secondary-dark);
}

.btn-outline{
    background: transparent;
    border: 1px solid #666;
    color: #666;
}

/* Loading */
.mask_load {
    background: rgba(23, 2, 55, 0.8) !important;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 9999999999999999999999999;
    display: none;
}

.mask_load img{
    margin: auto;
    height: 90px;
}

/*********************************
* *********** CONTEÚDO ***********
******************************** */
/* Bar */
.bar{
    background: url("../../img/bar.svg");
    width: 100%;
    height: 5px;
    position: absolute;
    top: 0;
}

/* Formulário */
.form_box{
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    height: 100%;
    position: absolute;
}

.form_box_center{
    margin: auto;
    width: 500px;
    max-width: 90%;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 70px;
}

.form_box_center_main{
    background: var(--color-white);
    border-radius: var(--border-radius);
}

.form_box_header{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 25px 20px;
    border-bottom: 1px solid var(--color-border);
    width: 100%;
    text-align: center;
}

.form_box_header h1{
    font-size: var(--textSize22);
    font-weight: 600;
    color: var(--color-gray-90);
    padding: 0px 60px;
}

.form_box_main{
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
}

.form_box_main .btn{
    width: 100%;
    background: #E6156A;
    color: #fff;
}

/* Obrigado */
.obrigado_main{
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    height: 100%;
    position: absolute;
}

.obrigado_center{
    margin: auto;
    width: 500px;
    max-width: 90%;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 100px;
}

.obrigado_text{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.obrigado_text h1{
    font-size: 66px;
    color: var(--color-gray-90);
}

.obrigado_text h3{
    font-size: 30px;
    font-weight: 400;
    color: var(--color-gray-70);
    margin-top: 15px;
}

.obrigado_btn{
    margin-top: 50px;
    background: #E6156A;
    display: flex;
    align-items: center;
    gap: 8px;
}

/*********************************
* *********** COOKIES *************
******************************** */
.cookies {
    color: var(--color-gray-90);
    position: fixed;
    width: 100%;
    bottom: 0;
    z-index: 99;
    font-size: var(--textSize14);
    line-height: 22px;
    box-shadow: 0 4px 70px rgba(2, 33, 23, 0.2);
    background: var(--color-white);
    display: flex;
}

.cookies_wrapper {
    padding: 30px 40px;
    margin: auto;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(1rem);
    animation: slideUp 0.5s forwards;
}

.cookies_wrapper p {
    padding-right: 40px;
    margin-bottom: 0;
}

@keyframes slideUp {
    to {
        transform: initial;
        opacity: initial;
    }
}

.cookies_btn {
    background: #E6156A;
    color: var(--color-white);
    cursor: pointer;
    border: none;
    padding: 0.8rem 50px;
    font-size: var(--textSize14);
    font-weight: bold;
    text-transform: uppercase;
    border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    -webkit-border-radius: var(--border-radius);
}

.cookies_btn:hover {
    background: var(--color-primary-dark);
}

/*********************************
* ******** MEDIA QUERIES *********
******************************** */
/* Media Queries */
/* 1200 */
@media (max-width: 1200px) {
    
}

/* 991 */
@media (max-width: 991px) {
    /* Cookies */
    .cookies_wrapper {
        flex-wrap: wrap;
    }

    .cookies_wrapper p {
        width: 100%;
        text-align: center;
        padding-bottom: 25px;
        padding-right: 0;
    }

    .cookies_btn {
        width: 100%;
    }
}

/* 560 */
@media(max-width: 560px){
    .form_box_center{
        gap: 40px;
    }

    .form_box_header{
        padding: 20px 15px;
    }

    .form_box_main{
        padding: 20px;
    }

    .obrigado_center{
        gap: 50px;
    }

    .obrigado_text h1{
        font-size: 46px; 
    }

    .obrigado_text h3 {
        font-size: 24px;
    }

    .obrigado_btn{
        margin-top: 30px;
    }
}