﻿/*DECLARAÇÃO DE VARIÁVEIS*/
:root {
    /*ESCALA DE CORES*/
    /*GENERAL*/
    --primary-cangooroo: #206BC4;
    --primary-cangooroo-900: #124B8E;
    --primary-cangooroo-100: #D9E8FA;
    --secundary-cangooroo: #247B53;
    --secundary-cangooroo-900: #37BE80;
    --secundary-cangooroo-100: #EBFBEE;
    --price-cangooroo: #03A691;
    --gradient-cangooroo: #E2EC55 #008E82;
    --primary-cangooroo-transparent: #206bc42e;
    --white-cangooroo: #FFFFFF;
    --black-cangooroo: #000000;

    /*GRAYSCALE*/
    --neutral-800: #343A41;
    --neutral-700: #545A64;
    --neutral-600: #777E88;
    --neutral-400: #BFC4CE;
    --neutral-300: #DFE1E7;
    --neutral-100: #F3F4F6;
    /*SUCCESS*/
    --success-900: #007E6C;
    --success-500: #05A593;
    --success-300: #8DE4C7;
    --success-100: #E7FBF4;
    /*ERROR*/
    --error-900: #A53421;
    --error-500: #FF4D3E;
    --error-300: #FB9F90;
    --error-100: #FFEBE9;
    /*WARNING*/
    --warning-900: #AB5F11;
    --warning-500: #FD8B0E;
    --warning-300: #FFBB78;
    --warning-100: #FDF1E7;
    /*INFO*/
    --info-900: #1D62B5;
    --info-500: #4095FD;
    --info-300: #95C5FE;
    --info-100: #E7F1FF;
    /*---------------------------------------------*/
    /*ESCALA DE FONTES*/
    --font-family: 'Barlow', sans-serif;
    --font-size-h1: 24px;
    --font-size-h2: 20px;
    --font-size-h3: 16px;
    --font-size-h4: 16px;
    --font-size-body: 14px;
    --font-size-small: 12px;
    --font-weight-regular: 400;
    --font-weight-semibold: 600;
}

/*------------------------------*/
/*ESTILOS DE TEXTO*/
/*------------------------------*/

/*FONTS*/
/* Títulos */
.style-guide-cangooroo h1, .style-guide-cangooroo .h1 {
    font-family: var(--font-family);
    font-size: var(--font-size-h1);
    font-weight: var(--font-weight-semibold);
}

.style-guide-cangooroo h2, .style-guide-cangooroo .h2-cangooroo {
    font-family: var(--font-family);
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-semibold);
    margin: 0;
}

.style-guide-cangooroo h3, .style-guide-cangooroo .h3-cangooroo {
    font-family: var(--font-family);
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-semibold);
    margin: 0;
}

.style-guide-cangooroo h4, .style-guide-cangooroo .h4 {
    font-family: var(--font-family);
    font-size: var(--font-size-h4);
    font-weight: var(--font-weight-regular);
}

/* Textos padrão */
body {
    font-family: var(--font-family) !important;
    font-size: var(--font-size-body) !important;
    font-weight: var(--font-weight-regular) !important;
}

.style-guide-cangooroo .body-font {
    font-family: var(--font-family);
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-regular);
    line-height: normal;
}

/* Textos pequenos */
.style-guide-cangooroo .small {
    font-family: var(--font-family);
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-regular);
}

.style-guide-cangooroo .small-bold {
    font-family: var(--font-family);
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-semibold);
}

/* Corpo em negrito */
.style-guide-cangooroo .body-bold {
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-semibold);
    font-family: var(--font-family);
}



/*------------------------------*/
/*ESTILOS DE BOTÕES*/
/*------------------------------*/

