@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');

:root {
    --lightgrey: #F5F5F5;
    --grey: #D9D9D9;
    --darkgrey: #58595B;
    --orange: #FF5900;
    --Dgrey: #333;
    --black: #000;
}


body {
    margin: 0;
    padding: 0;
    font-family: "Space Grotesk", sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
    overflow-x: hidden !important;
    height: 100vh;
}

a:hover {
    color: #000000;
}

#section-ads {
    display: flex;
    justify-content: center;
    width: 100%;
}

#section-ads a {
    width: unset;
    padding: 20px;
}

/* -----Section 0 */
#section-0 {
    /* background-image: url(/img/Header-bg.png);
  background-size: cover; */
    background-color: rgba(0, 0, 0, 0.0);
    max-width: 500px;
    height: 100vh;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: flex-end;
    z-index: 1;
    padding-bottom: 2%;
}

#Himg {
    position: absolute;
    bottom: -50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -10;
    filter: none !important;
}

#Bk {
    position: absolute;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: #000000;
}


#Bk video {
    position: absolute;
    top: -20%;
    z-index: 0;
    width: 100vw;
    height: auto;
    filter: blur(10px);
    opacity: .5;
}

#section-0 #logo {
    max-width: 100%;
}

#section-0 h1 {
    margin-top: 75px;
    color: #FFF;
    font-size: 50px;
    font-style: italic;
    font-weight: 400;
    line-height: 50px;
    /* 100% */
    max-width: 623px;
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid var(--darkgrey);
    border-bottom-color: var(--orange);
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* -------Form styles */
.forms-wrapper {
    max-width: 100vw;
    padding: 0;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

#contactform {
    min-width: 300px;
    max-width: 400px;
    min-height: 340px;
    max-height: 700px;
    border-radius: 25px;
    border: 4px solid #FF5900;
    background: #FFF;
    padding: 0;
    color: black;
    width: 95%;
    padding-bottom: 20px;
}

#contactform p {
    font-family: 16px;
    line-height: normal;
    margin-bottom: 10px;
    text-align: center;
}

#contactform h1 {
    color: #FF5900;
    text-align: center;
    font-size: 25px;
    font-style: normal;
    line-height: normal;
    margin: 45px 0 0;
    font-weight: 500;
    text-wrap: balance;
}

#contactform h3 {
    margin: 0 0 -10px;
    color: #FFFFFF;
    background: #FF5900;
    text-align: center;
    font-size: 24px;
    padding: 15px;
    border-radius: 10px 10px 0 0;
    text-wrap: balance;

    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    /* 100% */
}

.step-loader {
    height: 100%;
}

.form-title p {
    color: var(--purple);
    font-size: 15px;
    font-weight: 400;
    max-width: 80%;
    line-height: 1.1;
    margin: 0 auto 20px auto;
}

input[type="radio"] {
    display: none;
}

.radio-group label {
    display: flex;
    align-items: center;
    cursor: pointer;
    background: var(--orange);
    padding: 15px 20px;
    max-width: 300px;
    height: 60px;
    margin: 10px;
    transition: all 0.5s;
    border-radius: 60px;
    color: white;
    font-size: 16px;
    font-style: normal;
    line-height: normal;
    text-align: left;
    font-weight: 400;
}

.radio-group label b {
    color: #FFF;
    text-align: center;
    font-family: "Space Grotesk";
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding-right: 10px;
}

/*#step-2 .radio-group label{
  width: 40%;
}*/

.radio-group label span {
    font-size: 50px;
    font-weight: bold;
}

.radio-group label:hover {
    transform: scale(1.05);
}

.radio-group label img {
    height: 40px;
    padding: 0 15px;
}

input[type="radio"]:checked+label,
.radio-group label:hover {
    /* cenasssss*/
}

.form-control,
.formulario-select select {
    width: 100%;
    background: white;
    border-radius: 100px;
    border: 3px solid var(--orange);
    width: 100%;
    height: 45px;
    font-size: 16px !important;
    color: var(--black);
    padding: 0 0 0 25px;
    font-weight: normal;
    margin: 4px 0;
    -webkit-appearance: none;
}

.form-control {
    color: #000;
}

.formulario-select select {
    color: #000;
}

.form-control::placeholder,
.formulario-select select::placeholder {
    color: #000;
    opacity: 1;
}

.formulario-select select {
    /* remove native arrow */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image: url('/img/arrow-down.svg');
    background-repeat: no-repeat;
    background-position: right 0.75em center;
    background-size: 1em;
}

.terms-text label {
    display: flex;
    gap: 10px;
    color: #fff;
    align-items: center;
    justify-content: center;
}

.terms-text label,
.terms-text a {
    color: #000;
}

.terms-text label.error {
    color: red;
}

.terms-text label {
    font-size: 11px;
    font-weight: 400;
    margin-bottom: 0;
}

.terms-text a {
    font-weight: 500;
    text-decoration: underline;
}

.terms-text {
    text-align: center;
    margin-bottom: 10px;
}

.terms-text .path {
    stroke: var(--orange);
}

