/*Variáveis Cores*/
:root {
    --color-primary: #11151e;
    --dark-primary: #7E69AB;
    --color-main: #9c27b0;
    --color-primary-dark: #11151e;
    --color-gray-text: #555;
    --color-gray-bg: #f7f7f7;
    --color-dark-bg: #343A40;
    --color-dark-pill: #555A65;
    --color-gray-bg: #f7f7f7;
    --color-gray-100: #f8f9fa;
    --color-gray-150: #F9FAFB;
    --color-gray-200: #e9ecef;
    --color-gray-300: #dee2e6;
    --color-gray-400: #ced4da;
    --color-gray-500: #adb5bd;
    --color-gray-600: #6c757d;
    --color-gray-700: #495057;
    --color-gray-800: #343a40;
    --color-gray-900: #212529;
    --color-green: #4caf50;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-lightgreen: lightgreen;
    --color-red: #bf2424;
    --color-dark-red: #7d1108;
    --dark-blue: #17202E;
    --color-yellow: #ffcc00;
    --color-gray-light: #f5f5f5;
    --color-purple-bright: #6a1cb9;
    --color-purple-dark: #3d2176;
    --color-purple-medium: #7c57da;
    --color-purple-hover: #6c2ed9;
    --color-purple-bg: #f5edff;
    --color-purple-border: #d8cafd;
    --color-purple-gradient-1: #8e44ec;
    --color-purple-gradient-2: #9b59b6;
    --color-purple-gradient-3: #8a2be2;
    --color-purple-gradient-4: #a066ff;
    --color-purple-gradient-5: #ba84ff;
    --color-purple-gradient-8: #2e0e70;
    --color-purple-gradient-9: #6c2eb9;
    --color-purple-gradient-10: #6c2ed9;
    --color-purple-gradient-11: #3b086b;
    --color-purple-gradient-12: #8f6ed5;
    --color-purple-gradient-13: #6c63ff;
    --color-purple-gradient-14: #7b61ff;
    --color-purple-gradient-15: #a084e8;
    --color-purple-gradient-padrao: #5c3c92;
    --color-purple-gradient-16: #ede7f6;
    --color-purple-gradient-17: #ddd1f5;
    --color-purple-gradient-18: #e5d8f8;
    --color-purple-gradient-19: #e7dcfb;
    --color-purple-gradient-20: #f3e6fb;
    --color-purple-gradient-22: #c4e3cb;
    --color-purple-gradient-23: #f1fff4;
    --color-purple-gradient-24: #4caf50;
    --color-purple-gradient-25: #2e7d32;
    --color-purple-gradient-26: #e6f4ea;
    --color-purple-gradient-27: #c8e6c9;
    --color-purple-gradient-28: #f7e6a2;
    --color-purple-gradient-29: #fdfdf9;
    --color-purple-gradient-30: #c7b700;
    --color-purple-gradient-31: #fffbe6;
    --color-purple-gradient-32: #e7f8ef;
    --color-purple-gradient-33: #34a853;
    --color-purple-gradient-34: #f56c6c;
    --color-purple-gradient-36: #4d6ef2;
    --color-purple-gradient-37: #ccc;
    --color-purple-gradient-39: #ddd;
    --color-purple-gradient-40: #f2f2f2;
    --color-purple-gradient-41: #eee;
    --color-purple-gradient-42: #333;
    --color-purple-gradient-43: #666;
    --color-purple-gradient-44: #888;
    --color-purple-gradient-45: #555;
    --color-purple-gradient-46: #111;
    --color-purple-gradient-48: #444;
    --color-purple-gradient-49: #a10000;
    --color-purple-gradient-50: #3d437a;
    --color-purple-gradient-52: #6c6f7a;
    --color-purple-gradient-53: #f0f0f0;
    --color-purple-gradient-54: #ececec;

    --pulse-bg: #080235;
    --pulse-accent: #F46643;
    --pulse-text-muted: #A3ADC2;
    --pulse-border: #2D3E61;
    --pulse-pill-bg: #223254;



    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.03);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

    --font-size-sm: 12px;
    --font-size-md: 16px; /* Tamanho base do .text */
    --font-size-lg: 18px;
    --font-size-xl: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', Arial, sans-serif;
    scrollbar-width: thin;
}

html, body {
    height: 100%;
}

.hidden {
    display: none !important;
}

.clear {
    clear: both;
}

.center {
    text-align: center !important;
    padding: 0 auto;
}

.right {
    text-align: right;
    padding: 0 auto;
}

.left {
    text-align: left;
    padding: 0 auto;
}

@media screen and (max-width: 768px) {
    .text-center-mobile{
        margin-bottom: 20px;
    }

    .center-mobile {
        text-align: center !important;
    }
}

@media screen and (max-width: 420px) {
    .center-mobile {
        text-align: center !important;
    }
}

/*========================================================
                        CONTAINERS            
========================================================*/

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2%;
    word-wrap: break-word;
    /* força quebra se necessário */
    overflow-wrap: break-word;
    /* compatibilidade moderna */
}

.small-container {
    max-width: 768px;
}

/*========================================================
                        RESERTS            
========================================================*/

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

ul {
    list-style: none;
}

/*========================================================
                        BOX FLEX            
========================================================*/

.box-flex {
    display: flex;
    gap: 10px;
}

.box-revert {
    display: flex;
    gap: 10px;
}

.box-flex-header {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.box-flex-card {   
    display: flex;
    gap: 10px;
}

.box-flex-no-gap {   
    display: flex;
}

.box-flex-between {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.box-landing {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.w10 {
    max-width: 10%;
    flex: 1;
}

.w15 {
    max-width: 15%;
    flex: 1;
}

.w20 {
    max-width: 20%;
    flex: 1;
}

.w25 {
    max-width: 25%;
    flex: 1;
}

.w30 {
    max-width: 30%;
    flex: 1;
}

.w33 {
    max-width: 33.3%;
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.w32 {
    max-width: 32.6%;
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.w35 {
    max-width: 35%;
    flex: 1;
}

.w40 {
    max-width: 40%;
    flex: 1;
}

.w50 {
    max-width: 50%;
    flex: 1;
}

.w60 {
    max-width: 60%;
    flex: 1;
}

.w66 {
    max-width: 67.4%;
    flex: 1;
}

.w70 {
    max-width: 70%;
    flex: 1;
}

.w75 {
    max-width: 75%;
    flex: 1;
}

.w80 {
    max-width: 80%;
    flex: 1;
}

.w90 {
    max-width: 90%;
    flex: 1;
}

.w100 {
    max-width: 100%;
    flex: 1;
}

@media screen and (max-width: 768px) {
    .w10,
    .w15,
    .w20,
    .w25,
    .w30,
    .w33,
    .w32,
    .w35,
    .w40,
    .w50,
    .w60,
    .w66,
    .w70,
    .w75,
    .w80,
    .w90,
    .w100 {
        max-width: 100%;
        padding: 0;
    }
}

/*========================================================
               PADDINGS             
========================================================*/

.pa0  { padding: 0; }
.pa5  { padding: 5px; }
.pa10 { padding: 10px; }
.pa15 { padding: 15px; }
.pa20 { padding: 20px; }
.pa25 { padding: 25px; }
.pa30 { padding: 30px; }
.pa35 { padding: 35px; }
.pa40 { padding: 40px; }
.pa45 { padding: 45px; }
.pa50 { padding: 50px; }
.pa55 { padding: 55px; }
.pa60 { padding: 60px; }
.pa65 { padding: 65px; }
.pa70 { padding: 70px; }
.pa75 { padding: 75px; }
.pa80 { padding: 80px; }
.pa85 { padding: 85px; }
.pa90 { padding: 90px; }
.pa95 { padding: 95px; }
.pa100{ padding: 100px; }

/*========================================================
               PADDING VERTICAL 
========================================================*/

.p5 { padding: 5px 0; }
.p10 { padding: 10px 0; }
.p15 { padding: 15px 0; }
.p20 { padding: 20px 0; }
.p25 { padding: 25px 0; }
.p30 { padding: 30px 0; }
.p35 { padding: 35px 0; }
.p40 { padding: 40px 0; }
.p45 { padding: 45px 0; }
.p50 { padding: 50px 0; }
.p55 { padding: 55px 0; }
.p60 { 
    padding-top: 40px;
    padding-bottom: 40px;
}
.p65 { padding: 65px 0; }
.p70 { padding: 70px 0; }
.p75 { padding: 75px 0; }
.p80 { padding: 80px 0; }
.p85 { padding: 85px 0; }
.p90 { padding: 90px 0; }
.p95 { padding: 95px 0; }
.p100 { padding: 100px 0; }

/*========================================================
               PADDING TOP (pt) - Topo
========================================================*/

.pt0  { padding-top: 0px; }
.pt5  { padding-top: 5px; }
.pt10 { padding-top: 10px; }
.pt15 { padding-top: 15px; }
.pt20 { padding-top: 20px; }
.pt25 { padding-top: 25px; }
.pt30 { padding-top: 30px; }
.pt35 { padding-top: 35px; }
.pt40 { padding-top: 40px; }
.pt45 { padding-top: 45px; }
.pt50 { padding-top: 50px; }
.pt55 { padding-top: 55px; }
.pt60 { padding-top: 60px; }
.pt65 { padding-top: 65px; }
.pt70 { padding-top: 70px; }
.pt75 { padding-top: 75px; }
.pt80 { padding-top: 80px; }
.pt85 { padding-top: 85px; }
.pt90 { padding-top: 90px; }
.pt95 { padding-top: 95px; }
.pt100{ padding-top: 100px; }

/*========================================================
               PADDING BOTTOM (pb) - Baixo
========================================================*/

.pb0  { padding-bottom: 0px; }
.pb5  { padding-bottom: 5px; }
.pb10 { padding-bottom: 10px; }
.pb15 { padding-bottom: 15px; }
.pb20 { padding-bottom: 20px; }
.pb25 { padding-bottom: 25px; }
.pb30 { padding-bottom: 30px; }
.pb35 { padding-bottom: 35px; }
.pb40 { padding-bottom: 40px; }
.pb45 { padding-bottom: 45px; }
.pb50 { padding-bottom: 50px; }
.pb55 { padding-bottom: 55px; }
.pb60 { padding-bottom: 60px; }
.pb65 { padding-bottom: 65px; }
.pb70 { padding-bottom: 70px; }
.pb75 { padding-bottom: 75px; }
.pb80 { padding-bottom: 80px; }
.pb85 { padding-bottom: 85px; }
.pb90 { padding-bottom: 90px; }
.pb95 { padding-bottom: 95px; }
.pb100{ padding-bottom: 100px; }

/*========================================================
               PADDING LEFT (pl) - Esquerda
========================================================*/

.pl0  { padding-left: 0px; }
.pl5  { padding-left: 5px; }
.pl10 { padding-left: 10px; }
.pl15 { padding-left: 15px; }
.pl20 { padding-left: 20px; }
.pl25 { padding-left: 25px; }
.pl30 { padding-left: 30px; }
.pl35 { padding-left: 35px; }
.pl40 { padding-left: 40px; }
.pl45 { padding-left: 45px; }
.pl50 { padding-left: 50px; }
.pl55 { padding-left: 55px; }
.pl60 { padding-left: 60px; }
.pl65 { padding-left: 65px; }
.pl70 { padding-left: 70px; }
.pl75 { padding-left: 75px; }
.pl80 { padding-left: 80px; }
.pl85 { padding-left: 85px; }
.pl90 { padding-left: 90px; }
.pl95 { padding-left: 95px; }
.pl100{ padding-left: 100px; }

/*========================================================
               PADDING RIGHT (pr) - Direita
========================================================*/

.pr0  { padding-right: 0px; }
.pr5  { padding-right: 5px; }
.pr10 { padding-right: 10px; }
.pr15 { padding-right: 15px; }
.pr20 { padding-right: 20px; }
.pr25 { padding-right: 25px; }
.pr30 { padding-right: 30px; }
.pr35 { padding-right: 35px; }
.pr40 { padding-right: 40px; }
.pr45 { padding-right: 45px; }
.pr50 { padding-right: 50px; }
.pr55 { padding-right: 55px; }
.pr60 { padding-right: 60px; }
.pr65 { padding-right: 65px; }
.pr70 { padding-right: 70px; }
.pr75 { padding-right: 75px; }
.pr80 { padding-right: 80px; }
.pr85 { padding-right: 85px; }
.pr90 { padding-right: 90px; }
.pr95 { padding-right: 95px; }
.pr100{ padding-right: 100px; }

/*========================================================
               MARGIN ALL (ma) - Todos os lados
               (margin: Xpx)
========================================================*/

.ma0  { margin: 0; }
.ma5  { margin: 5px; }
.ma10 { margin: 10px; }
.ma15 { margin: 15px; }
.ma20 { margin: 20px; }
.ma25 { margin: 25px; }
.ma30 { margin: 30px; }
.ma35 { margin: 35px; }
.ma40 { margin: 40px; }
.ma45 { margin: 45px; }
.ma50 { margin: 50px; }
.ma55 { margin: 55px; }
.ma60 { margin: 60px; }
.ma65 { margin: 65px; }
.ma70 { margin: 70px; }
.ma75 { margin: 75px; }
.ma80 { margin: 80px; }
.ma85 { margin: 85px; }
.ma90 { margin: 90px; }
.ma95 { margin: 95px; }
.ma100{ margin: 100px; }

/*========================================================
               MARGIN VERTICAL (m) - Topo e Baixo
               (margin: Xpx 0)
========================================================*/

/* .m0  { margin: 0; } */
.m0  { margin: 0px 0 !important; }
.m5  { margin: 5px 0; }
.m10 { margin: 10px 0; } 
.m15 { margin: 15px 0; }
.m20 { margin: 20px 0; } 
.m25 { margin: 25px 0; }
.m30 { margin: 30px 0; } 
.m35 { margin: 35px 0; }
.m40 { margin: 40px 0; } 
.m45 { margin: 45px 0; }
.m50 { margin: 50px 0; } 
.m55 { margin: 55px 0; }
.m60 { margin: 60px 0; } 
.m65 { margin: 65px 0; }
.m70 { margin: 70px 0; } 
.m75 { margin: 75px 0; }
.m80 { margin: 80px 0; } 
.m85 { margin: 85px 0; }
.m90 { margin: 90px 0; } 
.m95 { margin: 95px 0; }
.m100{ margin: 100px 0; } 

/*========================================================
               MARGIN TOP (mt) - Topo
========================================================*/

.mt0  { margin-top: 0px; }
.mt5  { margin-top: 5px; }
.mt10 { margin-top: 10px; }
.mt15 { margin-top: 15px; }
.mt20 { margin-top: 20px; } 
.mt25 { margin-top: 25px; }
.mt30 { margin-top: 30px; }
.mt35 { margin-top: 35px; }
.mt40 { margin-top: 40px; }
.mt45 { margin-top: 45px; }
.mt50 { margin-top: 50px; }
.mt55 { margin-top: 55px; }
.mt60 { margin-top: 60px; }
.mt65 { margin-top: 65px; }
.mt70 { margin-top: 70px; }
.mt75 { margin-top: 75px; }
.mt80 { margin-top: 80px; }
.mt85 { margin-top: 85px; }
.mt90 { margin-top: 90px; }
.mt95 { margin-top: 95px; }
.mt100{ margin-top: 100px; }

/*========================================================
               MARGIN BOTTOM (mb) - Baixo
========================================================*/

.mb0  { margin-bottom: 0px; }
.mb5  { margin-bottom: 5px; } 
.mb10 { margin-bottom: 10px; } 
.mb15 { margin-bottom: 15px; } 
.mb20 { margin-bottom: 20px; } 
.mb25 { margin-bottom: 25px; } 
.mb30 { margin-bottom: 30px; } 
.mb35 { margin-bottom: 35px; } 
.mb40 { margin-bottom: 40px; } 
.mb45 { margin-bottom: 45px; } 
.mb50 { margin-bottom: 50px; } 
.mb55 { margin-bottom: 55px; } 
.mb60 { margin-bottom: 60px; } 
.mb65 { margin-bottom: 65px; } 
.mb70 { margin-bottom: 70px; } 
.mb75 { margin-bottom: 75px; } 
.mb80 { margin-bottom: 80px; } 
.mb85 { margin-bottom: 85px; } 
.mb90 { margin-bottom: 90px; } 
.mb95 { margin-bottom: 95px; } 
.mb100{ margin-bottom: 100px; } 

/*========================================================
               MARGIN LEFT (ml) - Esquerda
========================================================*/

.ml0  { margin-left: 0px; }
.ml5  { margin-left: 5px; }
.ml10 { margin-left: 10px; }
.ml15 { margin-left: 15px; }
.ml20 { margin-left: 20px; }
.ml25 { margin-left: 25px; }
.ml30 { margin-left: 30px; }
.ml35 { margin-left: 35px; }
.ml40 { margin-left: 40px; }
.ml45 { margin-left: 45px; }
.ml50 { margin-left: 50px; }
.ml55 { margin-left: 55px; }
.ml60 { margin-left: 60px; }
.ml65 { margin-left: 65px; }
.ml70 { margin-left: 70px; }
.ml75 { margin-left: 75px; }
.ml80 { margin-left: 80px; }
.ml85 { margin-left: 85px; }
.ml90 { margin-left: 90px; }
.ml95 { margin-left: 95px; }
.ml100{ margin-left: 100px; }

/*========================================================
               MARGIN RIGHT (mr) - Direita
========================================================*/

.mr0  { margin-right: 0px; }
.mr5  { margin-right: 5px; }
.mr10 { margin-right: 10px; }
.mr15 { margin-right: 15px; }
.mr20 { margin-right: 20px; }
.mr25 { margin-right: 25px; }
.mr30 { margin-right: 30px; }
.mr35 { margin-right: 35px; }
.mr40 { margin-right: 40px; }
.mr45 { margin-right: 45px; }
.mr50 { margin-right: 50px; }
.mr55 { margin-right: 55px; }
.mr60 { margin-right: 60px; }
.mr65 { margin-right: 65px; }
.mr70 { margin-right: 70px; }
.mr75 { margin-right: 75px; }
.mr80 { margin-right: 80px; }
.mr85 { margin-right: 85px; }
.mr90 { margin-right: 90px; }
.mr95 { margin-right: 95px; }
.mr100{ margin-right: 100px; }

.auto {
    margin: 0 auto;
}

/*========================================================
                BOX GRID
========================================================*/

.g10{
    gap: 10px;
}

.box-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 10px; 
    width: 100%;
}

.box-grid-there { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    width: 100%; 
}

@media screen and (max-width: 768px) {
    .box-grid-there {
        width: 100%;
    }

    .box-grid, .box-grid-there {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 10px; 
        width: 100%;
    }
}

/*========================================================
                    TITULOS E TEXTOS            
========================================================*/

section.padrao {
    padding: 40px 0;
}

.title {
    color: var(--color-dark-bg);
    font-size: 24px;
    padding-bottom: 20px;
    font-weight: 100;
}

.title-single {
    font-size: 18px;
    color: var(--color-gray-600);
    font-weight: 500;
}

.text-single {
    color: var(--color-gray-600);
    font-size: 14px;
}

.title-landing {
    color: var(--color-gray-600);
    font-size: 30px;
    font-weight: 400;
    text-align: center;
    /* margin-bottom: 15px; */
}

.title-filter {
    color: var(--color-dark-bg);
    font-weight: 500;
    font-size: 14px;
    margin: 10px 0;
}

.title-login {
    font-size: 26px;
    font-weight: 600;
    background-image: linear-gradient(to right, #291e15, #254797);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.title-painel {
    color: var(--color-gray-600);
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 10px;
}

.title-section {
    color: var(--color-dark-bg);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
}

.title-label {
    color: #4d4d4d;
    font-weight: 300;
    font-size: 14px;
    padding-bottom: 5px;
}

.text {
    color: var(--color-gray-600);
    font-size: 16px;
    font-weight: 400;
    overflow-wrap: break-word;
    word-break: break-word;
}

.text-small { 
    font-size: var(--font-size-sm); 
    color: var(--color-gray-600);
}

.bold{
    font-weight: 500;
    color: var(--color-gray-700);
}

.justify {
    text-align: justify;
}

.text-subtitle {
    color: var(--color-gray-600);
    font-size: 12px;
    font-weight: 400;
}

.text-landing {
    color: var(--color-gray-600);
    font-size: 20px;
    font-weight: 400;
}

.text-accordion {
    color: var(--color-dark-bg);
    font-size: 16px;
    font-weight: 400;
    padding: 5px 0px !important;
    overflow-wrap: break-word;
    word-break: break-word;
}

.subtitle {
    color: var(--color-gray-900);
    font-size: 18px;
}

.list li {
    padding-top: 5px;
}

.name-card {
    color: var(--color-gray-800);
    font-size: 20px;
    padding-bottom: 5px;
    font-weight: 500;
}

.status-card {
    color: var(--color-gray-900);
    font-size: 12px;
}

.title-card {
    font-size: 14px;
    color: var(--color-gray-700);
    font-weight: 400;
    padding: 9px 0;
}

.text-card {
    color: var(--color-gray-700);
    font-size: 14px;
    margin: 5px 0;
    font-weight: 300;
}

/*========================================================
                    ALERTAS            
========================================================*/

.box-alert {
    display: block;
    position: absolute;
    margin: 10px 0;
    padding: 12px 20px;
    text-align: center;
    color: var(--color-purple-gradient-42);
    text-transform: uppercase;
}

.sucesso {
    background-color: var(--color-lightgreen);
}

.erro {
    background-color: var(--color-red);
}

/*========================================================
                    PAGINA DE ERRO             
========================================================*/

.erro404{
    margin: 130px auto;
    text-align: center;
}

.img-error404{
    width: 100%;
    max-width: 600px;
    height: 100%;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .erro404{
        margin: 80px auto;
    }
    .container-buttom .box-flex a{
        margin: 20px 0;
    }
}

/*========================================================
                    PAGINA DE CARREGAMENTO             
========================================================*/

#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ccc; 
    opacity: 0.98; 
    z-index: 9999; 
    display: flex;
    justify-content: center;
    align-items: center;
}

#loadingOverlay .teste {
    position: absolute;
    top: 50%;  
    left: 50%;
    transform: translate(-50%,-50%);
}

#loadingOverlay .teste .imagem{
    opacity: 0.9;
    width: 250px;
    height: 250px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3); 
    border-radius: 50%;
    border-top-color: #ffffff; 
    animation: spin 1s linear infinite;
}

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

/*========================================================
                        CARD PADRAO             
========================================================*/

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    transition: var(--transition, all 0.3s ease);
    overflow: hidden;
    border-radius: var(--radius-md, 8px);
}

