/*CSS reset*/
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    line-height: 100%;
    -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    max-height: none;
    width: auto;
    height: auto;
}

input,
button,
textarea,
select {
    font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

#root,
#__next {
    isolation: isolate;
}

ul {
    padding-inline-start: 0;
}

/*Regras adicionais*/
* {
    outline: 0;
    box-shadow: none;
}

.gutter {
    padding: 0px 32px;
    margin: 0;
    position: relative;
}

.flex {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

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

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

.column-start {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    width: 100%;
}

.abs-centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

* {
    transition: all 0.3s ease;
}

.reset-btn {
    background: transparent;
    padding: 0;
    margin: 0;
    border: none;
    box-shadow: none;
    outline: 0;
    width: fit-content;
}

.full-wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    height: 100%;
    background-color: #4D4D4D3D;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
}

.flex-row,
.form-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
    width: 100%;
    max-width: 100%;
}

button {
    cursor: pointer;
    width: fit-content;
}

.displayer {
    background-color: #FFFFFF;
    border-radius: 8px;
    border: 1px solid #EFEFEF;
}

.content-table {
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.spinner-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.spinner {
    border: 4px solid transparent;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border-left-color: white;
    animation: spin 1s ease infinite;
}
.spinner.blue{
    border-left-color: #0E1F43;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

ol,
ul {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

/*Tablet*/
/* 
@media (max-width: 1024px) {
    .gutter {
        padding: 0px;
        margin: 0;
        position: relative;
    }
} */

/* mobile */

/* @media (max-width: 767px) {} */



/*Fontes globais*/

/* @font-face {
    font-family: 'BW Modelica';
    src: url('../fonts/BWMODELICA-REGULAR.OTF') format('opentype');
    font-weight: 400;
} */


* {
    font-family: 'Inter';
    font-weight: 400;
}

.med {
    font-weight: 500;
}

.semi-bold {
    font-weight: 600;
}

.bold {
    font-weight: 700;
}

.black {
    font-weight: 800;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

h1,
h2,
h3,
h4,
h5 {
    line-height: 130%;
}

.callout {
    font-size: 18px;
    line-height: 130%;
}

.body-text {
    font-size: 14px;
    line-height: 140%;
}

.caption {
    font-size: 16px;
    line-height: 120%;
}

.caption-small {
    font-size: 12px;
    line-height: auto;
}

/*Cores globais*/

:root {
    --white: #FFF;
    --black: #000;
    --blue-title: #0E1F43;
    --blue-btn: #10244C;
    --blue-text-btn2: #6F7D92;
    --blue-bordes2: #818EA8;
    --blue-text2-btn3: #A3ADBB;
    --blue-btn4: #BDBFC3;
    --blue-btn5: #DFE2E7;
    --gray-tabla-bg: #FDFDFD;
    --gray-bg-general: #FBFBFB;
    --gray-bg-cards: #F8F9F9;
    --gray-bordes: #ECECEC;
    --green-act: #19D76C;
    --green-off: #CCF7DF;
    --yellow-act: #FFB454;
    --yellow-off: #FFF9E6;
    --red-error: #F43C3C;

    --deg-logo: linear-gradient(90deg, #F54A48 -18.3%, #FA982F 110.1%);

}

.blue-title {
    color: #0E1F43;
}

.blue-btn {
    color: #10244C;
}

.blue-text-btn2 {
    color: #6F7D92;
}

.blue-bordes2 {
    color: #818EA8;
}

.blue-text2-btn3{
    color: #A3ADBB;
}

.blue-btn4 {
    color: #BDBFC3;
}

.blue-btn5 {
    color:#DFE2E7
}

.white{
    color: #ffffff;
}

.black{
    color: #000000;
}

.gray-tabla-bg{
    color: #FDFDFD;
}

.gray-bg-general{
    color: #FBFBFB;
}

.gray-bg-cards {
    color: #F8F9F9;
}

.gray-bordes{
    color: #ECECEC;
}

.green-act {
    color: #19D76C;
}

.green-off {
    color: #CCF7DF;
}

.yellow-act {
    color: #FFB454;
}

.yellow-off {
    color: #FFECD3;
}

.red-error {
    color: #F43C3C;
}

.input-wrap {
    border-radius: 4px;
    background: var(--white);
    border: 1px solid var(--gray-bordes);
    gap: 16px;
    outline: 0;
    box-shadow: none;
    position: relative;
    --padding: 12px;
    --bg: white;
    width: 100%;
    --pColor: #BDBFC3;
    padding: 16px;
}

.input-wrap::placeholder {
    color: #BDBFC3;
}

.input-wrap:focus {
    border: 1px solid #0E1F43;
}

.label-content {
    color: var(--colorLabel);
    font-size: var(--labelSize);
    font-weight: 500;
    --labelSize: 14px;
    --colorLabel: var(--blue-text2-btn3);
    width: 100%;
}

.input-content {
    display: flex;
    flex-direction: column;
    gap: 6px; 
    flex-grow: 1;
    width: 100%;
}

@media (max-width: 1024px) {

    h1 {
        font-size: 30px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    h3 {
        font-size: 20px;
    }
    
    h4 {
        font-size: 18px;
    }
    

    .callout {
        font-size: 18px;
        line-height: 130%;
    }
    
    .body-text {
        font-size: 14px;
        line-height: 140%;
    }
    
    .caption {
        font-size: 16px;
        line-height: 120%;
    }
    
    .caption-small {
        font-size: 12px;
        line-height: auto;
    }
}



@media  (max-width: 767px){

    h1 {
        font-size: 30px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    h3 {
        font-size: 20px;
    }
    
    h4 {
        font-size: 18px;
    }
    
    h5 {
        font-size: 16px;
    }
}