.containerCheck {
    cursor: pointer;
    margin-right: 5px;
    color: var(--orange);
}

.containerCheck input {
    display: none;
}

.containerCheck svg {
    overflow: visible;
}

.path {
    fill: none;
    stroke: white;
    stroke-width: 10;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke-dasharray 0.5s ease, stroke-dashoffset 0.5s ease;
    stroke-dasharray: 241 9999999;
    stroke-dashoffset: 0;
}

.containerCheck input:checked~svg .path {
    stroke-dasharray: 70.5096664428711 9999999;
    stroke-dashoffset: -262.2723388671875;
}

label.error {
    color: red;
    font-size: 12px;
    margin: 0;
    margin-top: 5px;
    display: block;
}

.inputContainer {
    max-width: 320px;
}

.inputContainer input {
    border: 2px solid var(--orange);
    border-radius: 10px;
    padding: 5px 12px;
    min-height: 40px;
    font-size: 14px;
}

/* force all invalid inputs/selects to be black*/
input:invalid,
select:invalid,
textarea:invalid {
    color: #000;
}

input:invalid::placeholder,
select:invalid::placeholder,
textarea:invalid::placeholder {
    color: #000;
    opacity: 1;
    /* Firefox needs this */
}


.politica-privacidade:hover {
    color: var(--orange);
}

.modal-footer {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-header {
    justify-content: space-between !important;
}

.close:hover {
    filter: brightness(0) saturate(100%) invert(37%) sepia(81%) saturate(2631%) hue-rotate(1deg) brightness(105%) contrast(105%);
}

.form-button {
    position: relative;
    width: 200px;
    height: 50px;
    border-radius: 50px;
    border: none;
    background: var(--orange);
    border: 4px solid var(--orange);
    color: white;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s;
}

.form-button:hover {
    transform: scale(1.05);
    background: white;
    border: 4px solid #FF5900;
    color: var(--orange);
}

.error,
#term-error {
    color: red;
    font-size: 12px;
    line-height: 1;
}

.form-control:focus,
.form-control:focus-visible {
    border-color: var(--black);
    box-shadow: none;
    outline: none;
}

/* Thank you Page */
.ty-content {
    margin-block: 10px;
}

.TY {
    max-width: 100% !important;
    overflow-y: scroll;
    height: 95vh;
}

.TY::-webkit-scrollbar {
    width: 6px;
    height: 90%;
}

.TY::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
    height: 90%;
}

.TY::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
    height: 90%;
}

.TY::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* For Firefox */
.TY {
    scrollbar-width: thin;
    scrollbar-color: #888 #fff;
}

.logo {
    width: 100%;
    max-width: 250px;
    margin-block: 20px;
}

.msg {
    background-color: var(--orange);
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.msg * {
    color: white !important;
    text-align: center;
}

.msg h1 {
    font-size: 24px !important;
}

.msg span {
    font-size: 14px;
    text-align: center;
}

.tittle h1 {
    color: black !important;
    font-size: 30px !important;
    padding: 15px 0 4px;
}

.icons-wrapper {
    margin-block: 8px;
}

.icons {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    max-width: 100px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    margin-inline: 5px;
}

.icons img {
    width: 40px;
    height: 40px;
    margin: 5px 0;
}

.custom-accordion {
    background-color: #fff;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
}

.custom-accordion .accordion-item {
    border: none;
}

.custom-accordion .accordion-header {
    border-bottom: 2px solid var(--orange);
}

.custom-accordion .accordion-button {
    background: transparent !important;
    box-shadow: none;
    border: none;
    padding: 15px 15px 8px;
    color: #000;
    position: relative;
}

.custom-accordion .accordion-button::after {
    background-image: none !important;
    display: block;
    width: auto;
    height: auto;
}

.custom-accordion .accordion-button.collapsed::after {
    content: '+';
    font-size: 1.25rem;
    color: var(--orange);
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    content: '−';
    font-size: 1.25rem;
    color: var(--orange);
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.custom-accordion .accordion-body {
    padding: 10px 10px 0;
    color: #333;
    line-height: 1.5;
}

/* Firefox */
.TY {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* WebKit (Chrome, Safari, Edge) */
.TY::-webkit-scrollbar {
    display: none;
}

.radio-group {
    margin-block: 15px 0;
}

.sabe-mais-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.submit-wrapper {
    display: flex;
    justify-content: center;
}

.particular {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.error-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* particular */
.particular__message,
.error__message {
    margin-top: 20px;
    text-align: center;
    text-wrap: balance;
    font-size: 18px;
    max-width: 90%;
    margin: 20px auto;
}

@media (max-width: 500px) {
    #Bk {
        display: none;
    }

    #section-0 {
        height: 100vh;
        width: 100%;
    }

    #section-ads {
        margin-top: 7px;
        display: flex;
        justify-content: center;
        width: 100%;
        align-items: center;
    }
}

@media (max-width: 380px) {
    .radio-group label {
        font-size: 14px;
    }

    #contactform {
        padding: 30px 20px;
    }
}