/* Opcional: Apenas se quiser que todos tenham um comportamento de hover comum */
.card:hover {
    transform: translateY(-5px);
}

/* Temas de Cor */
.card-white {
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-200);
}

.card-dark {
    background-color: #262E3C;
    color: var(--color-white);
    border: 1px solid transparent;
}

/* Temas de Sombra (você já tem as variáveis, apenas aplique) */
.card-shadow-sm { box-shadow: var(--shadow-sm); }
.card-shadow-md { box-shadow: var(--shadow-md); }
.card-shadow-lg { box-shadow: var(--shadow-lg); }

/*========================================================
                        BADGE            
========================================================*/

.badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 200;
    width: fit-content;
    display: inline-block;
    border: 1px solid transparent;
}

.floating {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

.badges-wrapper {
    position: absolute; top: 20px; left: 20px;
    display: flex; gap: 10px; 
}

.bg-purple {
    padding: 0;
    border-radius: 12px;
    color: #883397;
    background-color: #f3e5f5;
}

.bg-green {
    background: #e6fffa;
    color: #00b894;
    border: 1px solid #00b894;
    padding: 4px 10px;
}

.bg-red {
    background: #fff1f1;
    color: #ca0d0d;
    border: 1px solid #ce6161;
    padding: 4px 10px;
}


/*========================================================
                        BOTÕES            
========================================================*/

.line {
    border: 1px solid var(--color-primary) !important;
    color: var(--color-primary);
}

.gray {
    background: var(--color-gray-300);
    color: var(--color-black);
    border: 1px solid var(--color-gray-500);
}

.white {
    background: var(--color-white);
    color: #6c6a6a;
    border: 1px solid #e6e6e6 !important;
}

.color-orange {
    color: #ef6c00 !important;
}

.dark-orange {
    background: #ef6c00;
    color: white;
}

.dark-orange a:hover{
    background: #a04800 !important;
    color: white;
    width: 100%;
}

.purple:hover {
    background: var(--color-purple-gradient-10);
    color: var(--color-white);
}

.dark-purple {
    background: var(--color-primary);
    color: white;
}

.dark-purple:hover {
    background: var(--color-primary-dark);
    color: var(--color-white);
}

.red {
    background: var(--color-red);
    color: white;
}

.red:hover {
    background: var(--color-dark-red);
    color: var(--color-white);
}

.green {
    background: var(--color-green);
    color: white;
}

.blue {
    background-color: #2F64C8;
    color: white;
}

.blue:hover {
    background-color: #2655ab;
}

.dark-blue {
    background-color: #080235;
    color: white;
}

.dark-blue:hover {
    background-color: #0a0626;
    color: white;
}

.orange {
    background-color: #F8B38E;
    color: white;
}

.orange:hover {
    background-color: #e3a27e;
}

.btn-padrao {
    width: 100%;
    padding: 10px;
    display: block;
    border-radius: 6px;
    text-align: center;
    border: 1px;
    cursor: pointer;
    justify-content: center;
}

.btn-simple {
    padding: 6px 24px;
    border-radius: 6px;
    text-align: center;
    border: 1px;
    display: inline-block;
    cursor: pointer;
}

/* .btn-static {
    padding: 5px;
    border-radius: 6px;
    text-align: center;
    border: 1px;
    display: inline-block;
    cursor: pointer;
} */

/* .btn-static {
    padding: 8px 12px;
    border-radius: 6px;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    font-size: 14px;
    flex: 1;
} */

.btn-convertion {
    padding: 6px 24px;
    border-radius: 6px;
    text-align: center;
    border: 1px;
    cursor: pointer;
}

.btn-outline {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    text-align: center;
    display: inline-block;
    background: transparent;
}

.outline-orange {
    border: 2px solid #ef6c00;
    color: #ef6c00;
}

.outline-white {
    border: 2px solid #ffffff;
    color: #ffffff;
}

.btn-follow {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    display: flex;
}

.btn-follow i {
    padding-top: 1px;
    padding-right: 5px;
}

.close-camera {
    position: absolute; 
    top: 15px; 
    left: 15px; 
    width: 45px; 
    height: 45px; 
    border-radius: 50%; 
    padding: 0; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    z-index: 101; cursor: pointer; 
    border: 2px solid #fff; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.5); 
    background-color: #ff4b4b;
}

.container-buttom {
    margin: 5px 0;
}

/*========================================================
                        HEADER            
========================================================*/

header {
    background-color: var(--color-white);
    margin: 0;
    position: relative;
    /* box-shadow: 0 1px 10px rgb(154 154 154 / 15%); */
}

.mobile {
    display: none;
}

nav.desktop ul {
    position: relative;
    list-style-type: none;
    padding: 8px 0;
}

nav.desktop ul li {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    font-weight: 300;
    color: var(--color-gray-700);
    font-size: 16px;
    padding: 10px 5px;
    max-width: 100%;
    background-color: white;
}

.logo {
    flex: 0 1 auto;
    max-width: 180px;
}

.logo img {
    width: 100%;
    height: 20px;
    display: block;
    margin-top: 17px;
}

nav.mobile {
    display: none;
    float: right;
}

nav.mobile ul {
    position: absolute;
    top: 70px;
    left: 0;
    background-color: var(--color-purple-gradient-50);
    display: none;
    z-index: 99;
    text-align: center;
}

nav.mobile li:hover {
    background-color: rgba(200, 200, 200, 0.45);
}

nav.mobile a {
    color: white;
    display: block;
    text-decoration: none;
}

nav.mobile li {
    padding: 8px 0;
    width: 100%;
}

.user-dropdown {
    position: relative;
    cursor: pointer;
}

.user-dropdown {
    position: relative;
}

.user-dropdown.show .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 0;
    padding: 10px 0;
}

.dropdown-menu a {
    display: block;
    text-decoration: none;
    color: var(--color-gray-700);
    font-weight: 400;
}

nav.mobile {
    display: none !important;
}

.btn-menu-mobile-open {
    display: none;
    cursor: pointer;
    font-size: 26px;
    color: var(--color-gray-700);
    padding: 10px;
}

.mobile-menu-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: 280px;
    max-width: 80%;
    height: 100%;
    background-color: var(--color-white);
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu-sidebar.open {
    transform: translateX(0);
}

.menu-header-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.logo-mobile img {
    max-width: 120px;
    height: auto;
    display: block;
}

.btn-menu-mobile-close {
    font-size: 24px;
    cursor: pointer;
    color: var(--color-gray-700);
}

