html {
    scroll-behavior: smooth;
}

/* .container {
    width: var(--container-width);
    max-width: var(--container-max-width);
	padding: var(--block-default-padding);
    margin: 0 auto;
} */

.container {
    width: 90%;
    max-width: 1216px;
    margin: 0 auto;
}

@media (max-width: 425px) {
    .container {
        width: 95%;
        margin: 0 auto;
    }
}

* {
    box-sizing: border-box;
    position: relative;
    margin: 0;
    padding: 0;
    text-decoration: none;
    font-family: "Poppins";
}

body {
    margin: 0 auto;
    font-family: var(--font-family-default);
    color: var(--text-color);
    font-size: var(--font-size-md);
}

button {
    border: none;
    background-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--title-font);
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 2em;
}

h3 {
    font-size: 40px;
    font-weight: 600;
    line-height: 50px;
}

h4 {
    font-size: 32px;
    font-weight: 600;
    line-height: 125%;
}

h5 {
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
}

h6 {
    font-family: var(--title-font);
    font-size: 20px;
    font-weight: 600;
    line-height: 25px;
}

p,
li,
a {
    font-family: var(--text-font);
    font-size: var(--font-size-sm);
    color: var(--color-black);
    line-height: var(--line-height-p);
}

@media (max-width: 1199px) {

    h1,
    h3 {
        font-size: 32px;
    }

    h5 {
        font-size: 18px;
    }

    label {
        font-size: 14px !important;
    }

    h4 {
        font-size: 24px;
        line-height: 30px;
    }
}

label {
    font-family: var(--text-font);
    font-size: var(--font-size-input);
    line-height: var(--line-height-p);
    margin-bottom: 8px;
    border-radius: 4px;
}

.link {
    color: var(--primary-color);
    transition: var(--transition);
    font-size: 14px;
    text-decoration: underline;
    font-family: var(--text-font);
}

.link:hover {
    filter: var(--cta-hover-filter);
    opacity: var(--cta-hover-opacity);
}

a img {
    vertical-align: middle;
}

span {
    color: var(--primary-color);
}

.btn {
    padding: 12px 16px;
    cursor: pointer;
    background-color: var(--secondary-color);
    font-family: var(--font-button);
    font-size: var(--font-size-button);
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    color: var(--color-white);
    border: none;
    border: 1px solid var(--secondary-color);
    border-radius: 6px 14px;
    text-align: center;
    font-size: var(--font-size-textos);
    justify-content: center;
    align-items: center;
    display: flex;
    gap: 7px;
}

.btn[disabled] {
    pointer-events: none;
    opacity: 0.7;
    background-color: #d3d3d3;
    border: none;
    color: black;
}

.btn:hover {
    filter: var(--cta-hover-filter);
    opacity: var(--cta-hover-opacity);
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
}

.btn-default {
    padding: 16px 48px;
    cursor: pointer;
    background-color: var(--secondary-color);
    font-family: var(--font-button);
    font-size: var(--font-size-button);
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    color: var(--color-white);
    border: none;
    text-align: center;

    outline: none !important;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    border-radius: 6px 14px;
}

.btn-default:hover {
    filter: var(--cta-hover-filter);
    opacity: var(--cta-hover-opacity);
    background-color: var(--primary-color);
    border-radius: 6px 14px;
}

.btn-default--transparent {
    background-color: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    border-radius: 6px 14px;
    font-family: var(--font-button);
    font-size: var(--font-size-button);
    padding: 12px 32px;
    transition: var(--transition);
}

.btn-default--transparent:hover {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--color-white);
    border-radius: 6px 14px;
}

/* 
.btn-default:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    z-index: -1;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.btn-default:hover:after {
    top: auto;
    bottom: 0;
    height: 100%;
} */

.btn-md {
    padding: var(--spacing-md);
}

.btn-sm {
    padding: var(--spacing-sm);
    font-size: var(--font-size-xs);
    border-radius: 0;
}

.btn-lg {
    padding: var(--spacing-lg) var(--spacing-xg);
    max-width: 100%;
    font-size: var(--font-size-md);
    border-radius: 0;
}

.text-xs,
.text-sm,
.text-md,
.text-lg,
.text-xg {
    font-family: var(--font-family-text);
}

.text-xs {
    font-size: var(--font-size-xs);
}

.text-sm {
    font-size: var(--font-size-sm);
}

.text-md {
    font-size: var(--font-size-md);
}

.text-lg {
    font-size: var(--font-size-lg);
}

.text-xg {
    font-size: var(--font-size-xg);
}

.text-primary,
.text-hover-primary:hover {
    color: var(--primary-color);
}

.text-secondary,
.text-hover-secondary:hover {
    color: var(--secondary-color);
}

.text-light,
.text-hover-light:hover {
    color: var(--color-light);
}

.text-success,
.text-hover-success:hover {
    color: var(--color-success);
}

.text-danger,
.text-hover-danger:hover {
    color: var(--color-danger);
}

