:root {
    --font-min: 0.8em;
    --font-small: 0.875em;
    --font-normal: 1em;
    --font-medium: 1.2em;
    --font-large: 1.4em;
    --font-max: 2em;
    --color-default: #555555;
    --color-green: #36BA9B;
    --color-blue: #39AED9;
    --color-yellow: #F5B946;
    --color-red: #D94352;
    --color-fsphp: #1D2025;
    --color-nextapp: #0f7699;
    --weight-light: 300;
    --weight-normal: 400;
    --weight-strong: 600;
    --weight-bold: 700;
    --weight-black: 900;
    --hover-color-green: #61DDBC;
    --hover-color-blue: #66D4F1;
    --hover-color-yellow: #FCD277;
    --hover-color-red: #F76C82;
    --hover-duration: 0.3s;
    --gradient-green: linear-gradient(to right, #42E695 0%, #3BB2B8 50%, #42E695 100%);
    --gradient-blue: linear-gradient(to right, #17EAD9 0%, #0f7699 50%, #17EAD9 100%);
    --gradient-red: linear-gradient(to right, #622744 0%, #C53364 50%, #622744 100%);
    --gradient-yellow: linear-gradient(to right, #FCE38A 0%, #F38181 50%, #FCE38A 100%);
    --radius-normal: 5px;
    --radius-medium: 10px;
    --radius-large: 20px;
    --radius-round: 50%;
    --index-back: -1;
    --index-fold: 2;
    --index-menu: 3;
    --index-modal: 4;


    --area-small: 10px;
    --area-normal: calc(var(--area-small) * 2);
    --area-box: calc(var(--area-small) * 3);
}

body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.login-gradient {
    background: #f8fafc; /* bg-slate-50 */
}
.form-input {
    background-color: #f1f5f9; /* bg-slate-100 */
    border-color: #e2e8f0; /* border-slate-200 */
}
.form-input:focus {
    background-color: #ffffff;
    border-color: #6366f1; /* border-indigo-500 */
    box-shadow: 0 0 0 2px #c7d2fe; /* ring-indigo-200 */
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #94a3b8;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #64748b;
}
.dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.dropdown-menu.open {
    max-height: 500px;
    transition: max-height 0.5s ease-in;
}
/* Estilos para o Modal */
#evaluation-modal {
    transition: opacity 0.3s ease;
}
.modal-container {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/*AJAX RESPONSES MESSAGES*/
.ajax_response {
    position: fixed;
    padding: 20px 20px 0 0;
    z-index: 99999999;

    top: 0;
    right: 0;
    width: 300px;
    max-width: 100%;
}

.ajax_response .message {
    color: #ffffff;
    font-size: var(--font-min);
    font-weight: var(--weight-normal);
    overflow: hidden;
    border: none;

    display: flex;
    align-items: center;
    width: 100%;
    padding: 15px 15px 20px 15px;
    background: #333333;
    margin-bottom: 15px;
    position: relative;

    -webkit-border-radius: var(--radius-normal);
    -moz-border-radius: var(--radius-normal);
    border-radius: var(--radius-normal);

    cursor: pointer;
}

.ajax_response .message:before {
    flex-basis: 0;
    margin: -5px 15px 0 0 !important;
    font-size: calc(var(--font-max) * 1.2);
    color: rgba(0, 0, 0, 0.5);
}

.ajax_response .message_time {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 4%;
    height: 5px;
    background: rgba(0, 0, 0, 0.5);
}

.ajax_response .message.success {
    background: var(--color-green);
}

.ajax_response .message.info {
    background: var(--color-blue);
}

.ajax_response .message.warning {
    background: var(--color-yellow);
}

.ajax_response .message.error {
    background: var(--color-red);
}

/* LOADS */
.ajax_load {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    z-index: calc(var(--index-modal) * 2)
}

.ajax_load_box {
    margin: auto;
    text-align: center;
    color: #fff;
    font-weight: var(--weight-bold);
    text-shadow: 1px 1px 1px rgba(0,0,0,.5)
}

.ajax_load_box_circle {
    border: 16px solid #e3e3e3;
    border-top: 16px solid var(--color-nextapp);
    border-radius: 50%;
    margin: auto;
    width: 80px;
    height: 80px;
    -webkit-animation: spin 1.2s linear infinite;
    -o-animation: spin 1.2s linear infinite;
    animation: spin 1.2s linear infinite
}

.ajax_load_box_title {
    margin-top: 15px;
    font-weight: var(--weight-strong)
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(360deg)
    }
}

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

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


.user_icon{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #8C62FF;
    border-radius: 50%;
    height: 32px;
    width: 32px;
    color: #fff;
}

.review_stars {
    margin-top: 5px;
    margin-bottom: 5px;
}

.review_actions, .question_actions {
    display: flex;
    justify-content: end;
}

.review_actions a, .question_actions a {
    margin-left: 9px;
}

nav.paginator {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: .5rem !important;
}

a.paginator_item {
    background-color: #487FFF; /* bg-primary-50 */
    color: #f8f9fa; /* text-secondary-light */
    font-weight: 500; /* fw-medium */
    border-radius: 50%; /* rounded-circle */
    border: none; /* border-0 */
    padding: 10px 20px; /* px-20 py-10 */
    display: flex; /* d-flex */
    align-items: center; /* align-items-center */
    justify-content: center; /* justify-content-center */
    height: 40px; /* h-48-px */
    width: 40px; /* w-48-px */
    position: relative;
    padding: 0.375rem 0.75rem;
    font-size: 14px;
    color: #0d6efd;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #dee2e6;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

span.paginator_item.paginator_active {
    background-color: #1d4ed8; /* bg-primary-600 */
    color: #ffffff; /* text-white */
    font-weight: 500; /* fw-medium */
    border-radius: 50%; /* rounded-circle */
    border: none; /* border-0 */
    padding: 10px 20px; /* px-20 py-10 */
    display: flex; /* d-flex */
    align-items: center; /* align-items-center */
    justify-content: center; /* justify-content-center */
    height: 40px; /* h-48-px */
    width: 40px; /* w-48-px */
}

.review_icon_checked{
    margin-right: 5px;
}

.review_icon{
    font-size: 13px;
}

.review_name_product{
    font-size: 15px;
    font-weight: 500;
}

.modal_review_title {
    font-size: 18px !important;
}

.review_detail_preview h6 {
    font-size: 15px !important;
}

.product_images {
    cursor: pointer;
}

.product_images_items img {
    padding-right: 7px;
}

.spreadsheet_header h5{
    margin-bottom: 20px !important;
}

.spreadsheet_title{
    font-size: 35px !important;
    font-weight: 500;
    margin-bottom: 30px;
}

.card_file_planilha{
    margin-top: 20px;
}

.app_signature {
    overflow: hidden;
    -webkit-box-shadow: 0 0 4px 0 rgb(0 0 0 / .3);
    -moz-box-shadow: 0 0 4px 0 rgb(0 0 0 / .3);
    box-shadow: 0 0 4px 0 rgb(0 0 0 / .3)
}

.app_signature_header {
    background: var(--color-fsphp);
    padding: 40px;
    text-align: center;
    color: #fff;
    text-shadow: 1px 1px rgb(0 0 0 / .2)
}

.app_signature_header h2 {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: var(--weight-black);
    margin-bottom: 20px;
}

.app_signature_header p {
    font-weight: var(--weight-bold)
}

.app_signature_header .icon {
    font-size: calc(var(--font-large) * 3)
}

.app_signature_me {
    padding: 40px;
    background: #fff
}

.app_signature_me p {
    margin: 0
}

.app_signature_me_header {
    text-align: center;
    color: #888;
    margin: 30px 0
}

.app_signature_detail {
    padding: 20px;
    background: #FAFAFA;
    margin-bottom: 20px;
    font-size: var(--font-small)
}

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

.app_signature_detail li:nth-child(2n+0) {
    background: #fff
}

.app_signature_detail li span {
    flex-basis: 50%;
    padding: 15px;
    color: #888
}

.app_signature_info {
    color: #888;
    font-size: var(--font-small)
}

svg.svg-inline--fa.fa-rocket{
    font-size: 50px;
    margin-bottom: 20px;
    fill: #FFFFFF;
}

.card-signature-reviews{
    display: flex;
    justify-content: center;
    margin-top: 60px;
    margin-bottom: 30px;
}

.title-data-user{
    margin-top: 30px;
}

.app_form .label_group {
    display: flex;
    width: 100%;
    margin-bottom: 27px;
    margin-top: 15px;
}

.app_form .label_group label {
    flex-basis: calc(50% - var(--area-small))
}

.app_form .label_group label:first-child {
    margin-right: var(--area-normal)
}

.app_form .label_check label {
    display: inline-block;
    margin-left: var(--area-normal);
    font-size: var(--font-small);
    margin-top: 5px;
    color: #888;
}

select#exampleFormControlSelect1 {
    margin-right: 10px;
}

.card-infos-payment.payment h4, .card-infos-payment.payment p {
    text-align: center;
}

.card-infos-payment.payment p{
    margin-bottom: 60px
}

.plans{
    place-content: center;
}

.visitante{
    display: none;
}

.app_signature_header h2 {
    color: #FFFFFF;
    font-size: 20px !important;
    font-weight: var(--weight-black);
    margin-bottom: 20px;
}

.icone-rocket{
    width: 45px;
    height: 45px;
    margin: 0 auto;
}

.icone-rocket path{
    stroke: #487FFF;
}

.form-group {
    margin-bottom: 1rem;
}

.price_por{
    font-size: 17px;
}

.price_original {
    font-size: 17px;
    color: #7a6c6c;
    font-weight: 500;
    text-decoration: line-through;
}

.price_original small {
    font-size: 20px;
    text-decoration: line-through;
}

.price_original span{
    text-decoration: line-through;
}

.termine-sua-conta {
    margin-top: 20px;
}


.select_plan {
    border: none !important;
}

.btn-confirm-pay{
    margin-top: 40px !important;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

form input, form select, form textarea{
    height: 36px;
}

.scroll_modal{
    height: 500px;
    overflow: scroll;
}

.plan-card.yearly{
    display: none;
}

.info-discount-plan{
    justify-content: center;
    margin-bottom: 30px;
}

.main-content{
    margin-left: 0px !important;
}

body{
    padding-top: 44px !important;
}

.modal-container {
    background-color: rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
}

/* Estilos para a tabela responsiva */
@media (max-width: 767px) {
    .responsive-table thead {
        display: none;
    }
    .responsive-table tr {
        display: block;
        border-bottom: 2px solid #e2e8f0;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }
    .responsive-table tr:last-child {
        border-bottom: 0;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    .responsive-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: right;
        padding: 0.5rem 0;
        border: none;
    }
    .responsive-table td::before {
        content: attr(data-label);
        font-weight: 600;
        text-align: left;
        padding-right: 1rem;
        color: #475569;
    }
    .responsive-table td:first-child {
        font-size: 1.125rem; /* Aumenta o nome do cliente */
        font-weight: 700;
        padding-bottom: 1rem;
    }
    .responsive-table td:first-child::before {
        display: none; /* Esconde o label "Cliente" */
    }
}

@media(min-width: 992px) {
    .sidebar{
        width: 250px !important;
        /*padding: 12px;*/
    }

    .sidebar-menu-area.open{
        padding: 10px !important;
    }

    .dashboard-main {
        margin-inline-start: 15.75rem !important;
    }
}



@media(max-width: 1366px) {
    .dash-home-stats .col {
        margin-bottom: 11px;
    }
}

@media(max-width: 992px){

    .form-mobile-group {
        display: block !important;
    }

    .termine-sua-conta {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 20px;
    }

    .app_form .label_group{
        display: grid !important;
        padding: 14px;
        margin-bottom: 0px;
        margin-top: 0px;
        padding-bottom: 0px;
    }

    .app_form .label_group label{
        margin-bottom: 10px;
    }

    .app_signature_header{
        text-align: start;
    }

    .app_form .label_group label:first-child{
        margin-right: 0px !important;
    }

    .button_confirm_wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }

    .btn-confirm-pay{

    }

}