.menu-list-mobile {
    list-style: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

.menu-list-mobile>li {
    border-bottom: 1px solid #eee;
}

.menu-list-mobile a {
    display: block;
    text-decoration: none;
    color: var(--color-gray-700);
    font-weight: 400;
    padding: 15px;
    transition: background-color 0.2s;
}

.menu-list-mobile a:hover {
    background-color: #f7f7f7;
}

.mobile-accordion-button {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.accordion-icon {
    transition: transform 0.3s;
}

.mobile-accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.mobile-accordion-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #f9f9f9;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.mobile-accordion-list li {
    border-bottom: none;
}

.mobile-accordion-list li a {
    padding: 10px 15px 10px 30px;
    color: var(--color-gray-600);
}

.mobile-accordion-list li a:hover {
    background-color: #f0f0f0;
}

@media screen and (max-width: 768px) {
    nav.desktop {
        display: none !important;
    }

    .btn-menu-mobile-open {
        display: block;
    }

    .mobile-menu-sidebar {
        display: block;
    }

    .center-hero{
        text-align: center;
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .center-hero{
        text-align: center;
        max-width: 100%;
    }
}

/*========================================================
                    DROPDOWN            
========================================================*/

.user-dropdown {
    position: relative;
}

.dropdown-menu li {
    display: block;
    padding: 0;
    white-space: normal !important;
    text-align: left;
}

.user-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: -30%;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 9999;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.user-dropdown .dropdown-menu.show {
    display: block;
    width: 170px;
    display: inline-block;
}

.user-dropdown .dropdown-menu.show li {
    display: block;
    padding: 5px 10px;
    background-color: var(--color-white);
}

.user-dropdown .dropdown-menu.show li:hover {
    background-color: #ccc;
}

.barra {
    height: 40px;
    margin: 20px 0;
    align-items: center;
    justify-content: space-between;
}

.filter-anchor {
    display: inline-block !important;
    position: relative !important;
    vertical-align: middle !important;
}

.filter-anchor .dropdown-menu {
    left: 0;
    top: 100%;
    margin-top: 5px;
    min-width: 140px;
}

.filter-anchor .dropdown-menu li a {
    white-space: nowrap !important;
}

@media (max-width: 768px) {
    .filter-anchor .dropdown-menu {
        position: absolute !important;
        left: 0 !important;
        width: 120px;
        transform: none !important;
        margin: 0 auto;
    }
}

@media (max-width: 420px) {
    .filter-anchor .dropdown-menu {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
}

.filter-anchor .dropdown-menu {
    right: 0 !important;
}

/*========================================================
                        FOOTER            
========================================================*/

.footer {
    background: #3c424a;
    padding: 15px 0;
    color: #bababa;
}

.footer .list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .list li {
    margin-bottom: 10px;
}

.footer .list a:hover {
    color: #fff;
}

.divider {
    width: 100%;
    height: 1px;
    background-color: #5d6166;
    margin: 40px 0 20px;
}

.social-icons {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: flex;
    gap: 5px;
}

.social-icons li {
    margin: 0;
}

.social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #5d6166;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: #8a2be2;
}

@media (max-width: 768px) {
    .footer .box-flex {
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        margin: 0 auto;
    }

    .footer .box-flex>div {
        text-align: center;
        width: 100%;
        margin-bottom: 25px;
    }

    .footer .social-icons {
        justify-content: center;
    }
}

/*========================================================
                        HOME 
========================================================*/

.text-white {
    color: var(--color-white) !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-section {
    background: var(--color-white);
}

.section-white {
    background-color: var(--color-white);
}

.section-gray {
    background-color: var(--color-gray-bg);
}

.section-dark-blue {
    background-color: #161E2D;
}

.section-cta {
    background-color: var(--dark-primary);
    padding: 80px 0;
}

.hero-img-box {
    position: relative;
    width: 100%;
}

.hero-mockup-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.3);
    display: block;
}

.hero-badge {
    position: absolute;
    background: #fff;
    padding: 10px 15px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.ai-bg {
    top: 20px;
    right: -35px;
}

.rev-bg {
    bottom: 20px;
    left: -10px;
}

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

.hero-top-badge {
    background: #f2f2f7;
    border: 1px solid #e5e5ea;
    color: #3a3a3c;
}

.hero-main-title {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
}

.section-title-dark {
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-subtitle-max {
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.section-dark {
    background-color: #14181F;
}

.card-border {
    border: 1px solid var(--color-gray-200);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.card-icon-box {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f2f2f7;
    border: 1px solid #e5e5ea;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon-box i {
    color: #ef6c00;
    font-size: 18px;
}

.chat-mockup-img {
    max-width: 550px;
    width: 100%;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* .card-integracao {
    width: 130px;
    align-items: center;
    border: 1px solid var(--color-gray-200);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
} */

.card-integracao {
    display: flex !important;
    flex-direction: row !important; /* GARANTE lado a lado */
    align-items: center !important;
    gap: 15px;
    width: 260px;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #fff;
}

.card-integracao:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.card-integracao:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.icon-square {
    width: 48px;
    height: 48px;
    background-color: #f4f4f5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 20px;
}
/* 
.custom-slider-area {
    position: relative;
    width: 100%;
    padding: 0 50px;
    box-sizing: border-box;
    overflow: hidden;
} */

.testimonial-container {
    min-height: 180px;
    display: flex;
    align-items: center;
}

.testimonial-wrapper {
    max-width: 800px;
    margin: 40px auto;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-active-card {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
}

.quote-icon-large {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 90px;
    color: #f3f3f3;
    z-index: 0;
}


.stars {
    color: #ef6c00 !important;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.4rem;
    font-style: italic;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.author-info strong {
    display: block;
    font-size: 1.1rem;
}

.author-info span {
    color: #8358ff;
    display: block;
    font-size: 0.9rem;
}

.author-info small {
    color: #999;
}

.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    width: 100%;
    gap: 10px;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.dot.active {
    width: 30px;
    background: #ef6c00;
    border-radius: 10px;
}

.nav-arrows {
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slide-out {
    transform: translateX(-20px);
    opacity: 0;
}

.slide-in {
    transform: translateX(20px);
    opacity: 0;
}

.metrics-home{
    font-size:60px; font-weight:900; line-height:1;
}

/* ==========================================================================
EFEITO REVEAL (SCROLL)
========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.custom-slider-area {
    position: relative;
    width: 100%;
    padding: 0 50px;
    box-sizing: border-box;
    overflow: hidden;
}
/* ==========================================================================
MEDIA QUERIES
========================================================================== */
@media(max-width: 768px) {
    .hero-p-lab .box-flex {
        flex-direction: column;
        gap: 30px;
    }

    .hero-p-lab .w50 {
        max-width: 100%;
        padding: 0 15px !important;
    }

    .ai-bg {
        right: 10px;
    }

    .rev-bg {
        left: 10px;
    }

    .box-grid,
    .box-grid-there {
        grid-template-columns: 1fr;
    }

    .testimonial-wrapper {
        /* min-height: 335px; */
        /* height: 335px; */
    }

    .custom-slider-area {
        padding: 0;
        width: 100%;
        height: 100%;
    }

    .card-integracao {
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        padding: 15px 25px;
        gap: 20px;
    }
}


/*========================================================
  2. LAYOUTS & CONTAINERS
========================================================*/

.box-hero,
/* .content-grid, */
.flex-benefits,
.about-section,
.reviews-grid {
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.box-hero {
    gap: 40px;
}

.flex-benefits {
    gap: 30px;
}

.about-section {
    gap: 40px;
}

/*========================================================
        TÍTULOS E TEXTOS HOME 
========================================================*/

.section-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-dark-bg);
    margin: 10px 0;
}

.section-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-dark-bg);
    margin-bottom: 40px;
}

.section-desc {
    font-size: 15px;
    color: var(--color-gray-text);
    line-height: 1.5;
}

.about-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 18px;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--color-white);
    margin-bottom: 30px;
    line-height: 1.5;
}


.hero-title {
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    color: #030712;
}

.hero-title-span {
    color: var(--color-primary);
}

.hero-subtitle {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 20px;
    color: var(--color-gray-800)
}

.hero-text {
    font-size: 18px;
    color: var(--color-gray-600);
    font-weight: 400;
}

/*========================================================
  4. COMPONENTES GERAIS (LISTAS, IMAGENS, FORMS)
========================================================*/

.hero-list {
    list-style: none;
    margin: 5px 0 18px;
    padding: 0;
}

.hero-list li {
    margin: 5px 0;
    position: relative;
    font-size: 16px;
    font-weight: 400;
    color: var(--color-gray-600)
}

.hero-image {
    width: 100%;
    max-width: 420px;
    display: block;
    margin-left: auto;
    border-radius: 10px;
    position: relative;
    top: -20px;
}

.about-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
}

.search-box {
    display: flex;
    max-width: 100%;
    margin-top: 18px;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    overflow: hidden;
    background: var(--color-white);
}

.search-box input {
    flex: 1;
    padding: 14px 18px;
    border: none;
    outline: none;
    font-size: 16px;
}

.search-box button {
    border: none;
    padding: 14px 24px;
    cursor: pointer;
    white-space: nowrap;
    background-color: #5d40a0;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.search-box input {
    border: none;
}

.search-box form {
    display: flex;
    width: 100%;
}

.metrics-home{
    font-size:60px; font-weight:900; color:#080235; line-height:1;
}

/*========================================================
  5. CARDS & COMPONENTES ESPECÍFICOS
========================================================*/

.media-item {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.content-body {
    padding: 20px;
}

.media-item .text {
    font-style: italic;
}

.feature-card {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    /* text-align: center; */
    height: auto;
    border-radius: var(--radius-lg, 12px);
    transition: var(--transition, all 0.3s ease);
    padding: 20px;
    background-color: #fff;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon-wrapper {
    width: 65px;
    height: 65px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.feature-icon {
    font-size: 30px;
    color: var(--color-primary);
    margin: 0;
}

.section-dark-blue {
    background-color: var(--dark-blue, #17202E);
}

.dark-feature-card {
    background-color: #262E3C;
    padding: 30px 20px;
    text-align: left;
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    color: var(--color-white);
    /* transition: all 0.3s ease; */
    text-align: center;
    margin: 0 auto;
}

/* .dark-feature-card:hover {
    transform: translateY(-8px);
    border: 1px solid var(--color-purple-border, #d8cafd);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
} */

.dark-feature-icon {
    font-size: 40px;
    color: var(--color-primary, #7952B3);
    display: block;
    margin-bottom: 18px;
    margin-left: 0;
}



.custom-track {
    display: flex;
    gap: 5px;
    overflow-x: hidden; 
    justify-content: flex-start; 
    padding-bottom: 10px;
    scroll-behavior: auto !important; 
    -webkit-overflow-scrolling: auto;
}

.custom-card {
    flex: 0 0 auto; 
    width: 150px; 
    height: 200px; 
    display: flex; 
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
    margin: 0;
    user-select: none;
    -webkit-user-drag: none;
}

.testimonial-card {
    width: 250px;
    height: 310px;
}

.custom-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.custom-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    padding: 0 10px;
}

.custom-nav-btn:hover { background: rgba(0,0,0,0.8); }
.custom-prev { left: 0; }
.custom-next { right: 0; }

/*========================================================
  6. PLANOS DE PREÇO
========================================================*/

.plans-wrapper {
    align-items: stretch;
    gap: 30px;
}

.plan-card-announcement {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--color-purple-border, #d8cafd);
    background: var(--color-white, #ffffff);
}

.plan-content {
    padding: 20px;
}

.plan-badge {
    position: absolute;
    top: 0;
    right: 0px;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-white);
    border-radius: 0 0 0px 8px;
    z-index: 10;
}

.badge-model {
    background-color: var(--color-primary, #7952B3);
}

.badge-client {
    background-color: var(--color-gray-500, #adb5bd);
}

.plan-price-block {
    line-height: 1;
    display: flex;
    align-items: baseline;
}

.old-price {
    font-size: 14px;
    color: var(--color-gray-500, #adb5bd);
    margin-right: 8px;
}

.main-price {
    font-size: 40px;
    font-weight: 800;
    color: var(--color-primary, #7952B3);
    margin-right: 5px;
}

.price-suffix {
    font-size: 18px;
    color: var(--color-gray-text, #555);
    font-weight: 600;
}

.main-price.free {
    font-size: 32px;
    color: var(--color-gray-900, #212529);
}

.premium-callout {
    font-size: 14px;
    color: var(--color-gray-600, #6c757d);
}

.offer-launch,
.exclusive-resource {
    font-size: 14px;
    font-weight: 600;
}

.offer-launch {
    color: var(--color-red, #ff8a80);
}

.exclusive-resource {
    color: var(--color-primary-dark, #472180);
}

.offer-launch .fa-tag,
.exclusive-resource .fa-gem {
    margin-right: 8px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 40px;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    font-size: 15px;
    color: var(--color-gray-700, #495057);
    margin-bottom: 15px;
}

.plan-features .fa-check-circle {
    color: var(--color-primary, #7952B3);
    margin-right: 10px;
    flex-shrink: 0;
    font-size: 18px;
}

/*========================================================
  8. MEDIA QUERIES HERO 
========================================================*/

@media (max-width: 768px) {
    .hero-title {
        font-size: 30px;
        text-align: center;
    }

    .hero-subtitle{
        font-size: 30px;
        text-align: center;
        padding: 20px;
    }

    .hero-image {
        margin: 30px auto 0;
    }

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

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

    .hero-list {
        text-align: center;
        padding: 0;
    }

    .hero-list li {
        padding-left: 0;
    }

    .hero-list li::before {
        display: none;
    }

    .filters-row {
        justify-content: center;
    }

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

    .cta-title {
        font-size: 24px;
    }

    .cta-subtitle {
        font-size: 16px;
    }

    .slick-prev,
    .slick-next {
        font-size: 18px;
        padding: 8px;
    }

    .plan-content {
        height: auto;
        margin: 20px 0;
    }

    .plan-card-announcement {
        margin: 20px 0;
    }

    .dark-feature-card {
        margin: 20px 0;
    }
}

/*========================================================
                        MODAL HOME            
========================================================*/

.sugestoes-lista-home {
    position: absolute;
    width: 100%;
    left: 0;
    top: 38px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow-y: hidden;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.sugestoes-lista-home li {
    padding: 8px 10px;
    cursor: pointer;
}

.sugestoes-lista-home li:hover {
    background-color: #f0f0f0;
}

.container-get-localization {
    text-align: right;
}

.btn-modal-city {
    border: none;
    padding: 0 10px;
    background: none;
    cursor: pointer !important;
    color: var(--color-dark-bg);
    font-size: 16px;
    font-weight: 500;
}

.custom-live-button {
    display: inline-flex;
    align-items: center;
    padding-right: 15px;
    background-color: var(--color-primary);
    color: white;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.custom-live-button:hover {
    background-color: var(--dark-primary);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}

.custom-play-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: white;
    margin-right: 8px;
}

.custom-live-button i {
    color: var(--color-primary-dark);
    font-size: 36px;
}

/*========================================================
                        REGISTER            
========================================================*/

.register-page {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 2%;
    min-height: 60%;
    background-color: var(--color-gray-100);
}

.register-form-container {
    background-color: var(--color-white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 700px;
}

.register-title {
    font-weight: 200;
    color: var(--color-gray-600);
    text-align: center;
}

.register-progress-bar {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0 16px;
}

.register-step {
    display: flex;
    align-items: center;
    flex: 1;
}

.register-step:last-child {
    flex: 0;
}

.register-step-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--color-white);
    border: 2px solid var(--color-gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--color-gray-600);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.register-step-line {
    flex: 1;
    height: 2px;
    background-color: var(--color-gray-300);
    margin: 0 -1px;
}

.register-step.active .register-step-circle,
.register-step.completed .register-step-circle {
    background-color: var(--color-main);
    border-color: var(--color-main);
    color: var(--color-white);
}

.register-step.completed .register-step-line {
    background-color: var(--color-primary);
}

.register-step-content {
    display: none;
}

.register-step-content.active {
    display: block;
    animation: register-fadeIn 0.5s ease;
}

.welcome-step-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.welcome-step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background-color: var(--color-purple-bg);
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 600;
    margin-right: 10px;
}

.security-banner {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    margin: 20px 0;
    border-radius: 8px;
    background-color: var(--color-purple-gradient-23);
    border: 1px solid var(--color-purple-gradient-24);
    color: var(--color-gray-900);
    font-size: 14px;
    width: 100%;
}

.security-banner .fa-shield {
    color: var(--color-purple-gradient-24);
    font-size: 18px;
    flex-shrink: 0;
    margin-right: 12px;
}

#recaptcha-container {
    opacity: 0;
    height: 0;
    overflow: hidden;
}

@keyframes register-fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.radio-option {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: border-color .3s;
}

.radio-option:hover,
.radio-option input:checked {
    border-color: #8A2BE2;
}

.radio-option input {
    display: none;
}

.radio-option .radio-icon {
    flex-shrink: 0;
    margin-right: 15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    place-content: center;
    background-color: #f0f0f5;
    align-items: center;
}

.radio-option .radio-icon .fa {
    font-size: 18px;
    color: #8A2BE2;
}

.radio-option .radio-details {
    flex-grow: 1;
}

.radio-option .radio-details strong {
    font-weight: 600;
    color: #333;
}

.radio-option .radio-details span {
    font-size: 14px;
    color: #777;
}

.radio-option.selected {
    border-color: #824ca4ff;
    background-color: #ffffffff;
}

@media (max-width: 768px) {
    .register-form-container {
        height: auto;
    }

    .register-progress-bar {
        padding: 0;
        width: 80%;
    }

    .register-step-circle {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }

    .register-progress-bar {
        width: 100%;
    }

    .feature-card {
        height: auto;
        margin: 20px 0;
    }
}

@media (max-width: 420px) {
    .register-form-container {
        height: auto;
    }

    .register-progress-bar {
        width: 100%;
    }

    .feature-card {
        height: auto;
        margin: 20px 0;
    }
}

/*========================================================
                        CONTACT            
========================================================*/

.white-feature-icon {
    font-size: 40px !important;
    color: var(--color-primary, #7952B3);
    display: block;
    margin-bottom: 18px;
    margin-left: 0;
}

/*========================================================
                        LOGIN            
========================================================*/

.login-wrapper-page {
    margin-top: 80px;
    padding-bottom: 80px;
}

.login-main {
    top: 0;
    left: 0;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.login-container {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 550px;
    overflow: hidden;
    margin: 0 auto;
}

.login-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.login-input-icon,
.login-password-toggle {
    position: absolute;
    color: var(--color-gray-600);
    font-size: 16px;
}

.login-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
    text-align: center;
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background-color: #D3D8DE;
}

.login-input-icon {
    left: 12px;
}

.login-password-toggle {
    right: 12px;
    cursor: pointer;
}

.form-control-login {
    width: 100%;
    padding: 12px 40px;
    border: 1px solid var(--color-gray-300);
    border-radius: 6px;
    font-size: 15px;
    transition: var(--transition);
}

.form-control-login:focus {
    border-color: var(--color-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(227, 52, 47, 0.1);
}

.remember-label {
    font-size: 14px;
    color: #333;
    cursor: pointer;
    user-select: none;
    padding-left: 10px;
}

.login-forgot {
    color: #7b6be6;
    text-decoration: none !important;
    font-size: 14px;
}

.login-forgot:hover {
    text-decoration: underline;
}

.checkbox-login {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #7b6be6;
    margin-right: 6px;
}

.checkbox-login:checked {
    background: #269;
    border-color: #269;
}

.checkbox-login:checked::after {
    content: "\f00c";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 10px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*========================================================
                    MODAL LOGIN     
========================================================*/

.modal-overlay-login {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 104, 47, 0.6);
    z-index: 99999;
    display: none;
}

.modal-login-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    z-index: 1001;
}

.modal-content-modal-login {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 650px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 100000;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .modal-content-modal-login {
        width: 80%;
    }

    .box-login {
        padding: 20px;
    }

    .login-container {
        background-color: var(--color-white);
        padding: 20px 0;
        height: 650px;
    }

    @media screen and (max-width: 420px) {
        .modal-content-modal-login {
            width: 95%;
            padding: 0;
        }

        .modal-content-modal-login .login-container {
            padding: 0 !important;
            margin: 0 !important;
            box-shadow: none !important;
            width: 100% !important;
            border: none !important;
        }

        .login-input-group {
            width: 100%;
        }
    }
}

/*========================================================
                        ACOMPANHANTES            
========================================================*/

.fast-filter-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    flex-grow: 1;
    overflow: hidden;
    width: 45%;
    padding: 0 40px;
}

.fast-filter {
    display: flex;
    gap: 10px;
    overflow-x: scroll;
    scroll-behavior: smooth;
    width: 100%;
    margin: 10px 30px;
}

.fast-filter::-webkit-scrollbar {
    display: none;
}

.filter-button {
    flex-shrink: 0;
}

.arrow-btn-carrossel-search {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 100%; 
    border: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: opacity 0.3s;
}

.arrow-btn-carrossel-search.left { 
    left: 0; 
}

.arrow-btn-carrossel-search.right { 
    right: 0; 
}

.arrow-btn-carrossel-search.left, .arrow-btn-carrossel-search.right{
    background-color: #F9FAFB;
    cursor: pointer;
}

.arrow-btn-carrossel-search.hidden {
    opacity: 0;
    pointer-events: none;
}

.arrow-btn-carrossel.left {
    left: 0;
}

.arrow-btn-carrossel.right {
    right: 0;
}

.arrow-btn-carrossel.left,
.arrow-btn-carrossel.right {
    background-color: #F9FAFB;
    cursor: pointer;
}

.arrow-btn-carrossel.hidden {
    opacity: 0;
    pointer-events: none;
}

.contents-switch {
    display: contents;
}

.img-not-found{
    display: block;
    margin: 0 auto;
    margin-bottom: 15px;
    width: 232px;
}

@media screen and (max-width: 768px) {
    .barra{
        height: 200px;
    }

    .left-options {
        text-align: center;
        display: grid;
    }

    .fast-filter-wrapper{
        width: 100%;
    }

    .btn-localization {
        width: 100%;
        display: flex;
        justify-content: center;
        margin: 10px 0;
    }

    .fast-filter-wrapper {
        margin: 50px auto;
    }

    .contents-switch {
        display: contents;
    }

    .fast-filter-wrapper{
        margin: 20px auto;
    }
}

.box-content-single {
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    background-color: var(--color-white);
    border-radius: 12px;
}

.box-content-capa {
    margin: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    background-color: var(--color-white);
    border-radius: 12px;
}

.cover {
    height: 250px;
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-color: #dbdbdb;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.single-model-cover-img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.profile {
    height: 150px;
    width: 150px;
    border-radius: 50%;
    background-color: var(--color-black);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    left: 30px;
    top: -60px;
}

.single-model-profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.profile-dropdown {
    display: none;
    background-color: #f8f8f8;
    border: 0.5px solid #ffffff;
    text-align: center;
}

.profile-dropdown li {
    cursor: pointer;
    border: 0.5px solid #e5e5e5;
}

.model-name {
    font-size: 26px;
    font-weight: bold;
    color: var(--color-primary-dark);
    margin: 10px 0;
}

.content-descricao {
    width: 80%;
    margin: 0 auto;
}

.content-descricao p.text{
    text-align: justify;
    line-height: 1.5;
}

.content-descricao p.text b{
    font-weight: 600;
}
.content-descricao ul li{
    margin-left: 40px;
    padding-left: 10px;
    margin-top: 10px;
    list-style-type: disc;
}

.single-model-box {
    background-color: var(--color-gray-100);
    border-radius: 5px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.single-model-photo {
    height: 70px;
}

.custom-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease, background 0.3s ease;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-overlay:hover {
    background: rgba(0, 0, 0, 0.45);
}

@media screen and (max-width:420px){
    .video-wrapper {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        aspect-ratio: 4 / 3; 
        max-width: 450px;
        height: 768px;
        margin: 0 auto;
        overflow: hidden;
        background-color: #000;
        border-radius: 15px;
    }

    .face-frame-container{ width: 100%; }
    .face-frame-container .face-frame-circle {
        width: 80%;
        height: 420px;
        margin: 0 auto;
    }
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.play-button::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 22px solid #fff;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
}

.pause-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.pause-button::before,
.pause-button::after {
    content: "";
    width: 8px;
    height: 26px;
    background: #fff;
    border-radius: 2px;
    margin: 0 4px;
}

.working-hours-table {
    width: 100%;
    border-collapse: collapse;
}

.working-hours-row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding: 8px 0;
    width: 100%;
}

.working-hours-day {
    font-style: italic;
    font-weight: 400;
    color: #333;
    padding-left: 20px;
}

.working-hours-time {
    flex: 1;
    text-align: right;
    color: #333;
    padding-right: 20px;
}

.valores-table {
    width: 100%;
    border-collapse: collapse;
}

.valores-table tr {
    border-bottom: 1px solid #ccc;
}

.valores-table td {
    padding: 8px 12px;
    color: var(--color-gray-600);
}

.service-item.open .accordion-content {
    display: block;
}

.service-span {
    font-size: 14px;
    font-weight: 500;
    padding: 5px;
    text-align: center;
    border-radius: 15px;
    cursor: pointer;
}

.faz {
    border: 1px solid #472180;
    color: #472180;
}

.recebe {
    border: 1px solid #1a1c26;
    color: #1a1c26;
}

.service-actions {
    display: -webkit-box;
    align-items: center;
    gap: 5px;

}

.atendimento .service-accordion {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
}

.atendimento .service-accordion[style*="block"] {
    max-height: 500px;
    opacity: 1;
}

.icon-money,
.icon-pix,
.icon-credit-card {
    font-size: 28px;
    margin-bottom: 5px;
    color: #7a7a7aff;
}

@media (max-width: 768px) {
    .service-item .box-flex {
        flex-wrap: nowrap;
        align-items: center;
    }

    .accordion-toggle-acompanhantes {
        margin-left: auto;
    }

    .profile {
        height: 130px;
        width: 130px;
    }

    .single-model-box {
        margin: 10px 0;
    }

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

    .box-content-single{
        margin: 10px;
    }
}

@media (max-width: 420px) {
    .box-content-single {
        padding: 5px;
    }

    .service-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

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

    .accordion-toggle-acompanhantes {
        margin-left: 0;
    }

    .valores-table td {
        padding: 4px 0;
    }

    .working-hours-day {
        padding: 20px 0;
    }
}

@media screen and (max-width: 768px) {
    .box-flex {
        display: block;
    }

    .box-revert {
        flex-direction: column-reverse;
        display: flex;
    }

    .content {
        padding: 20px;
    }

    .profile {
        left: calc(50% - 65px);
    }

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

/*========================================================
                    MODAL NUMERO DE TEFEFONE            
========================================================*/
.number-modal-phone-box {
    background-color: var(--color-gray-200);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.number-modal-phone-number {
    font-size: 18px;
    color: #333;
    font-weight: 300;
}

.number-modal-actions-full {
    display: flex;
    justify-content: space-around;
    gap: 10px;
}

.number-modal-actions-full button {
    flex-grow: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color .3s;
}

/*========================================================
                        FILTROS            
========================================================*/

.box-content-header-filter, .footer-filter {
    flex-shrink: 0; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06); 
}

.content-filter-flex {
    display: flex;
    flex-grow: 1;
    height: 0;
    overflow: hidden; 
}

.sidebar-filter{
    width: 40%;
    flex-shrink: 0; 
    color: #4b5563;
    padding: 0; 
    background: #ededed;
}

.main-filter{
    width: 60%;
    overflow-y: auto; 
    height: 100%; 
}

.menu-item-filter {
    margin: 0; 
    padding: 15px 0; 
    font-size: 12px; 
    font-weight: 500; 
    border-bottom: 1px solid #ccc; 
    cursor: pointer;
}

.filter-reset-button {
    color: #000;
    font-weight: 500;
    border: 1px solid #ccc;
    padding: 9px 30px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    text-align: center;
}

.filter-reset-button:hover {
    background: #ccc;
}

.footer-filter {
    position: sticky;
    bottom: 0;
    background-color: #ffffffff;
    padding: 16px 24px;
    border-top: 1px solid #ddd;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.filter-wrapper {
    width: 500px;
    max-width: 100%;
    height: 550px;
    margin: 0 auto;
    background-color: #ffffff;
    position: relative;
    overflow-x: hidden;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

.box-content-header-filter {
    position: sticky;
    top: 0;
    z-index: 20;
    background-color: #fff;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.container-filter {
    flex: 1 1 auto;
    flex-wrap: nowrap;
    max-height: 650px;
}

.box-filter-container {
    width: 100%;
    margin: 0 auto;
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
}

.box-features-card {
    flex: 1;
    min-width: 100%;
    max-height: auto;
    padding: 0px 10px;
    overflow: hidden;
}

.filter-button {
    padding: 4px 8px;
    border-radius: 20px;
    border: 2px solid #c68adb;
    background-color: #ffffff;
    color: #58007b;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    margin: 5px;
}

.filter-button.active {
    color: #000000ff;
    border: 2px solid #8b58f8ff;
    font-weight: 500;
}

.filter-button.active .icons-gender {
    color: #7E69AB;
}

.slider-label {
    font-weight: bold;
    margin-bottom: 10px;
}

.filter-wrapper::-webkit-scrollbar {
    width: 5px;
}

.filter-buttons-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.service-dropdown-content {
    display: flex;
}

.service-dropdown-content label {
    margin: 0 auto;
}

.slider-filter {
    position: relative;
    height: 30px;
}

.slider-track {
    height: 1px;
    background: #ccc;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 1;
    border: none;
}

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    top: 3px;
    background: transparent;
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    z-index: 3;
    border: none;
}

input[type="range"]::-webkit-slider-runnable-track {
    background: transparent;
    border: none;
}

input[type="range"]::-moz-range-track {
    background: transparent;
    border: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    background: #fff;
    border: 2px solid #7E69AB;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    margin-top: -6.5px;
}

input[type="range"]::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: #fff;
    border: 2px solid #7E69AB;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
}

.slider-values {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 14px;
    padding: 0 5px;
    margin-top: 8px;
}

.slider-value {
    padding: 4px 12px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    color: #333;
}

.accordion-filter {
    margin: 0 auto;
    width: 100%;
    border-bottom: 1px solid #e5e7eb;
}

.accordion-toggle {
    background: none;
    border: none;
    color: #575757ff;
    font-weight: 300;
    font-size: 16px;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
    padding: 12px 10px;
}

.accordion-toggle:hover {
    color: var(--color-primary-dark);
}

.accordion-arrow {
    font-size: 14px;
    transition: transform 0.3s;
}

.accordion-content {
    display: none;
}

.accordion-filter.active .accordion-content {
    display: block;
}

.accordion-filter.active .accordion-arrow {
    transform: rotate(180deg);
}

@media screen and (max-width: 768px) {
    .filter-wrapper {
        width: 500px;
        max-width: 80%;
    }
}

@media screen and (max-width: 420px) {
    .filter-wrapper {
        width: 500px;
        max-width: 65%;
    }
}

/*========================================================
                        PAINEL             
========================================================*/

.description-box-content {
    line-height: 27.6px;
    color: var(--color-primary);
}

.notify {
    padding: 20px 0;
    color: var(--color-primary-dark);
}

.btn-notify {
    padding: 5px 10px;
    border-radius: 10px;
    border: 1px solid var(--color-primary);
    cursor: pointer;
    background-color: var(--color-white);
    color: var(--color-primary);
}

.btn-notify:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-notify:active {
    box-shadow: 5px 5px 5px -3px #ccc;
}

.notification-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
    padding: 5px 6px;
    border-radius: 50%;
    background: #ccc;
    margin: 15px;
}

#notification-bell {
    font-size: 20px;
    color: #555;
}

.notification-count {
    position: absolute;
    bottom: -5px;
    right: -15px;
    background: red;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 50%;
    display: none;
}

.dropdown-notifications {
    display: none;
    position: absolute;
    right: 0;
    margin-top: 10px;
    background: #fff;
    border: 1px solid #ddd;
    width: 300px;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    z-index: 999;
}

.dropdown-notifications.active {
    display: block;
}

.notification-item {
    padding: 10px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.notification-item.read {
    background: #f9f9f9;
    color: #777;
}

/*========================================================
                        MENU PAINEL             
========================================================*/

.container-painel {
    /* max-width: 1500px; */
    width: 100%;
    margin: 0 auto;
    /* padding-top: 20px; */
}

.menu-bar,
.carregar-pages {
    height: calc(100% - 60px);
}

.menu-bar {
    background-color: #11151e;
    transition: transform 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

/*========================================================
                HEADER PAINEL         
========================================================*/

.header-logo {
    height: 17px;
    width: auto;
}

.section-header {
    background-color: var(--color-white);
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04); */
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 60px;
}

.section-wrapper-header {
    width: 100%;
    background-color: var(--color-white);
    /* max-width: 1200px; */
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 0 2%;
    margin-bottom: 20px;
}

.header-logo-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-text {
    font-size: 22px;
    font-weight: 100;
    letter-spacing: -1px;
    text-decoration: none;
}

.logo {
    color: var(--color-purple-gradient-12);
    font-weight: 600;
    cursor: pointer;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
}

.dropdown-notifications {
    display: none;
    position: absolute;
    right: 0;
    top: 30px;
    background: var(--color-white);
    width: 320px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    z-index: 999;
    text-align: center;
    cursor: default;
}

.notification-wrapper:hover .dropdown-notifications {
    display: block;
}

.dropdown-header {
    padding: 12px 16px;
    border-bottom: 1px solid var(--color-purple-gradient-41);
    display: block;
    justify-content: space-between;
    font-weight: 600;
    font-size: 14px;
    color: var(--color-purple-gradient-42);
}

.dropdown-header a {
    font-size: 12px;
    color: var(--color-purple-gradient-13);
    text-decoration: none;
}

.notification {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    gap: 12px;
    border-bottom: 1px solid var(--color-purple-gradient-40);
    position: relative;
}

.notification.unread {
    background-color: var(--color-purple-bg);
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    color: var(--color-purple-dark);
    cursor: pointer;
    padding: 5px;
    margin-right: 15px;
}

.sidebar-profile {
    display: block;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    text-align: center;
}

.profile-image {
    margin-top: 20px;
    width: 90px;
    height: 90px;
    z-index: 1000;
    border-radius: 50%;
    object-fit: cover;
    /* border: 3px solid var(--color-purple-gradient-16); */
    margin: 0 auto;
}

.profile-name {
    font-size: 20px;
    font-weight: 200;
    color: var(--color-white);
    margin: 0;
}

.profile-location,
.rating-count {
    color: var(--color-purple-gradient-44);
    font-size: 14px;
}

.profile-location {
    margin: 2px 0 0;
}

.profile-rating {
    margin-top: 6px;
    color: #a3a3a3;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.rating-count {
    font-size: 12px;
    margin-left: 4px;
}



.sidebar-menu {
    font-family: 'Inter', sans-serif;
    padding: 0;
    margin: 0;
}

.sidebar-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    margin: 6px 0;
    padding-left: 10px;
    padding-right: 10px;
}

.sidebar-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 10px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s ease, color 0.3s ease;
}

.sidebar-menu li a:hover {
    background-color: #ddd;
    color: var(--color-dark-bg);
}

.sidebar-menu li a.active {
    background-color: var(--color-gray-500);
    color: var(--color-white);
    font-weight: 600;
}

.sidebar-menu li a i {
    font-size: 16px;
    color: inherit;
}
.menu-active {
    background-color: #ef6c00;
    color: white;
}
.sidebar-menu li a.logout {
    color: var(--color-gray-500) !important;
}

.sidebar-submenu .submenu {
    display: none;
    padding-left: 20px;
}

.sidebar-submenu.open .submenu {
    display: block;
}


.sidebar-submenu .submenu {
    display: none;
    padding-left: 20px;
}

.sidebar-submenu.open .submenu {
    display: block;
}

/* RESPONSIVIDADE */

@media screen and (max-width: 768px) {
    .section-header {
        position: fixed;
    }

    .container-painel {
        flex-direction: column;
        padding: 70px 0 0;
    }

    .menu-toggle {
        display: block;
    }

    .grafics-card {
        margin-bottom: 20px;
    }

    .menu-bar {
        position: fixed !important;
        top: 60px;
        left: 0;
        width: 80%;
        max-width: 300px;
        height: calc(100% - 60px);
        z-index: 1000;
        transform: translateX(-100%) !important;
        transition: transform 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        flex: none !important;
        min-width: unset !important;
        max-width: unset !important;
        margin-left: 0 !important;
        border-radius: 0 !important;
        overflow: auto;
        padding-bottom: 100px !important;
    }

    .menu-bar.active {
        transform: translateX(0) !important;
    }

    .overlay {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100% - 60px);
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .overlay.active {
        display: block;
    }

    .header-logo{
        height: 20px;
    }
}

@media screen and (max-width: 420px) {
    .section-wrapper-header {
        padding: 0 8px;
    }

    .logo-text {
        font-size: 18px;
    }

    .menu-bar {
        width: 85%;
    }

    .header-actions {
        gap: 5px;

    }

    .header-logo-group {
        gap: 1px;
    }

    .notification-wrapper {
        padding: 3px 3px;
    }

    .boost-wrapper {
        padding: 3px;
    }

    .dropdown-header {
        padding: 5px;
    }

    .dropdown-boosts {
        width: 100px;
    }

    .header-logo{
        height: 20px;
    }
}

.box-content {
    position: relative;
    max-width: auto;
    padding: 20px;
    background-color: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

/*========================================================
                        ONBOARD            
========================================================*/

.header-onboard {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    background: linear-gradient(90deg, var(--color-purple-gradient-19), var(--color-purple-gradient-20));
    padding: 2%;
    border-radius: 6px;
    margin-bottom: 20px;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
}

.profile-onbording.left {
    width: 65%;
}

.profile-onbording.right {
    width: 30%;
    text-align: right;
}

.nivel-modelo {
    display: inline-block;
    background: var(--color-gray-light);
    border-radius: 10px;
    font-size: 12px;
    color: var(--color-purple-bright);
    padding: 1px 6px;
    margin-left: 6px;
    vertical-align: middle;
}

.profile-onbording.right i.fa-trophy {
    color: var(--color-yellow);
    font-size: 20px;
    margin-bottom: 4px;
}

.profile-onbording.right span {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: var(--color-black);
}

.profile-onbording.right p {
    font-size: 13px;
    color: var(--color-purple-gradient-44);
    margin: 2px 0;
}

.header-onboard>i {
    font-size: 14px;
    color: var(--color-purple-gradient-37);
    margin-right: 4px;
}

.box-card {
    display: flex;
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid var(--color-purple-gradient-22);
    border-radius: 6px;
    background: var(--color-purple-gradient-23);
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
}

.box-10 {
    width: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--color-purple-gradient-24);
}

.box-90 {
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-text .points,
.info-text .difficulty {
    background: var(--color-purple-gradient-26);
    color: var(--color-purple-gradient-24);
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 8px;
    margin-left: 6px;
}

.info-text .difficulty {
    margin-left: 4px;
}

.info-action {
    margin-left: 10px;
}

.box-card.color-red {
    border: 1px solid var(--color-dark-red);
    background: var(--color-purple-gradient-29);
}

.box-card.color-yellow {
    border: 1px solid var(--color-purple-gradient-28);
    background: var(--color-purple-gradient-29);
}

.box-card.color-red .box-10 {
    color: var(--color-dark-red);
}

.box-card.color-yellow .box-10 {
    color: var(--color-purple-gradient-30);
}

.box-card.color-red .info-text h2,
.box-card.color-yellow .info-text h2 {
    color: var(--color-purple-gradient-42);
}

.box-card.color-red .info-text .points,
.box-card.color-red .info-text .difficulty.medium,
.box-card.color-yellow .info-text .points,
.box-card.color-yellow .info-text .difficulty.medium {
    background: var(--color-purple-gradient-31);
    color: var(--color-purple-gradient-30);
}

.btn-start {
    border: none;
    border-radius: 6px;
    padding: 6px 16px;
    cursor: pointer;
    font-size: 12px;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
}

.progress-container {
    width: 100%;
    margin-top: 20px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--color-purple-gradient-43);
    margin-bottom: 6px;
    font-weight: 300;
}

.progress-text-right {
    color: var(--color-purple-gradient-48);
    font-weight: bold;
}

.progress-bar-background {
    background-color: var(--color-purple-gradient-17);
    border-radius: 20px;
    height: 18px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-purple-gradient-4), var(--color-purple-gradient-5));
    color: var(--color-white);
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    line-height: 18px;
    border-radius: 20px;
    transition: width 0.4s ease;
}

.progress-legend {
    margin-top: 10px;
    font-size: 11px;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    color: var(--color-purple-gradient-43);
}

.progress-legend .easy {
    color: var(--color-purple-gradient-25);
}

.progress-legend .medium {
    color: var(--color-purple-gradient-30);
}

.progress-legend .hard {
    color: var(--color-purple-gradient-49);
}

.profile-onbording.right {
    width: 30%;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.profile-onbording.right {
    width: 30%;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
}

.score-group {
    display: flex;
    align-items: center;
    gap: 6px;
}

.score-group i {
    color: var(--color-yellow);
    font-size: 18px;
}

.score-points {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-black);
}

.meter-progress {
    background: var(--color-purple-gradient-18);
    color: var(--color-purple-gradient-9);
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    margin-top: 4px;
}

.box-completed {
    position: relative;
    max-width: 100%;
    padding: 20px 20px;
    background-color: #ffffffff;
    border: 1px solid #c6f3da;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    margin-bottom: 20px;
}

.icon-completed .icon-trofeu {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    background: #d1f8de;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--color-green);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.container-status-completed {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 10px;
}

.status-completed {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 25px;
}

.status-completed.expert {
    background: #2d1874ff;
    color: #ffffffff;
}

.status-completed.completo {
    background: #d8fddf;
    color: #0d8a40;
}

/*========================================================
                        DASHBOARD            
========================================================*/

.profile-dashboard {
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 12px 20px;
    border-radius: 5px;
    background: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    flex-wrap: nowrap;
    margin-bottom: 20px;
}

.image-profile {
    position: relative;
    margin-top: 8px;
    padding-right: 10px;
    max-width: 100%;
}

.image-profile .circle-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-purple-gradient-1), var(--color-purple-gradient-2));
    color: var(--color-white);
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    position: relative;
}

.profile-info-main-dashboard {
    flex: 1;
    max-width: 100%;
    margin-top: 10px;
}

.status-level {
    background: #ffe680;
    color: #333;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
}

.steps-progress {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 4px;
}

.profile-info-buttons {
    max-width: 100%;
    display: flex;
    gap: 30px;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .profile-dashboard {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profile-dashboard>.box-flex {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .image-profile {
        margin: 0 0 15px 0;
        display: flex;
        justify-content: center;
    }

    .profile-info-main-dashboard {
        width: 100%;
        margin-bottom: 5px;
    }

    .steps-progress {
        justify-content: center;
    }

    .profile-info-buttons,
    .profile-info-buttons .box-flex {
        width: 100%;
        justify-content: center;
    }
}

.profile-info-main {
    flex: 1;
    max-width: 220px;
}

.profile-info-main h2 {
    font-size: 16px;
    color: var(--color-purple-gradient-8);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
}

/*========================================================
        METRICAS DASHBOARD            
========================================================*/

.metrics-dashboard {
    margin-bottom: 20px;
}

.metric-card {
    background: var(--color-white);
    border-radius: 5px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    position: relative;
}

.metric-component {
    background: var(--color-white);
    border-radius: 5px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    position: relative;
    height: 100px;
}



.metric-icon.eye {
    background: #9CAAE0;
}

.metric-icon.heart {
    background: var(--color-purple-gradient-34);
}

/* .metric-icon.users {
    background: var(--color-purple-gradient-3);
} */

.metric-icon.envelope {
    background: #bb9cdc;
}

.metric-icon.whatsapp {
    background: #93d28a;
}

.metric-info .metric-title {
    font-size: 13px;
    color: var(--color-purple-gradient-45);
    margin: 0 0 5px 0;
}

.metric-info .metric-value {
    margin: 0;
    font-size: 22px;
    font-weight: bold;
    color: var(--color-purple-gradient-46);
}

.metric-change {
    background: var(--color-purple-gradient-32);
    color: var(--color-purple-gradient-33);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    margin-left: auto;
}

.grafics-card {
    width: 100%;
    background: var(--color-white);
    border-radius: 5px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

.grafics-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.grafics-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: bold;
    font-size: 14px;
}

.grafics-title i.fa-eye {
    color: var(--color-purple-gradient-36);
}

.grafics-title i.fa-line-chart {
    color: var(--color-purple-gradient-3);
}

.grafics-change {
    background: var(--color-purple-gradient-32);
    color: var(--color-purple-gradient-33);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.grafics-subtitle {
    font-size: 12px;
    color: var(--color-purple-gradient-44);
    margin-top: 5px;
}

.metric-icon.icon-comment {
    background: #f39c12;
}

.metric-icon.icon-thumb {
    background: #3498db;
}

.metric-icon-orange {
    background: #f39c12;
}

/* .metric-icon-green {
    background: #D1FAE5;
} */

/* .metric-icon-blue {
    background: #4852dd;
} */

.metric-icon-purple {
    background: #8F46EF;
}

.simple-home {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #11151e !important;
    height: 200px;
}

.profile-simple {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid #adadad;
    object-fit: cover;
    margin-bottom: 10px;
}

.metric-icon {
    width: 60px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.icon-purple {
    background-color: #EDE9FE;
    color: #8B5CF6;
}

.icon-blue {
    background-color: #DBEAFE;
    color: #3B82F6;
}

.icon-green {
    background-color: #DCFCE7;
    color: #22C55E;
}

.icon-orange {
    background-color: #FEF3C7;
    color: #F59E0B;
}

.icon-grad {
    background: linear-gradient(135deg, #8B5CF6, #D946EF);
    color: #fff;
    box-shadow: 0 4px 10px rgba(139, 92, 246, 0.3);
}

/*========================================================
                        ATENDIMENTO             
========================================================*/

.horario-linha {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.horario-inputs-flex {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    justify-content: flex-end;
}

.input-com-icone {
    border: 1px solid var(--color-purple-gradient-39);
    border-radius: 6px;
    background-color: var(--color-white);
    transition: border-color 0.2s;
    flex: 1;
    max-width: 120px;
}

.input-com-icone:focus-within {
    border-color: var(--color-purple-gradient-14);
}

.input-com-icone input {
    border: none;
    padding: 10px;
    font-size: 14px;
    width: 100%;
    outline: none;
    background: transparent;
    color: var(--color-gray-600);
    text-align: center;
}

.horario-ate {
    font-size: 14px;
    color: var(--color-gray-600);
}

@media (max-width: 420px) {

    .metric-icon{
        margin: 5px 15px;
    }

    .horario-linha {
        align-items: unset;
    }

    .horario-dia {
        min-width: auto;
        font-size: 14px;
        display: flex;
        align-items: center;
    }

    .input-com-icone {
        max-width: 100px;
    }

    .horario-ate {
        font-size: 13px;
    }
}

/*========================================================
                        PRICES             
========================================================*/

.checkbox-wrapper-prices {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.checkbox-wrapper-prices input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    height: 0;
    width: 0;
}

.checkbox-wrapper-prices label {
    position: relative;
    padding-left: 30px;
    margin: 5px 10px;
}

.checkbox-wrapper-prices label::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: white;
    transition: 0.2s;
}

.checkbox-wrapper-prices input[type="checkbox"]:checked+label::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 4px;
    transform: translateY(-50%);
    font-size: 14px;
    color: white;
    font-weight: bold;
}

.checkbox-wrapper-prices input[type="checkbox"]:checked+label::before {
    background-color: #9370DB;
    border-color: #9370DB;
}

/*========================================================
                        REVIEWS             
========================================================*/
.rating {
    direction: rtl;
    font-size: 18px;
    margin: 0 auto;
    padding: 0 10px;
}

.review-display {
    font-size: 18px;
    margin: 0 auto;
    padding: 0 10px;
}

.rating input {
    display: none;
}

.rating label {
    cursor: pointer;
}

.rating label i {
    color: var(--color-purple-gradient-37);
    transition: color 0.2s ease-in-out;
}

.rating label:hover i,
.rating label:hover~label i,
.rating input:checked~label i {
    color: var(--color-purple-gradient-padrao);
}

/*========================================================
                        SUPPORTE             
========================================================*/

.report-item {
    gap: 6px;
    border: 1px solid #e0e0e0;
    padding: 10px 10px;
    border-radius: 10px;
    margin: 10px 0;
    background-color: var(--color-white);
}

.tag-reports {
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
    background: #e8f8ee;
    color: #16a34a;
    height: 20px;
}

.tag-margin {
    margin: 5px 0;
}

/*========================================================
                PAGINA DE FACE ID E COMPARISON           
========================================================*/

.modal-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(180, 180, 180);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-height: 768px;
    max-width: 540px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    background: #000;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

#preview {
    width: 100%;
    height: 100%;
    max-width: 650px;
    object-fit: contain;
}

.face-frame-container {
    pointer-events: none;
}

.controls {
    margin-top: 10px;
    position: relative;
    z-index: 100;
    pointer-events: auto;
}

.countdown-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5em;
    color: white;
    text-shadow: 2px 2px 4px #000000;
    z-index: 3;
}

.list-padrao {
    font-size: 16px;
    font-weight: 300;
    color: var(--color-dark-bg);
    padding-left: 10px;
    margin: 8px 0;
    list-style-position: inside;
    padding: 7px;
}

.register-list {
    font-weight: 100;
    color: var(--color-gray-800);
    font-size: 14px;
}

.register-list .fas {
    color: var(--color-gray-800);
}

.register-list-error {
    font-weight: 100;
    color: var(--color-purple-gradient-49);
}

.register-list-error .fas {
    color: var(--color-purple-gradient-49);
}

.register-list.register-list-success {
    color: green;
}

.register-list.register-list-success .fas {
    color: green;
}

.rec-info {
    font-weight: 300;
    font-size: 12px;
    border-radius: 8px;
    border: 1px solid rgba(216, 216, 216, 1);
    align-items: center;
    max-width: 100%;
    color: #1b1b1bff;
    margin: 15px 0;
    padding: 10px 0px;
    padding-left: 10px;
}

.modal-hidden-video {
    display: none !important;
}

.face-frame-circle {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.6), 0 0 15px 3px #4a90e2;
    background: transparent;
}

.face-frame-text {
    position: absolute;
    width: 100%;
    bottom: -40px;
    text-align: center;
    font-size: 16px;
    color: white;
    font-weight: 600;
    font-family: Arial, sans-serif;
}

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

.comparison-gif img{
    width: 150px;
    height: auto;
    padding: 20px;
    margin: 20px auto;
    background: #555;
    border-radius: 10px;
}

.verification-list {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.verification-list li {
    padding-left: 22px;
    position: relative;
    margin-bottom: 8px;
    font-size: 14px;
}

.verification-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #28a745;
}

.verification-warning {
    background: #fff3cd;
    color: #856404;
    padding: 10px;
    border-radius: 6px;
    font-size: 13px;
    margin-bottom: 15px;
}

/*========================================================
                    FORMS PADRÃO              
========================================================*/

.form-section {
    gap: 230px;
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 10px 5px;
}

input, select, textarea {
    border: 1px solid var(--color-purple-gradient-39);
    border-radius: 6px;
    padding: 10px;
    font-size: 14px;
    width: 100%;
    background: var(--color-white);
    outline: none;
    transition: border-color 0.2s;
    color: var(--color-gray-600);
    font-weight: 300;
}

.form-group .data {
    border: 1px solid var(--color-purple-gradient-39);
    border-radius: 6px;
    padding: 10px;
    font-size: 14px;
    width: 100%;
    background: var(--color-white);
    outline: none;
    transition: border-color 0.2s;
    color: var(--color-gray-600);
    font-weight: 300;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--color-purple-gradient-14);
}

/* textarea base */
textarea {
    resize: none;
    max-width: 100%;
    overflow: hidden;
    --textarea-rows: 6;
    height: calc(var(--textarea-rows) * 1.5em);
}

/* variações de tamanho */
textarea.small {
    --textarea-rows: 3;
}

textarea.medium {
    --textarea-rows: 6;
}

textarea.large {
    --textarea-rows: 10;
}

/* Área de Upload */
.upload-area {
    border: 2px dashed #e0d4fb;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 25px;
    background-color: #faf7ff;
}

.file-input {
    display: none;
}

.upload-label {
    cursor: pointer;
    color: #9c6fe4;
}

.upload-icon {
    font-size: 28px;
    margin-bottom: 10px;
}

.file-types {
    color: #888;
}

.edit-profile-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #000000;
    border: 3px solid #db4ec7;
}

.edit-profile-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.delete-img {
    text-decoration: none;
    color: #6933D3;
}

/*========================================================
            PAGINA DE AVALIAÇÕES            
========================================================*/

.reviews-comments {
    margin-top: 20px
}

.rating-and-date {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
}

.rating-stars i {
    font-size: 14px;
    color: #fbc02d;
}

.rating-date {
    font-size: 12px;
    color: #888;
}

.ratings-distribution,
.rating-row {
    display: flex;
}

.ratings-distribution {
    flex-direction: column;
    gap: 10px;
}

.rating-row {
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.rating-label,
.rating-count {
    font-size: 14px;
    color: #555;
}

.rating-bar {
    flex: 1;
    background: #e9ebf0;
    border-radius: 20px;
    height: 8px;
    overflow: hidden;
}

.rating-fill {
    width: var(--fill, 20%);
    background: #fbc02d;
    height: 100%;
    border-radius: 20px;
    transition: width 0.3s ease;
}

.rating-count {
    width: 20px;
    text-align: right;
}

.profile-info-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    max-width: 500px;
}

.latest-review {
    background: #f0edff;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.reviws-ratings {
    font-size: 32px;
    padding: 10px 0;
}

.estrela-rattings {
    color: #B6ACD1;
}

.review-stars-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.text-area-avaliacao {
    width: 100%;
    height: 100px;
    margin-bottom: 20px;
}

.oculto {
    display: none;
}

.box-content-single-avaliacao {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
    background: #F9FAFB;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/*========================================================
                PAGINA DE SERVICES          
========================================================*/

.details-services {
    font-size: 13px;
    color: #888;
    font-weight: 400;
    margin: 5px 5px;
    display: inline-block;
    white-space: nowrap;
}

.service-text {
    font-size: 14px;
    color: var(--color-dark-pill);
}

.services-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid lightgray;
    border-radius: 8px;
    padding: 12px 16px;
    background-color: #fefefe;
    margin: 10px 0;
}

.selected-sevices {
    display: flex;
    gap: 20px;
    align-items: center;
}

.selecte {
    padding: 4px 10px;
    font-size: 13px;
    border: 1px solid #cbd5e1;
    background-color: #fff;
    border-radius: 6px;
    cursor: pointer;
    color: #1e293b;
    text-decoration: none;
}

.taxa-container {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}

.taxa-container input[type="checkbox"] {
    accent-color: #7e69ab;
}

.selecte.ativo {
    background-color: #7E69AB;
    color: white;
    border-color: rgb(255, 255, 255);
}

.taxa-container input {
    padding: 4px 8px;
    font-size: 13px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.btn-actions-service {
    display: flex;
}

.input-valor {
    width: 150px;
    padding: 4px 8px;
    font-size: 13px;
    border: 1px solid #ccc;
    border-radius: 6px;
    text-align: center;
}

@media (max-width: 768px) {
    .services-box {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .selected-sevices {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 15px;
    }

    .btn-actions-service {
        display: flex;
        justify-content: center;
        gap: 15px;
        width: 100%;
    }

    .taxa-container {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-top: 5px;
    }

    .input-valor {
        width: 100% !important;
        flex-basis: 100%;
        margin-top: 10px;
        text-align: center;
    }

    .service-text {
        font-weight: bold;
        margin-bottom: 5px;
        text-align: center;
    }
}

/*========================================================
            CONFIG/SETTINGS              
========================================================*/

.tabs-container {
    display: flex;
    background-color: #e9ecef;
    border-radius: 8px;
    padding: 6px;
    width: 100%;
    margin-bottom: 20px;
}

.tab {
    background-color: transparent;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    color: #495057;
    transition: all 0.2s ease-in-out;
    font-family: Arial, sans-serif;
}

.tab.active {
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

@media screen and (max-width: 420px) {
    .tabs-container {
        display: grid;
        text-align: center;
        margin: 0 auto;
    }
    .tab.active{
        width: 100%;
    }
}

.switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .3s;
    border-radius: 34px;
}

.slider:before {
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: #fff;
    transition: .3s;
    border-radius: 50%;
}

.sliders-privacy::before{
    position: absolute;
}

.switch input:checked+.slider {
    background-color: #9b6ef3;
}

.switch input:checked+.slider:before {
    transform: translateX(22px);
}

.switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch input:checked+.slider {
    background-color: #9b6ef3;
}

.switch input:checked+.slider:before {
    transform: translateX(22px);
}

.form-group.flex-group-row {
    border-bottom: 1px solid #e6e6e6;
    padding: 12px 0;
}

/*========================================================
            ACOMPANHANTES/SEARCH             
========================================================*/

.img-card3 {
    width: 100%;
    height: 150px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.tabs-search-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 10px auto;
}

.tab-item {
    font-weight: bold;
    padding: 5px 10px;
    cursor: pointer;
    position: relative;
    color: var(--color-dark-bg);
    font-weight: 300;
    white-space: nowrap;
    flex: 0 1 auto;
}

.tab-item.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background-color: #472180;
}

.filter-button {
    flex-shrink: 0;
}

/*========================================================
                    CARDS             
========================================================*/

.centralizar-cards {
    max-width: 1010px;
    margin: 0 auto;
}

.box-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
}

@media (max-width: 768px) {
    .box-not-found-search {
        padding: 60px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        box-sizing: border-box;
    }

    .img-not-found {
        width: 100% !important;
        max-width: 200px;
        height: auto !important;
        margin: 0 auto 20px auto !important;
        display: block;
    }

    .box-not-found-search h2 {
        font-size: 18px;
        padding: 0 10px;
        line-height: 1.4;
    }
}

@media (max-width: 1100px) {
    .box-cards {
        justify-content: center;
    }
}

.card0 {
    position: relative;
    display: flex;
    height: 250px;
    width: 330px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    background: #fff;
}

.img-card0 {
    width: 150px;
    height: 250px;
}

.img-card0 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px 0 0 12px;
}

.card1 {
    display: flex;
    width: 330px;
    height: 300px;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.card1 .box-flex {
    display: flex;
    flex-direction: row;
    height: 100%;
}

.img-card1 {
    flex: 1;
    max-width: 50%;
    height: 100%;
    overflow: hidden;
}

.img-card1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px 0 0 15px;
}

.container-card {
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card2 {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 330px;
    height: 400px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.card2 .box-flex {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
}

.img-card2 {
    height: auto;
    overflow: hidden;
}

.img-card2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px 0 0 15px;
}

.container-card {
    flex: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-base {
    width: 330px;
    border-radius: 15px;
    overflow: hidden;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
}

.card3 {
    background-color: var(--color-white);
    height: 610px;
}

.card4 {
    background-color: #263238;
    color: var(--color-white);
    height: 625px;
}

.card4 .name-card,
.card4 .title-card,
.card4 .text-card,
.card4 .status-card {
    color: var(--color-white);
}

.img-card3,
.img-card4 {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.img-card3 img,
.img-card4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.content-card3,
.content-card4 {
    padding: 10px 20px;
}

.custom-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.4);
    color: var(--color-black);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    font-size: 18px;
    cursor: pointer;
    border: none;
    z-index: 10;
}

.arrow-left {
    left: 10px;
}

.arrow-right {
    right: 10px;
}

.img-card-slider {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.bottom-btn {
    position: relative;
    width: 100%;
    transform: none;
    box-sizing: border-box;
}

.bottom-btn .box-flex {
    justify-content: center;
}

.container-card {
    display: flex;
    flex-direction: column;
}

.hr-teste {
    border-right: 1px solid #ccc;
    margin: 0 auto;
}

.bottom-btn {
    margin-top: auto;
}

.verification-status {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    z-index: 5;
    cursor: pointer;
}

/******************** FIM DOS CARDS **********************/

.model-filter-search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.model-filter-search-modal.show {
    visibility: visible;
    opacity: 1;
}

/* .modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
} */

.model-filter-search-modal.show .modal-content {
    transform: translateY(0);
}

.filter-buttons-wrap-home {
    display: flex;
}

#sugestoes-localization {
    position: absolute;
    width: 100%;
    left: 0;
    top: 100%;
    padding: 0;
    margin: 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    overflow-y: hidden;
    z-index: 9999;
}

#sugestoes-localization .search-li {
    padding: 8px 10px;
    cursor: pointer;
    list-style: none;
}

#sugestoes-localization .search-li:hover {
    background-color: #f0f0f0;
}

/*========================================================
            PAINEL CLIENTES     
========================================================*/

.profile-client img {
    z-index: 1000;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ede7f6;
}

.header-client-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px auto;
}

.box-content-client {
    background: #fff;
    max-width: 600px;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: left;
}

.upload-client {
    cursor: pointer;
    color: #6d6d6d;
    padding: 5px 6px;
    background: #ccc;
    border-radius: 18px;
    position: relative;
    bottom: 30px;
    left: 45px;
}

/*========================================================
            FOLLOWINGS           
========================================================*/

.profile-location {
    font-size: 13px;
    color: #555;
    margin: 4px 0;
}

.circle-photo.online {
    border: 2px solid #28c76f; 
}

.circle-photo.offline {
    border: 2px solid #b0b0b0;
}

.status-card .fa-circle.online {
    color: #28c76f; 
}

.status-card .fa-circle.offline {
    color: #b0b0b0;
}

/*========================================================
                PAINEL/ADMIN         
========================================================*/

.btn-delete {
    border: none;
    background: none;
    color: #ff0000;
    font-weight: bold;
    font-size: 1.2em;
    cursor: pointer;
    padding: 5px;
}

/*========================================================
            REGISTRO ADMIN            
========================================================*/

.register-form .form-group {
    margin-bottom: 15px;
}

.register-input,
.register-textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.register-input:focus,
.register-textarea:focus {
    border-color: #A78BFA;
    outline: none;
    box-shadow: 0 0 5px rgba(167, 139, 250, .5);
}

/*========================================================
                    REPORTS            
========================================================*/

.reputation-status {
    background: #e8f8ee;
    color: #16a34a;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: bold;
    cursor: pointer;
}

.reputation-bar {
    width: 100%;
    height: 8px;
    background: var(--color-purple-gradient-50);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 5px;
}

.reputation-progress {
    height: 100%;
    background: #8b5cf6;
    border-radius: 5px;
}

.reputation-space {
    margin: 10px 0;
}

/*========================================================
                        MIDIAS              
========================================================*/

.cover-profile {
    position: relative;
    background-color: #269;
    width: 100%;
    height: 200px;
    padding: 0;
    margin: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    z-index: 1;
    object-fit: cover;
}

.perf {
    z-index: 2;
    display: block;
    width: 120px;
    height: 120px;
    margin-top: -70px;
    margin-left: 50px;
    border-radius: 50%;
    background-color: #db4ec7;
    border: 2px solid #269;
    position: relative;
    object-fit: cover;
}

.btn-perfil-upload {
    position: absolute;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    color: white;
    background: #269;
    margin-top: -45px;
    margin-left: 150px;
    z-index: 5;
}

.btn-perfil-upload:hover {
    background-color: #A78BFA;
}

.btn-cover-upload {
    position: absolute;
    margin: 10px;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    color: white;
    background: #269;
    z-index: 10;
}

.btn-cover-upload:hover {
    background-color: #A78BFA;
}

.box-contente {
    position: relative;
    max-width: auto;
    margin: 5px 0;
    border-radius: 10px;
    padding: 20px;
    background-color: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.gallery-stories-header {
    margin-bottom: 20px;
}

.gallery-buttom-insert {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #8b72e1;
    text-align: center;
    align-items: center;
}

.insert-buttom {
    display: inline-block;
    width: 16px;
    height: 16px;
    position: relative;
    cursor: pointer;
    margin-top: 22px;
    color: white;
    font-size: 20px;
}

.model-filter-search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/*========================================================
                    FEEDS    
========================================================*/
.card-feed-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.card-feed-item {
    position: relative;
    flex: 0 0 calc(33.333% - 10.66px);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
    background-color: #000;
    max-width: 260px;
    max-height: 260px;
}

.card-feed-media-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.card-feed-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.card-feed-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    color: white;
    pointer-events: none;
    opacity: 0.8;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

.card-feed-empty {
    width: 100%;
    text-align: center;
    padding: 40px 0;
}

.card-feed-empty-message {
    color: #999;
    font-size: 16px;
    font-style: italic;
}

/*========================================================
                    MODAL FEEDS     
========================================================*/

.modal-feed {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
    align-items: center;
    justify-content: center;
}

.modal-content-feed {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 711px;
    border-radius: 10px;
    overflow: hidden;
    background: black;
}

.modal-media-container img,
.modal-media-container video {
    width: 400px;
    height: 711px;
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.close-feed {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #f1f1f1;
    font-size: 16px;
    transition: 0.3s;
    cursor: pointer;
    z-index: 9999;
}

.close-feed:hover,
.close-feed:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.feed-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    user-select: none;
    transition: 0.3s;
    z-index: 1100;
    padding: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
}

.feed-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
    color: #ddd;
}

.left-arrow {
    left: 15px;
}

.right-arrow {
    right: 15px;
}

.too-bars {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
    padding: 8px 0;
    box-sizing: border-box;
    color: white;
}

.modal-footer .icon-container {
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    transition: 0.2s;
}

.btn-container {
    margin: 20px;
}

/*========================================================
                BLOQUEIO DE IMAGENS     
========================================================*/

.card-feed-item.is-blocked .card-feed-media {
    filter: blur(8px);
    transform: scale(1.05);
    transition: filter 0.3s, transform 0.3s;
}

.exclusive-warning {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    color: var(--color-black);
    border-radius: 6px;
    text-align: center;
    font-size: 12px;
    display: inline-block;
    cursor: pointer;
    background-color: var(--color-purple-dark);
    color: white;
    padding: 5px;
}

/* -------------------------------------- */
/* EFEITOS DE BLOQUEIO DENTRO DO MODAL */
/* -------------------------------------- */

.modal-content-feed.is-blocked .modal-media {
    filter: blur(15px);
    transition: filter 0.3s;
}

.modal-content-feed.is-blocked+.feed-arrow {
    display: none;
}
/*========================================================
                    STORIES           
========================================================*/

.wrapper-stories {
    display: flex;
    gap: 5px;
}

.wrapper-stories-bloco {
    display: flex;
}

.card-stories {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    background-color: blue;
    cursor: pointer;
    background-size: cover;
    background-position: center;
}

.card-stories img,
.card-stories video {
    max-height: 100%;
    max-width: 100%;
}

.card-stories.view {
    border: 4px solid #ccc;
}

.card-stories.noview {
    border: 4px solid var(--color-primary);
}

.profile.noview {
    border: 5px solid var(--color-main);
}

.profile.view {
    border: 5px solid #ccc;
}

/*========================================================
                    MODAL STORIES     
========================================================*/

/* .modal-stories {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
    align-items: center;
    justify-content: center;
} */

.modal-content-stories {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 711px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: black;
}

.stories-media-container img,
.stories-media-container video {
    width: 400px;
    height: 711px;
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.card-stories-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.close-stories {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #f1f1f1;
    font-size: 16px;
    transition: 0.3s;
    cursor: pointer;
    z-index: 999;
}

.close-stories:hover,
.close-stories:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.stories-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    user-select: none;
    transition: 0.3s;
    z-index: 1100;
    padding: 8px 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
}

.stories-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
    color: #ddd;
}

.stories-left-arrow {
    left: 15px;
}

.stories-right-arrow {
    right: 15px;
}

.too-bars {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3));
    padding: 8px 0;
    box-sizing: border-box;
    color: white;
}

.modal-footer .icon-container {
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    transition: 0.2s;
}

.btn-container {
    margin: 20px;
}

@media screen and (max-width: 420px) {
    .modal-content-stories {
        width: 80%;
        height: 500px;
    }
}

@media (max-width: 420px) {

    .stories-media-container img,
    .stories-media-container video {
        width: 400px;
        height: 500px;
        max-width: 100%;
        max-height: 100%;
        display: block;
        margin: 0 auto;
        object-fit: contain;
    }
}

/************* PROGRESS STORIES *************/

.stories-progress-container {
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    box-sizing: border-box;
    z-index: 1000;
}

.progress-bar-container {
    flex-grow: 1;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    margin: 0 2px;
}

.progress-bar-stories {
    height: 100%;
    background-color: #fff;
    border-radius: 2px;
    width: 0%;
    transition: width 5s linear;
}

.story-item-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stories-header {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.4);
    padding-right: 20px;
    border-radius: 20px;
    margin-top: 20px;
    gap: 10px;
}