.text-bold {
    font-weight: bold;
}

.text-underline {
    text-decoration: underline;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.bg-primary,
.bg-hover-primary:hover {
    background-color: var(--primary-color);
    color: var(--primary-color);
    border: 1px solid transparent;
}

.bg-secondary,
.bg-hover-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--color-on-secondary);
    border: 1px solid transparent;
}

.bg-light,
.bg-hover-light:hover {
    background-color: var(--color-light);
    color: var(--color-on-light);
    border: 1px solid transparent;
}

.bg-success,
.bg-hover-success:hover {
    background-color: var(--color-success);
    color: var(--color-on-success);
    border: 1px solid transparent;
}

.bg-danger,
.bg-hover-danger:hover {
    background-color: var(--color-danger);
    color: var(--color-on-danger);
    border: 1px solid transparent;
}

.outline-primary {
    background-color: var(--primary-color);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.outline-secondary {
    background-color: var(--color-on-secondary);
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.outline-light {
    background-color: var(--color-on-light);
    color: var(--color-light);
    border: 1px solid var(--color-light);
}

.outline-success {
    background-color: var(--color-on-success);
    color: var(--color-success);
    border: 1px solid var(--color-success);
}

.outline-danger {
    background-color: var(--color-on-danger);
    color: var(--color-danger);
    border: 1px solid var(--color-danger);
}

.input {
    border: 1px solid var(--color-cinza-escuro);
    padding: var(--input-spacing) !important;
    font-family: var(--input-font-family);
    color: var(--color-dark-gray);
    font-size: var(--font-size-sm);
    font-weight: var(--w-400);
    line-height: 22.5px;
    width: 100%;
    border-radius: 4px;
}

.textarea {
    border: 1px solid var(--color-cinza-escuro);
    padding: var(--input-spacing);
    font-family: var(--input-font-family);
    color: var(--color-dark-gray);
    font-size: var(--font-size-sm);
    font-weight: var(--w-400);
    line-height: 22.5px;
    border-radius: 4px;
    height: 100px;
}

select.input {
    padding: calc(var(--input-spacing) - 0.05rem);
}

.input,
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-padding-start: var(--input-spacing);
    -webkit-padding-after: var(--input-spacing);
    -webkit-padding-before: var(--input-spacing);
    -webkit-padding-end: var(--input-spacing);
}

select {
    background: url(../../../images/svgs/select-arrow.svg) no-repeat 95%/15px,
        #ffffff 100% 100%;
}

.full {
    width: 100%;
}

.content-left {
    display: flex;
    justify-content: flex-start;
    text-align: left;
}

.content-right {
    display: flex;
    justify-content: flex-end;
    text-align: right;
}

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

.content-evenly {
    display: flex;
    justify-content: space-evenly;
    text-align: center;
}

.content-between {
    display: flex;
    justify-content: space-between;
}

.space-between {
    justify-content: space-between;
}

.vertical-middle {
    align-items: center;
    display: flex;
}

.vertical-top {
    display: flex;
    align-items: flex-start;
}

.vertical-bottom {
    display: flex;
    align-items: flex-end;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.center-margin {
    margin: 0 auto;
}

.flex-column {
    flex-direction: column;
}

.gap-sm {
    gap: var(--spacing-sm);
}

.gap-md {
    gap: var(--spacing-md);
}

.gap-med {
    gap: 24px;
}

.gap-xg {
    gap: var(--spacing-xg);
}

.a11y {
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

@media screen and (min-width: 1200px) {

    .hide-desktop,
    .only-mobile,
    .only-tablet {
        display: none !important;
    }
}

@media screen and (max-width: 1199px) and (min-width: 768px) {

    .hide-tablet,
    .only-mobile,
    .only-desktop {
        display: none !important;
    }
}

@media screen and (max-width: 850px) {

    .hide-mobile,
    .only-tablet,
    .only-desktop {
        display: none !important;
    }

    .col-lg-1,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12 {
        width: 100%;
    }
}

ul,
ol,
dl {
    list-style: none;
    padding: 0;
    display: flex;
    /* gap: var(--spacing-md); */
    flex-direction: column;
}

ul.horizontal,
ol.horizontal,
dl.horizontal {
    flex-direction: row;
}

.flex {
    display: flex;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.row--nowrap {
    flex-wrap: nowrap;
}

.align-items-center {
    align-items: center;
}

.col-sm-1 {
    width: 8.33333%;
}

.col-sm-2 {
    width: 16.66667%;
}

.col-sm-3 {
    width: 25%;
}

.col-sm-4 {
    width: 33.33333%;
}

.col-sm-5 {
    width: 41.66667%;
}

.col-sm-6 {
    width: 50%;
}

.col-sm-7 {
    width: 58.33333%;
}

.col-sm-8 {
    width: 66.66667%;
}

.col-sm-9 {
    width: 75%;
}

.col-sm-10 {
    width: 83.33333%;
}

.col-sm-11 {
    width: 91.66667%;
}

.col-sm-12 {
    width: 91.66667%;
}

.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

@media screen and (min-width: 850px) {
    .col-lg-1 {
        width: 8.33333%;
    }

    .col-lg-2 {
        width: 16.66667%;
    }

    .col-lg-3 {
        width: 25%;
    }

    .col-lg-4 {
        width: 33.33333%;
    }

    .col-lg-5 {
        width: 41.66667%;
    }

    .col-lg-6 {
        /* width: 50%; */
        width: 48%;
    }

    .col-lg-7 {
        width: 58.33333%;
    }

    .col-lg-8 {
        /* width: 66.66667%; */
        width: 65%;
    }

    .col-lg-9 {
        width: 75%;
    }

    .col-lg-10 {
        width: 83.33333%;
    }

    .col-lg-11 {
        width: 91.66667%;
    }

    .col-lg-12 {
        width: 100%;
    }
}

.wait p,
.wait span,
.wait strong,
.wait em,
.wait li,
.wait a,
.wait h1,
.wait h2,
.wait h3,
.wait h4,
.wait h5,
.wait h6,
.wait.wait-box,
.wait img,
.wait .btn {
    visibility: hidden;
}

@keyframes animate-waited {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.waited p,
.waited span,
.waited strong,
.waited em,
.waited li,
.waited a,
.waited h1,
.waited h2,
.waited h3,
.waited h4,
.waited h5,
.waited h6,
.waited.wait-box,
.waited img,
.waited .btn {
    animation: var(--transition-speed) ease animate-waited;
}

.wait {
    animation: 1s ease animate-waiting infinite;
    background: #e6e7e7 !important;
}

.wait>* {
    visibility: hidden;
}

.waited>* {
    animation: 0.5s ease animate-waited;
}

@keyframes animate-waiting {
    0% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(0.95);
    }

    100% {
        filter: brightness(1);
    }
}

.animated-waiting {
    animation: 1s ease animate-waiting infinite;
}

@media (prefers-reduced-motion) {
    .animated-waiting {
        animation-duration: 0s;
    }
}

.input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    width: 100%;
}

.input-group label {
    font-weight: bold;
    font-size: var(--font-size-sm);
    line-height: 22.5px;
}

.input-group label.upper {
    position: absolute;
    z-index: 1;
    top: -1px;
    left: var(--spacing-lg);
    background: white;
    padding: 0 var(--spacing-md);
}

.textarea-default {
    display: flex;
    flex-direction: column;
    padding: var(--spacing-md);
}

.mb-112 {
    margin-bottom: 112px;
}

.mt-56 {
    margin-top: 56px;
}

.mb-56 {
    margin-bottom: 56px;
}

.mt-48 {
    margin-top: 48px;
}

.mb-48 {
    margin-bottom: 48px;
}

.mb-42 {
    margin-bottom: 42px;
}

.mt-42 {
    margin-top: 42px;
}

.mt-38 {
    margin-top: 38px;
}

.mt-32 {
    margin-top: 32px;
}

.mb-32 {
    margin-bottom: 32px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-24 {
    margin-top: 24px;
}

.mt-20 {
    margin-top: 20px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mt-16 {
    margin-top: 16px;
}

.mb-16 {
    margin-bottom: 16px;
}

.mt-10 {
    margin-top: 10px;
}

.mb-8 {
    margin-bottom: 8px;
}

.border-radius {
    border-radius: var(--border-radius);
}

.mb-4-rem {
    margin-bottom: 1rem;
}

.col {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
}

.mx-2-rem {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.m-0 {
    margin: 0px !important;
}

.mx-1-rem {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
}

.mx-2-rem {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.mx-3-rem {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
}

.mx-4-rem {
    margin-left: 1rem;
    margin-right: 1rem;
}

.my-1-rem {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
}

.my-2-rem {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.my-3-rem {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}

.my-4-rem {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.mb-1-rem {
    margin-bottom: 0.25rem;
}

.mb-2-rem {
    margin-bottom: 0.5rem;
}

.mb-3-rem {
    margin-bottom: 0.75rem;
}

.mb-4-rem {
    margin-bottom: 1rem !important;
}

.mb-5-rem {
    margin-bottom: 1.25rem;
}

.mb-6-rem {
    margin-bottom: 1.5rem;
}

.mt-1-rem {
    margin-top: 0.25rem;
}

.mt-2-rem {
    margin-top: 0.5rem;
}

.mt-3-rem {
    margin-top: 0.75rem;
}

.mt-4-rem {
    margin-top: 1rem;
}

.mt-5-rem {
    margin-top: 1.25rem;
}

.mt-6-rem {
    margin-top: 1.5rem;
}

.m-2-rem {
    margin: 0.5rem;
}

/* Remove input type number margin */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    display: none;
    margin: 0;
}

input[type="number" i] {
    padding: 0;
}