/*botões médios*/
.style-guide-cangooroo .btn-default-medium-normal {
    display: flex;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 6px;
    background: var(--primary-cangooroo);
    color: var(--Neutral-White, #FFF);
    border: 0;
}
.style-guide-cangooroo .btn-default-medium-normal:hover {
    background: var(--primary-cangooroo-900);
}
.style-guide-cangooroo .btn-default-medium-normal:disabled {
    background: var(--neutral-300);
    color: var(--neutral-600);
}

.style-guide-cangooroo .btn-ghost-medium-normal {
    display: flex;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 6px;
    border: 1px solid var(--primary-cangooroo);
    background: var(--Neutral-White, #FFF);
    color: var(--primary-cangooroo);
}
.style-guide-cangooroo .btn-ghost-medium-normal:hover {
    background: var(--primary-cangooroo-100);
    color: var(--primary-cangooroo);
}
.style-guide-cangooroo .btn-ghost-medium-normal:disabled {
    border-radius: 6px;
    border: 1px solid var(--neutral-400);
    background: var(--neutral-100);
    color: var(--neutral-600);
}


.style-guide-cangooroo .btn-link-medium-normal {
    display: flex;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 5px;
    background: transparent;
    color: var(--primary-cangooroo);
    border: 0;
}
.style-guide-cangooroo .btn-link-medium-normal:hover {
    color: var(--primary-cangooroo-900);
}
.style-guide-cangooroo .btn-link-medium-normal:disabled {
    color: var(--neutral-600);
}

/*botões largos*/
.style-guide-cangooroo .btn-default-large-normal {
    display: flex;
    height: 48px;
    padding: 12px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 6px;
    background: var(--primary-cangooroo);
    color: var(--Neutral-White, #FFF);
    border: 0;
}
.style-guide-cangooroo .btn-default-large-normal:hover {
    background: var(--primary-cangooroo-900);
}
.style-guide-cangooroo .btn-default-large-normal:disabled {
    background: var(--neutral-300);
    color: var(--neutral-600);
}

.style-guide-cangooroo .btn-ghost-large-normal {
    display: flex;
    height: 48px;
    padding: 12px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 6px;
    border: 1px solid var(--primary-cangooroo);
    background: var(--Neutral-White, #FFF);
    color: var(--primary-cangooroo);
}
.style-guide-cangooroo .btn-ghost-large-normal:hover {
    background: var(--primary-cangooroo-100);
    color: var(--primary-cangooroo);
}
.style-guide-cangooroo .btn-ghost-large-normal:disabled {
    border-radius: 6px;
    border: 1px solid var(--neutral-400);
    background: var(--neutral-100);
    color: var(--neutral-600);
}


.style-guide-cangooroo .btn-link-large-normal {
    display: flex;
    height: 48px;
    padding: 12px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 5px;
    background: transparent;
    color: var(--primary-cangooroo);
    border: 0;
}
.style-guide-cangooroo .btn-link-large-normal:hover {
    color: var(--primary-cangooroo-900);
}
.style-guide-cangooroo .btn-link-large-normal:disabled {
    color: var(--neutral-600);
}
.style-guide-cangooroo .btn-select-cagooroo {
    display: flex;
    padding: 14px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    border-radius: 6px;
    border: 1px solid var(--neutral-600);
    background: var(--white-cangooroo);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    width: 105px !important;
}

.style-guide-cangooroo .icon-arrow-select {
    position: absolute;
    top: 16px;
    right: 10px;
    z-index: 2;
    pointer-events: none;
}

.style-guide-cangooroo .highlight-text-cangooroo {
    color: var(--primary-cangooroo);
}
/*------------------------------*/
/*ESTILOS DE INPUTS*/
/*------------------------------*/
/*NO LABEL*/
.style-guide-cangooroo .input-default-no-label {
    display: flex;
    padding: 14px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    border-radius: 8px;
    border: 1px solid var(--neutral-600);
    background: var(--Neutral-White, #FFF);
    max-height: 48px;
}

.style-guide-cangooroo .input-default-no-label:focus, .style-guide-cangooroo .input-default-no-label:focus-visible {
    border: 1px solid var(--primary-cangooroo);
    background: var(--Neutral-White, #FFF);
    box-shadow: 0px 0px 5px 0px rgba(32, 107, 196, 0.50);
    outline: none;
}

.style-guide-cangooroo .input-default-no-label:not(:placeholder-shown) {
    color: var(--neutral-800);
}

.style-guide-cangooroo .input-default-no-label:disabled {
    border-radius: 8px;
    border: 1px solid var(--neutral-300);
    background: var(--neutral-100);
}

.style-guide-cangooroo .input-default-no-label-error {
    display: flex;
    padding: 14px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    border-radius: 8px;
    border: 1px solid var(--error-500);
    background: var(--Neutral-White, #FFF);
}

.style-guide-cangooroo .input-default-no-label-error .block-date-error {
    gap: 8px;
    display: flex;
    flex-direction: column;
}


.style-guide-cangooroo .input-default-no-label-error + .input-description {
    color: var(--error-500) !important;
}

/*WITH LABEL*/
.style-guide-cangooroo .container-input-cangooroo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.style-guide-cangooroo .container-input-cangooroo .label {
    color: var(--neutral-800);
}
.style-guide-cangooroo .container-input-cangooroo .input-description {
    align-self: stretch;
    color: var(--neutral-700);
}

/*WITH ICON*/

.style-guide-cangooroo .input-icon-cangooroo {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    position: relative;
    width: 100%;
}

.style-guide-cangooroo .input-icon-cangooroo .icon-left {
    position: absolute;
    top: 14px;
    left: 16px;    
    z-index: 1;
}

.style-guide-cangooroo .input-default-no-label-with-icon-left {
    position: relative;
    padding-left: 43px;
    width: 100%;
}


.style-guide-cangooroo .input-icon-cangooroo .icon-right {
    position: absolute;
    top: 14px;
    right: 16px;
    z-index: 1;
}

.style-guide-cangooroo .input-default-no-label-with-icon-right {
    position: relative;
    width: 100%;
}


/*------------------------------*/
/*ESTILOS DE TABS*/
/*------------------------------*/

.style-guide-cangooroo .tab-container {
    display: inline-flex;
    min-width: 110px;
    padding: 0px 12px;
    flex-direction: column;
    align-items: center;
    border-radius: 6px 6px 0px 0px;
    background: var(--Neutral-White, #FFF);
}

.style-guide-cangooroo .tab-container .tab-body {
    display: flex;
    padding: 8px 8px 6px 8px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
}

.style-guide-cangooroo .tab-container .tab-body .tab-text {
    color: var(--neutral-700);
    text-align: center;
}

.style-guide-cangooroo .tab-container .tab-body .tab-text-selected {
    color: var(--primary-cangooroo);
    text-align: center;
}

.style-guide-cangooroo .tab-container .tab-body .selected  {
    height: 2px;
    align-self: stretch;
    border-radius: 10px 10px 0px 0px;
    background: var(--primary-cangooroo);
    margin-top: 6px;
    display: none;
}


/*------------------------------*/
/*CLASSES GENÉRICAS*/
/*------------------------------*/

.style-guide-cangooroo .c-pointer {
    cursor: pointer;
}