.stories-header a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stories-header .text-rating-stories,
.stories-model-city {
    display: inline-block;
    display: block !important;
    font-size: 12px;
    font-weight: bold;
    color: #FFFFFF;
    margin-left: 2px;
    font-weight: 300;
}

.stories-header .estrela-rattings {
    font-size: 14px;
    color: #ffffff;
}

.stories-header .review-stars-box {
    align-items: center;
}

.stories-profile-thumb {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 6px;
    border: 2px solid #fff;
    color: var(--color-gray-100);
}

.stories-profile-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.model-stories {
    margin-top: 5px;
    font-size: 12px;
    font-weight: 500;
    color: var(--color-gray-900);
    cursor: pointer;
    color: white;
}

.stories-model-name {
    font-size: 14px;
    color: #fff;
    font-weight: 500px;
    cursor: pointer;
}

.modal-overlay-send-file.active {
    display: flex;
}

.modal-content-send-file {
    background-color: var(--color-white);
    padding: 20px;
    border-radius: 8px;
    position: relative;
    width: 600px;
    max-width: 100%;
    height: auto;
}

.close-modal-send-file {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
    color: #555;
}

.close-modal-send-file:hover {
    color: black;
}

.gallery-stories-container {
    display: flex;
    align-items: center;
    gap: 15px;
    overflow-x: hidden;
}

.gallery-send-file-avatar {
    flex: 0 0 80px;
    z-index: 5;
    margin-right: 15px;
}

.native-slider-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 0 35px;
    overflow: hidden;
}

.stories-scroll-track {
    display: flex;
    align-items: center;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    width: 100%;
    white-space: nowrap;
    padding: 5px 0;
}

.stories-scroll-track::-webkit-scrollbar {
    display: none;
}

.stories-scroll-track .card-stories {
    width: 80px !important;
    height: 80px !important;
    flex-shrink: 0;
    margin: 0 8px;
    border-radius: 50%;
    background-color: #eee;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: block;
}

.stories-scroll-track .card-stories img,
.stories-scroll-track .card-stories video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.custom-arrow-stories {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: opacity 0.3s;
    position: absolute;
}

.arrow-disabled {
    opacity: 0.2 !important;
    cursor: default !important;
    pointer-events: none !important;
    filter: grayscale(100%);
}

.icon-container .fa-regular.fa-heart, .fa-regular.fa-trash {
    cursor: pointer !important;
}

@media screen and (max-width: 768px) {
    .modal-content-send-file {
        width: 80%;
    }
}

@media screen and (max-width: 420px) {
    .modal-content-send-file {
        width: 80%;
        height: auto;
    }
}

/*========================================================
                    PAGINA DE SUPORTE          
========================================================*/

.chat-message.user {
    background: var(--color-purple-gradient-15);
    color: #333;
    margin-left: auto;
    border-bottom-right-radius: 4px;
    text-align: left;
}

.chat-message.support {
    background: #f1f1f1;
    color: #333;
    margin-right: auto;
    border-bottom-left-radius: 4px;
}

.chat-message {
    padding: 8px 12px;
    border-radius: 8px;
    margin: 6px 0;
    max-width: 70%;
    display: flex;
    flex-direction: column;
}

.chat-left {
    align-self: flex-start;
    background-color: #f5f5f5;
}

.chat-right {
    align-self: flex-end;
    background-color: #d1e7ff;
    text-align: right;
}

.read-icon {
    margin-left: 6px;
    font-size: 12px;
    color: #4caf50;
}

.read-icon.unread {
    color: #aaa;
}

/*========================================================
                SUCESSO DE PAGAMENTO          
========================================================*/

.payment-success-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.success-header {
    margin: 5px 0;
}

.icon-success {
    color: var(--color-green);
    font-size: 64px;
    margin-bottom: 20px;
}

.card-details-payments {
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 20px;
}

.card-details-payments .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.active-payment {
    background-color: #EBF4E6;
    color: #34A853;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.separator {
    border: 0;
    border-top: 1px solid var(--color-gray-200);
    margin: 20px 0;
}

.separar {
    border: 0;
    border-top: 1px solid var(--color-gray-200);
    margin: 10px 0;
}

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

.details-item {
    flex-basis: 48%;
    margin-bottom: 20px;
}

.details-item .text {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-gray-800);
    margin-top: 0;
}

.details-item .text.price {
    font-size: 20px;
    font-weight: bold;
    color: var(--color-primary-dark);
}

.details-item .text.status {
    color: #34A853;
    font-weight: bold;
}

.whats-next-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 20px;
    margin-top: 20px;
}

.whats-next-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.whats-next-header .icon-star {
    color: var(--color-primary);
    font-size: 20px;
    margin-right: 10px;
}

.landing {
    padding: 20px 0;
}

.section-dark {
    background-color: #3c424a;
    padding: 20px 0;
}

.hidden-plans {
    display: none !important;
}

.avatar-depoimento {
    padding: 20px;
    border: 1px solid #e6e5e5ff;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.landing-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: #ECE7FD;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: #666;
}

.landing-stars {
    margin: 10px 0;
    color: #bebbff;
}

.landing-stars .fa {
    margin: 0 2px;
}

.avatar-depoimento:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.system-card {
    background-color: var(--color-white);
    padding: 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-purple-border);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.system-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.system-card-icon {
    color: var(--color-primary);
    font-size: 30px;
    padding: 10px;
    margin-bottom: 10px;
    background-color: var(--color-purple-bg);
    border-radius: 50%;
}

.system-card-title {
    font-size: 18px;
    color: var(--color-purple-dark);
    font-weight: 500;
    padding: 10px 0;
}

.card-plan {
    border-radius: 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    padding: 20px 10px;
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-200);
    max-height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.card-plan>*:not(.plan-features) {
    text-align: left;
    padding-left: 10px;
}

.plan-title {
    font-size: 16px;
    font-weight: 500;
    margin: 5px;
}

.plan-price {
    font-size: 26px;
    font-weight: 700;
}

.plan-price span {
    font-size: 16px;
    font-weight: normal;
    color: var(--color-gray-500);
}

.plan-sub {
    font-size: 14px;
    color: var(--color-gray-500);
}

.plan-points {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-gray-600);
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    flex-grow: 1;
    text-align: left;
    margin: auto;
}

.plan-features li {
    font-size: 16px;
    color: var(--color-gray-700);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.plan-features li i {
    color: var(--color-green);
    margin-right: 8px;
}

.btn-wrapper {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

/*========================================================
                PLANOS     
========================================================*/

.card-plan .btn-convertion {
    margin-top: auto;
    align-self: center;
    width: 100%;
}

.dropdown-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
    z-index: 5;
}

.btn-select-plan {
    width: 100%;
    padding: 12px 15px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    font-size: 14px;
    color: #555;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-select-plan:hover,
.dropdown-plans.active+.btn-select-plan {
    border-color: var(--plan-color);
    color: var(--plan-color);
}

.btn-select-plan i {
    font-size: 12px;
    transition: transform 0.3s;
}

.dropdown-wrapper .dropdown-plans.active~.btn-select-plan i {
    transform: rotate(180deg);
}

.dropdown-plans {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 100;
    margin-top: 5px;
    list-style: none;
    padding: 0;
    overflow: hidden;
}

.dropdown-plans.active {
    display: block;
}

.dropdown-plans li {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f5f5f5;
    font-size: 14px;
    color: #333;
    transition: background 0.2s;
    text-align: left;
}

.dropdown-plans li:last-child {
    border-bottom: none;
}

.dropdown-plans li:hover {
    background-color: #f9f9f9;
    color: var(--plan-color);
    font-weight: 600;
}

.btn-select-plan {
    width: 100%;
    padding: 12px 15px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    font-size: 14px;
    color: #555;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-select-plan:hover,
.dropdown-plans.active+.btn-select-plan {
    border-color: var(--plan-color);
    color: var(--plan-color);
}

.btn-select-plan i {
    font-size: 12px;
    transition: transform 0.3s;
}

.dropdown-wrapper .dropdown-plans.active~.btn-select-plan i {
    transform: rotate(180deg);
}

.dropdown-plans {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 100;
    margin-top: 5px;
    list-style: none;
    padding: 0;
    overflow: hidden;
}

.dropdown-plans.active {
    display: block;
}

.dropdown-plans li {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f5f5f5;
    font-size: 14px;
    color: #333;
    transition: background 0.2s;
    text-align: left;
}

.dropdown-plans li:last-child {
    border-bottom: none;
}

.plan-discount {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.card-gratis {
    --plan-color: #be185d; 
    --plan-border: #fce7f3; 
    background-color: #fff; 
    border-color: var(--plan-border);
    box-shadow: 0 4px 6px -1px rgba(190, 24, 93, 0.05);
}

.card-gratis .plan-title,
.card-gratis .plan-price {
    color: #9d174d;
}

.card-plus {
    --plan-color: #3a857a;
    --plan-border: #7bf3e1;
    --badge-bg: #3a857a;
    --badge-color: var(--color-gray-100);
    border-color: #3a857a;
}

.card-top {
    --plan-color: #2f64c8;
    --plan-border: #a0b3f8;
    --badge-bg: #a0b3f8;
    --badge-color: #2f64c8;
    border-color: var(--plan-border);
}

.card-diamond {
    --plan-color: #8c64c6;
    --plan-border: #d2bbf2;
    --badge-bg: #d2bbf2;
    --badge-color: #8c64c6;
    border-color: var(--plan-border);
}

.card-super {
    --plan-color: #e7533e;
    --plan-border: #f8b38e;
    --badge-bg: #f8b38e;
    --badge-color: #e7533e;
    border-color: var(--plan-border);
}

.card-boosts {
    --plan-color: #9C27B0;
    --plan-border: #9C27B0;
    --badge-bg: #9C27B0;
    --badge-color: #ffffff;
    border-color: #9C27B0;
    background-color: #fdf5ff;
}

.card-plan:not(.card-free) .plan-title,
.card-plan:not(.card-free) .plan-price,
.card-plan:not(.card-free) .plan-price span,
.card-plan:not(.card-free) .plan-discount {
    color: var(--plan-color);
}

.card-plan:not(.card-free) .plan-discount {
    background-color: var(--badge-bg);
    color: var(--badge-color);
}

.card-plan .plan-title,
.card-plan .plan-price {
    color: var(--plan-color);
}

.plans-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    /* padding: 20px 0; */
}

.listing-points {
    font-size: 14px;
    display: inline-block;
    padding: 8px 15px;
    border-radius: 10px;
    cursor: pointer;
    margin: 20px 0;
}

.card-gratis .icons-plans i {
    display: block;
    font-size: 16px;
    color: var(--plan-color);
    margin-bottom: 5px;
}

.card-plus .icons-plans i {
    display: block;
    font-size: 16px;
    color: #2a8b4d;
    margin-bottom: 5px;
}

.card-super .icons-plans i {
    display: block;
    font-size: 16px;
    color: var(--color-primary);
    margin-bottom: 5px;
}

.card-top .icons-plans i {
    display: block;
    font-size: 16px;
    color: #2f64c8;
    margin-bottom: 5px;
}

.card-diamond .icons-plans i {
    display: block;
    font-size: 16px;
    color: #8c64c6;
    margin-bottom: 5px;
}

.card-gratis .listing-points {
    color: var(--plan-color);
    background-color: #fce7f3;
}

.card-plus .listing-points {
    color: #2a8b4d;
    background-color: #E0FAF6;
}

.card-super .listing-points {
    color: var(--plan-color);
    background-color: #ffe6d4;
}

.card-top .listing-points {
    color: #2f64c8;
    background-color: #e6f7ff;
}

.card-diamond .listing-points {
    color: #8c64c6;
    background-color: #f7e6ff;
}

.card-boosts .listing-points {
    color: #8c64c6;
    background-color: #000000;
}

.plan-item {
    width: calc(25% - 10px);
    flex-shrink: 0;
    width: 272px;
    max-width: 272px;
}

.painel-plan-item {
    flex-shrink: 0;
    width: 272px;
    max-width: 272px;
    margin: 10px 0;
}

.icons-plans {
    margin: 5px 0;
    padding: 5px 5px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: normal;
    text-align: center;
    box-sizing: border-box;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.12);
}

.icons-plans i {
    display: block;
    font-size: 16px;
    color: var(--color-primary);
    margin-bottom: 5px;
}

.text-plan-card {
    font-size: 12px;
    color: #555;
}
.js-daily-price{
    font-size: 14px;
    color: #696767;
    font-weight: 500;
    margin: 10px 0;
}

@media (max-width: 768px) {
    .painel-plan-item,
    .plan-item {
        width: 100%;
        height: auto;
    }
    .system-card {
        margin: 20px 0;
    }
}

@media (max-width: 420px) {
    .painel-plan-item,
    .plan-item {
        width: 100%;
    }
}

.client-convertion {
    background-color: #3c424a;
}

.box-hero {
    gap: 30px;
}

.box-flex .w33:nth-child(1) .metrics-landing-client {
    color: var(--color-primary);
}

.box-flex .w33:nth-child(2) .metrics-landing-client {
    color: var(--color-primary);
}

.box-flex .w33:nth-child(3) .metrics-landing-client {
    color: var(--color-green);
}

.check-landing-client {
    margin-bottom: 10px;
    color: var(--color-gray-text);
}

.check-landing-client {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.check-landing-client i.fa {
    font-size: 20px;
    color: #4CAF50;
    margin-right: 10px;
}

.landing-hero-client {
    position: absolute;
    width: 100%;
    height: 650px; 
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    /* display: flex; */
    /* align-items: center; */
    z-index: 999;
    top: 50%;
    transform: translateY(-50%);
}
@media screen and (max-width: 950px) {
    .landing-hero-client {
        background-position: 70% center; 
        align-items: flex-start;
        padding: 20px 0;
    }
}
@media screen and (max-width: 768px) {
    .landing-hero-client {
        background-position: 80% center; 
    }
}

@media screen and (max-width: 420px) {
    .landing-hero-client {
        background-position: 70% center; 
    }
}

.convertion-container-img {
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
}
.convertion-container-img img{
    width: 100%;
    height: auto;
}

.register-form-container .fa-check-circle-o {
    position: relative;
    font-size: 80px;
    color: #4caf50;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 15px;
    animation: pulseIcon 2s infinite;
    margin: 20px;
}

@keyframes pulseIcon {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.register-form-container .fa-check-circle-o::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(76, 175, 80, 0.2);
    transform: translate(-50%, -50%) scale(1);
    animation: pulse 2.5s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.15;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.icons-register {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    background-color: #EDE7FD;
    color: var(--color-purple-gradient-12);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    text-align: center;
    margin: 10px auto;
}

.form-group.register-password {
    position: relative;
}

.register-password .password-toggle-icon {
    position: absolute;
    right: 10px;
    top: 55%;
    cursor: pointer;
    z-index: 10;
}

.register-password .password-toggle-icon .fas {
    color: #d6c9f9ff;
    margin-top: 17px;
}

.register-password input[type="password"] {
    padding-right: 40px;
}

div.filter-button.reg-item {
    position: relative;
    align-items: center;
    padding: 4px 8px;
    cursor: default;
    overflow: visible !important;
}

.filter-button.active,
.reg-item.open {
    color: #6226bd;
    border: 2px solid #8b58f8ff;
    font-weight: 600;
    background: #f2eeff;
}

.filter-button.active .icons-gender {
    color: #7E69AB;
}

.reg-name {
    padding-right: 5px;
}

.reg-menu-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    font-size: 18px;
    color: #333;
    margin-left: 5px;
    z-index: 1000;
}

.reg-menu-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 999;
    background-color: #fff;
    border: 1px solid #4a42a1ff;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 5px 0;
}

.reg-item.open .reg-menu-dropdown {
    display: block;
}

.reg-menu-link {
    padding: 8px 12px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    display: block;
    white-space: nowrap;
}

.reg-menu-link:hover {
    background-color: #f4f4f4;
}

.filter-buttons-wrap {
    flex-wrap: wrap;
    align-items: flex-start;
}

.status-paid {
    color: #28a745;
    border: 1px solid #28a745;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: bold;
    background-color: #eafaf1;
}

/*========================================================
    ADMIN CHECK VIDEO
========================================================*/
/* 
.table-responsive {
    overflow-x: none;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
    margin-top: 15px;
    max-width: 100%;
} */

/* .painel-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
} */

.painel-table th {
    background: #f8f9fa;
    color: #444;
    font-weight: 600;
    text-align: left;
    padding: 10px 15px;
    border-bottom: 2px solid #eee;
    text-align: center;
}

.painel-table td {
    padding: 10px 8px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
    font-size: 12px;
    text-align: center;
}

.painel-table tr:hover {
    background: #fafafa;
}

@media (max-width: 768px) {
    .painel-table th,
    .painel-table td {
        padding: 8px 10px;
    }

    .painel-table {
        font-size: 12px;
    }
}

@media (max-width: 420px) {
    .painel-table th,
    .painel-table td {
        padding: 5px 8px;
    }

    .painel-table {
        font-size: 10px;
    }
}




.video-container-modal {
    background: #000;
    padding: 0;
}

.video-container-modal video {
    width: 100%;
    height: auto;
    display: block;
}

.modal-footer-check {
    justify-content: space-between;
    align-items: flex-end;
    padding: 15px 20px;
}

/*========================================================
                    COMPARISON    
========================================================*/

.verify-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
    box-sizing: border-box;
}

.verify-modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 440px;
    max-height: 90%;
}

.verify-video-wrapper {
    width: 100%;
    max-width: 420px;
    height: 660px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#verifyPreview {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.controls {
    margin-top: 16px;
    text-align: center;
}

.verify-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.divisor {
    border-top: 1px solid #ccc;
}

.list-padrao span {
    display: flex;
    align-items: center;
    padding-right: 5px;
}

.modal-hidden-video {
    display: none;
}

.verify-modal-content {
    position: relative;
    width: 480px;
    height: 768px;
}

#verifyPreview {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.verify-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.verify-safe-zone {
    position: absolute;
    top: 0;
    width: 100%;
    height: 20%;
    background: rgba(0, 255, 0, 0.15);
    border: 2px solid rgba(0, 255, 0, 0.5);
    display: none;
}

.verify-safe-zone h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 255, 0, 0.5);
    font-size: 40px;
    margin: 0;
    line-height: 3;
}

.countdown-text {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5em;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

/*========================================================
                SETTINGS
========================================================*/

.switchs {
    align-items: center;
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switchs input {
    opacity: 0;
    width: 0;
    height: 0;
}

.sliders {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.sliders:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.sliders {
    background-color: #8a2be2;
}

input:checked+.sliders:before {
    transform: translateX(26px);
}

.switchs input:disabled+.sliders {
    cursor: not-allowed;
    opacity: 0.6;
    background-color: #aaa;
   
    pointer-events: none;
}

.switchs input:disabled {
    pointer-events: none;
}

.form-group.flex-group-row:has(input:disabled) {
    opacity: 0.7;
}

.block {
    border: 1px solid var(--color-purple-gradient-39);
    border-radius: 6px;
    padding: 10px;
    font-size: 14px;
    width: 100%;
    background: var(--color-white);
    outline: none;
    transition: border-color 0.2s;
    color: var(--color-gray-600);
    font-weight: 300;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider-settings {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 34px;
}

.slider-settings:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 50%;
}

.switch input:checked + .slider-settings {
  background-color: #9131a2;
}

.switch input:checked + .slider-settings:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/*========================================================
        NEWS
========================================================*/

.upload-area-news {
    position: relative;
    height: 200px;
}

.news-miniature {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    z-index: 1; 
}

.upload-label-news {
    z-index: 3; /* Garante que o clique e o texto padrão fiquem visíveis/funcionais */
    width: 100%;
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ql-editor img {
    max-width: 100%;
    height: auto;
    display: inline-block; /* Importante para o alinhamento funcionar com o tamanho */
}

@media (max-width: 768px) {
    .ql-editor img {
        width: 100% !important;
        height: auto !important;
    }
}

/*========================================================
    QUESTIONS
========================================================*/

.filter-bar {
    padding: 0 15px 15px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px !important;
}

.search-input input[type="text"],

.filter-dropdown select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    appearance: none;
}

.search-input input[type="text"] {
    width: 250px;
}

.question-list-header,.question-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    margin: 10px 0;
}

.question-list-header {
    font-weight: 600;
    background-color: transparent;
    color: #444;
    border-bottom: 1px solid #eee;
}

.question-item {
    background-color: #fff;
    transition: background-color 0.2s;
}

.question-item:last-child {
    border-bottom: none;
}

.question-col {
    padding: 0 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    color: #333;
}

.question-col.pergunta {
    flex-basis: 35%;
}

.question-col.resposta {
    flex-basis: 35%;
}

.question-col.origem {
    flex-basis: 15%;
    text-align: center;
}

.question-col.acoes {
    flex-basis: 10%;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.tag-origem {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: 600;
    color: #883397;
    background-color: #f3e5f5;
}

.btn-action {
    color: #8a2be2;
    background-color: var(--color-white);
    margin-left: 0;
    font-size: 1.1em;
    transition: color 0.2s;
    border: none;
}

.pagination-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 15px 0;
    margin-top: 15px;
    border-top: 1px solid #eee;
}


.pagination-link {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 4px;
    border: 1px solid transparent;
    border-radius: 4px;
    text-decoration: none;
    color: #000000;
    transition: all 0.2s;
    font-size: 14px;
    background-color: #ffffff;
    border-radius: 25px;
    border: 1px solid #ccc;
}


.pagination-link:hover:not(.active):not(.disabled) {
    color: #ffffff;
    background-color: #ccc;
}

.pagination-link.active {
    color: white;
    border-color: var(----color-purple-gradient-12);
    background-color: #ef6c00;
}

.pagination-link.disabled {
    color: #ccc;
    pointer-events: none;
    border: 1px solid transparent;
}


@media (max-width: 768px) {
    .question-item {
        align-items: center;
    }

    .question-col {
        flex-basis: 100% !important;
        width: 100%;
        margin-bottom: 5px;
        white-space: normal;
        overflow: visible;
        text-align: left !important;
    }

    .question-col.resposta {
        display: -webkit-box !important;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden !important;
        white-space: normal !important;
    }
}

@media (max-width: 420px) {
    .question-list-header {
        display: none;
    }

    .question-col.resposta {
        display: -webkit-box !important;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden !important;
        white-space: normal !important;
    }
}

/*========================================================
        RECUPERAR SENHA 
========================================================*/

.btn-voltar-login {
    display: block;
    text-align: center;
    text-decoration: none;
    background: linear-gradient(to right, #8C77F5, #6D55DB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    margin-top: 20px;
}

.input-wrapper-relative {
    position: relative;
}

.input-icon-left {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    z-index: 10;
    font-size: 16px;
}

.password-toggle-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
    z-index: 10;
}

/*========================================================
        HISTORICAL PLANS 
========================================================*/
/* 
.payment-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    table-layout: auto;
}

.payment-table th,
.payment-table td {
    padding: 12px 8px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: #333;
    vertical-align: middle;
}

.payment-table th {
    background-color: #f8f9fa;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    color: #555;
    white-space: nowrap;
} */

.status-paid,
.status-fail {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
}

.status-paid {
    background: #e6fffa;
    color: #00b894;
    border: 1px solid #00b894;
}

.status-fail {
    background: #ffe6e6;
    color: #ff5252;
    border: 1px solid #ff5252;
}

@media (max-width: 768px) {
    .payment-table {
        table-layout: fixed !important;
        width: 100% !important;
    }

    .payment-table th,
    .payment-table td {
        padding: 8px 2px !important;
        font-size: 12px !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        line-height: 1.2 !important;
    }

    .payment-table th {
        font-size: 9px !important;
        vertical-align: bottom;
        text-align: center;
    }

    .payment-table td {
        text-align: center;
    }

    .payment-table th:nth-child(1),
    .payment-table td:nth-child(1) {
        width: 18%;
    }

    .payment-table th:nth-child(2),
    .payment-table td:nth-child(2) {
        width: 18%;
    }

    .payment-table th:nth-child(3),
    .payment-table td:nth-child(3) {
        width: 20%;
    }

    .payment-table th:nth-child(4),
    .payment-table td:nth-child(4) {
        width: 12%;
    }

    .payment-table th:nth-child(5),
    .payment-table td:nth-child(5) {
        width: 17%;
    }

    .payment-table th:nth-child(6),
    .payment-table td:nth-child(6) {
        width: 15%;
    }

    .status-paid,
    .status-fail {
        padding: 2px 4px !important;
        font-size: 9px !important;
        width: 100%;
        box-sizing: border-box;
        white-space: normal !important;
    }
}

/*========================================================
        BOOSTS 
========================================================*/

.hero-boosts {
    width: 100%;
    max-width: 420px;
    display: block;
    margin-left: auto;
    border-radius: 10px;
}

.boost-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
    padding: 5px 6px;
    border-radius: 50%;
    background: #ccc;
    margin: 12px;
}

#boost-bolt,
#notification-bell {
    font-size: 20px;
    color: #555;
}

.boost-count {
    position: absolute;
    bottom: -5px;
    right: -15px;
    background: red;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 50%;
    display: none;
}

.notification-count {
    position: absolute;
    bottom: -5px;
    right: -15px;
    background: red;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 50%;
    display: none;
}

.dropdown-boosts,
.dropdown-notifications {
    display: none;
    position: absolute;
    right: 0;
    margin-top: 10px;
    background: #fff;
    border: 1px solid #ddd;
    width: 200px;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    z-index: 999;
}

.dropdown-boosts.active,
.dropdown-notifications.active {
    display: block;
}

.notification-item {
    padding: 10px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.notification-item.read {
    background: #f9f9f9;
    color: #777;
}

.boost-badge {
    margin-top: 25px;
    position: relative;
    display: inline-block;
    padding: 6px 14px;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(90deg, #b55dfc, #472180, #8c00ff);
    background-size: 200%;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(183, 129, 227, 0.5);
    animation: metallicMove 3s linear infinite;
    overflow: hidden;
}

.boost-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,rgba(255, 255, 255, 0) 0%,rgba(255, 255, 255, 0.6) 50%,rgba(255, 255, 255, 0) 100%);
    animation: shine 2s infinite;
}

.boost-wrapper.active-boost-anim {
    background: linear-gradient(90deg, #b55dfc, #472180, #8c00ff);
    background-size: 200%;
    animation: metallicMove 3s linear infinite;
    box-shadow: 0 0 15px rgba(140, 0, 255, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.boost-wrapper.active-boost-anim i {
    color: #fff !important;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

@keyframes metallicMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

@media (max-width: 768px) {
    .hero-image {
        margin: 10px auto 0;
    }
}

/*========================================================
    ADMIN CHECK VIDEO
========================================================*/

.modal-header-check {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
}
/* 
.close-button-check {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #8c8c8c;
    transition: color 0.2s;
} */

.video-container-modal {
    background: #000;
    padding: 0;
}

.video-container-modal video {
    width: 100%;
    height: auto;
    display: block;
}

.modal-footer-check {
    justify-content: space-between;
    align-items: flex-end;
    padding: 15px 20px;
}


.doc{
    margin: 20px 0;
    width: 100%;
    max-width: 200px;
    object-fit: cover;
    padding: 20px;
    background: #555;
    border-radius: 10px;
}

.contText{
    text-align: justify;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding-bottom: 20px;
}

.pointer{
    cursor: pointer;
}

.manage-subscription{
    border: 1px solid #d4d4d4ff;
    border-radius: 10px;
    background-color: #FAFCFD;
}

.manage-subscription {
    border: 1px solid #d4d4d4ff;
    border-radius: 10px;
    background-color: #FAFCFD;
}

.cancels{
    background-color: #FFFBEB;
}

/*========================================================
       BLOG 
========================================================*/

.hero-blog { 
    position: relative; 
    border-radius: 15px; 
    overflow: hidden; 
    display: flex;
    align-items: flex-end; 
}

.hero-bg-img { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    object-fit: cover; z-index: 1; 
    transition: opacity 0.3s ease;
}

.overlay-blog {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); 
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 30px;
    display: flow;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    padding: 100px 30px;
}

.link-post{
    font-size: 20px;
    position: absolute;
    bottom: 20px;
}
.card-grid-blog { 
    height: 440px; 
    background: #fff; 
    border-radius: 12px; 
    border: 1px solid #f0f0f0; 
    display: flex; 
    flex-direction: column; 
    justify-content: space-between; 
    transition: 0.3s; 
}

.card-grid-blog:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 10px 20px rgba(165, 141, 255, 0.1); 

}
@media screen and (max-width: 950px) {
    .card-grid-blog {
	height: auto;
    }
}
.box-blog-img {
        width: 100%; 
        height: 200px; overflow: hidden; 
        border-radius: 12px 12px 0 0; 
}

.box-blog-img img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

.card-link:hover .section-subtitle { 
    color: #ef6c00; 
}

.search-wrapper { position: relative; width: 100%; }

#search-input { width: 100%; padding-right: 40px; box-sizing: border-box; }

.search-wrapper i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%); 
    color: #888;
    pointer-events: none; 
}

.footer-card-grid { 
    border-top: 1px solid #f9f9f9; 
}

.author-info { 
    font-size: 13px; 
    color: #555; 
    display: flex; 
    align-items: center;
     gap: 5px; 
}

.sidebar-widget { 
    background-color: #f1f1f1; 
    border-radius: 15px; 
    margin-top: 54px; 
}

.breadcrumb-post{
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 9;
    padding: 5px 5px 5px 8px;
    background: rgba(0,0,0,0.2);
    border-radius: 40px;
}
.breadcrumb-post .text{
    color: white;
}

.sidebar-title {
    font-size: 18px;
    font-weight: 800;
    color: #11151e;
    display: flex;
    align-items: center;
    gap: 10px;
}

.popular-row {
    display: flex;
    align-items: flex-start;
}

.rank-number {
    font-size: 28px;
    font-weight: 800;
    color: #ef6c00; 
    line-height: 1;
}

.popular-meta {
    font-size: 12px;
    color: #777;
}

.newsletter-card {
    background-color: #11151e;
    border-radius: 15px;
    color: white;
}

.newsletter-input {
    padding: 12px 15px; 
    border-radius: 8px;
    border: none;
    font-size: 14px;
}

@media screen and (max-width: 950px) {
    .box-grid {
	grid-template-columns: 1fr;
    }
}

.text-blog img { max-width: 100% !important; height: auto !important; border-radius: 5px; margin: 10px; display: inline-block; }
.ql-align-center { text-align: center !important; }
.ql-align-center img { display: block !important; margin: 20px auto !important; float: none !important; }

.blog-single-header { 
    height: 250px; 
    position: relative; 
}

.blog-single-img { 
    display: relative;
    width: 100%; height: 100%; 
    object-fit: cover; 
    border-radius: 5px 5px 0 0; 
    display: block; 
}

.overlay-single { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.1), rgba(255,255,255,1)) 
}

.content-wrapper-single { position: relative; }

#post-conteudo.collapsed-stage-1 {
    max-height: 450px; 
    overflow: hidden;
    transition: max-height 0.5s ease;
}

#post-conteudo.collapsed-stage-2 {
    max-height: 600px; 
    overflow: hidden;
    transition: max-height 0.5s ease;
}

#read-more-overlay {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
    pointer-events: none;
    z-index: 2;
}

#post-conteudo.collapsed {
    overflow: hidden;
    transition: max-height 0.5s ease-in-out; 
    position: relative;
}



/*========================================================
            MODAL PADRÃO 
========================================================*/

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-header {
    position: relative;
}

.modal-content {
    background-color: var(--color-white);
    padding: 20px;
    border-radius: 8px;
    position: relative;
    width: 600px;
    max-width: 100%;
    height: auto;
    /* max-height: 650px; */
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
    color: #555;
    background: none;

}

/* .close-button-check {
    border: none;
    font-size: 20px;
    color: #8c8c8c;
    transition: color 0.2s;
} */


.close-modal:hover {
    color: black;
}

.gallery-stories-container {
    display: flex;
    align-items: center;
    gap: 15px;
    overflow-x: hidden;
}

.native-slider-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 0 35px;
    overflow: hidden;
}

.stories-scroll-track {
    display: flex;
    align-items: center;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    width: 100%;
    white-space: nowrap;
    padding: 5px 0;
}

.stories-scroll-track::-webkit-scrollbar {
    display: none;
}

.stories-scroll-track .card-stories {
    width: 80px !important;
    height: 80px !important;
    flex-shrink: 0;
    margin: 0 8px;
    border-radius: 50%;
    background-color: #eee;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: block;
}

.stories-scroll-track .card-stories img,
.stories-scroll-track .card-stories video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.custom-arrow-stories {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: opacity 0.3s;
    position: absolute;
}

.arrow-disabled {
    opacity: 0.2 !important;
    cursor: default !important;
    pointer-events: none !important;
    filter: grayscale(100%);
}

.icon-container .fa-regular.fa-heart {
    cursor: pointer !important;
}

@media screen and (max-width: 768px) {
    .modal-content {
        width: 80%;
    }
}

@media screen and (max-width: 420px) {
    .modal-content {
        width: 80%;
        height: auto;
    }

    .number-modal-actions-full{
        display: grid;
        justify-content: space-around;
        gap: 10px;
    }
}

/*========================================================
       WARNING
========================================================*/

.title-warning { 
    font-size: 22px; 
    font-weight: 800; 
    text-transform: uppercase; 
    color: #333; 
    margin: 0; 
    line-height: 1; 
}

#modalWarning .box-warning {
    margin: 0; 
}

.box-warning { 
    position: relative; 
    max-width: 400px; 
    padding: 25px; 
    margin: 50px auto; 
    background: var(--color-white); 
    border-radius: 10px; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
}

.warning-img { 
    height: 40px; 
}

.separator-warning { 
    border-bottom: 1px solid #e0e0e0; 
    padding-bottom: 10px
}

/*========================================================
            TABELA PADRÃO
========================================================*/

.header-table {
    background-color: #d6d6d6;
    font-weight: bold;
}

.box-table {
    display: flex;
    align-items: stretch;
    list-style: none;
    margin: 0;
}

.box-table li {
    display: flex;
    align-items: center;
    padding: 10px 0;
    justify-content: center;
    border-bottom: 1px solid #ccc;
    font-size: 14px;
    font-weight: 400;
}

.box-table-card {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-static {
    padding: 5px !important;
    border-radius: 6px;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    font-size: 14px;
    flex: 1;
    margin: 1px 10px;
    border: none;
}

@media screen and (max-width: 768px) {
    .box-table {
        flex-direction: column;
        margin-bottom: 25px;
        border-radius: 8px; 
        padding: 10px;
        overflow: hidden;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .box-table li {
        width: 100% !important; 
        box-sizing: border-box;
        border: none; 
        border-bottom: 1px solid #ccc;
        justify-content: space-between;
    }

    .box-table li::before {
        font-weight: bold;
        text-transform: uppercase;
        font-size: 12px;
        color: #666;
        margin-right: 10px;
    }

    .box-table li.box-table-card {
        flex-direction: row;
        justify-content: space-between;
    }

    .btn-static {
        flex: none; 
        width: auto;
    }

    .box-table:first-of-type {
        display: none; 
    }
}

@media screen and (max-width: 768px) {
    .box-table:first-of-type { display: none; } /* Esconde o cabeçalho */

    .box-table { 
        flex-direction: column; 
        border: 1px solid #ccc; 
        margin-bottom: 15px; 
        padding: 10px;
    }

    .box-table li { 
        width: 100%; 
        justify-content: space-between; 
        border: none;
        padding: 10px;
    }

    .box-table li::before { 
        content: attr(data-label);
        font-weight: bold; 
    }

    .box-table-actions { 
        justify-content: center !important; 
        border-top: 1px solid #eee !important; 
        margin-top: 10px;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    grid-auto-rows: minmax(300px, auto);
    gap: 10px;
}

.f-large { grid-column: span 2; } 
.f-tall { grid-row: span 2; }   

.card-feature {
    background-color: #F9FAFB;
    border-radius: 12px;
    padding: 30px;
    max-height: 372px;
    /* margin: 5px 0; */
    /* display: flex; */
    /* flex-direction: column; */
    overflow: hidden;
    border: 1px solid #f1f1f1;
}

.feature-preview {
    background: #fff;
    border-radius: 12px;
    flex-grow: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    background: #cdcdcd;
    max-height: 200px;
}

.card-functions{
    justify-content: center; 
    flex-wrap: wrap; 
    gap: 20px;
}


@media screen and (max-width: 768px) {
    .features-grid{
        display: block;
        /* margin: 10px; */
    }

    .card-feature{
        margin: 10px 0;
        max-height: 100%;
    }

    .card-functions{
        display: block;
        width: 100%;
    }
}

.logo-text {
    color: #FFFFFF !important;
    font-size: 26px;
    font-weight: 400;
    transition: all 0.3s ease;
    user-select: none;
}

.logo-text span {
    font-weight: 300;
    opacity: 0.8;
}

.logo-text b {
    color: #FFFFFF;
}

.logo-text:hover {
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 20px;
        margin: 20px;
    }
}

    .author-info strong { display: block; font-size: 1.1rem; }
    .author-info span { color: #8358ff; display: block; font-size: 0.9rem; }
    .author-info small { color: #999; }

    .nav-arrows button {
        width: 45px; height: 45px;
        border-radius: 50%;
        border: 1px solid #eee;
        background: #fff;
        cursor: pointer;
        transition: 0.3s;
    }

    .nav-arrows button:hover { background: #f8f5ff; border-color: #8358ff; }

    .slider-dots {
        display: flex; 
        justify-content: center;
        margin-top: 30px;
        width: 100%;
    }

    .dot {
        display: inline-block;
        width: 10px;
        height: 10px;
        background: #ccc;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .dot.active {
        width: 30px;
        background: #ef6c00;
        border-radius: 10px;
    }

    .nav-arrows {
        display: flex;
        gap: 15px;
        z-index: 10;
    }

    .nav-arrows button {
        cursor: pointer;
        position: relative;
        pointer-events: auto; /* Garante que o clique funcione */
    }

