body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #222;
    color: #fff;
}

textarea {font-family: inherit;}

input[type="text"], input[type="number"], input[type="url"], input[type="date"], textarea {
    background-color: #333;
    border: 1px solid #222;
    color: #FFF;
    width: calc(100% - 20px);
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 10px;
    font-size: 15px;
    transition: background-color 0.6s ease, border-color 0.3s ease;
}

input[type="text"]:hover, input[type="number"]:hover, textarea:hover, input[type="url"]:hover, input[type="date"]:hover {
    background-color: #444;
    border-color: #808080;
}

button {
    padding: 12.5px;
    border-radius: 8px;
    background: #222;
    color: #FFF;
    border: 1px solid #525252;
    cursor: pointer;
    transition: background-color 0.37s ease, transform 0.27s ease-in-out;
    font-size: 15px;
    margin: 0px 7px 0px 0;
}

button:hover {
    background-color: #2A2A2A;
    transform: scale(1.075);
}

button:active {
    transform: scale(0.98);
}

a {text-decoration: underline;color: #fff;}

h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #f0f0f0 0%, #cccccc 50%, #f8f8f8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.8px;
    background: linear-gradient(135deg, #f7f7f7 0%, #dddddd 50%, #f9f9f9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.15);
}

h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.6px;
    background: linear-gradient(135deg, #fafafa 0%, #eeeeee 50%, #fcfcfc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

h4 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #fbfbfb 0%, #f1f1f1 50%, #fdfdfd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.08);
}

h5 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 0.4px;
    background: linear-gradient(135deg, #fcfcfc 0%, #f3f3f3 50%, #fefefe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.06);
}

h6 {
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
    background: linear-gradient(135deg, #fdfdfd 0%, #f5f5f5 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    padding: 10px 0;
    border-bottom: 0.1px solid #444;
}

form {margin-bottom: 20px;}

/*icone de css*/
.icon-wrapper-padrao {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-right: 8px;
    border-radius: 30%;
    transition: all 0.3s ease;
    vertical-align: middle;
    opacity: 0.7;
}

.icon-wrapper-padrao:hover {
    transform: scale(1.3) rotate(10deg);
    opacity: 1;
}

/*tooltip*/
.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
    margin: 0;
    text-align: left;
}
.tooltip-icon {
    background: #444;
    color: #fff;
    font-size: 12.5px;
    font-weight: bold;
    border-radius: 50%;
    padding: 3px 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.tooltip-text {
    visibility: hidden;
    width: 300px;
    background: #000;
    color: #fff;
    text-align: left;
    padding: 8px 10px;
    border-radius: 8px;
    position: absolute;
    z-index: 1000;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
    font-size: 14.5px;
    line-height: 1.4;
}
.tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: #000 transparent transparent transparent;
}

.tooltip:hover .tooltip-text,
.tooltip-text:hover {
    visibility: visible;
    opacity: 1;
}

/*pagination*/
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    gap: 10px;
}

.pagination-info {
    padding: 10px 16px;
    background: rgba(40, 40, 40, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #e0e0e0;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.pagination-btn {
    padding: 10px 16px;
    background: rgba(40, 40, 40, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #e0e0e0;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.pagination-btn:hover {
    background: rgba(60, 60, 60, 0.5);
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
    transform: translateY(-2px);
}

/*select-box*/
.select-box select {
    padding: 12px;
    font-size: 16px;
    background-color: #333;
    color: #fff;
    border: 1px solid #555;
    border-radius: 5px;
    width: 100%;
}

.select-box select option {
    background: #333;
    color: #fff;
    font-size: 16px;
    padding: 12px;
}

/*tabs*/
.tabs-container { margin: 0px auto; }
.tabs-header { display: flex; border-bottom: 2px solid #333; margin-bottom: 18px; }

.tab-btn {
    background: #222;
    color: #fff;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 12px 36px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 12px 12px 0 0;
    margin-right: 10px;
    transition: all 0.3s;
}
.tab-btn:hover { background: #333; }
.tab-btn.active {
    background: #333;
    color: #fff;
    border-bottom: 2px solid #999;
}

.tab-content { display: none; }
.tab-content.active { display: block; }

@media (max-width: 768px) {
    .tab-btn {
        padding: 10px 12px;
        font-size: 14px;
        flex: 1 1 45%;
        margin-bottom: 8px;
    }
}

/*variable-info*/
.variables-info {
    font-size: 0.9em;
    margin-top: 0px;
    margin-bottom: 20px;
    color: #ddd;
    line-height: 1.4em;
}
.variables-info p {margin-bottom: 12px;}

/*copy-variable*/
.copy-variable {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 5px;
    border-radius: 8px;
    font-family: monospace;
    color: #fff;
    transition: all 0.3s;
}
.copy-variable:hover {background: rgba(255, 255, 255, 0.3);transform: scale(1.02);}

/*add-button-context*/
.btn-add-context {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 5px;
    padding: 12px 12px;
    border-radius: 6px;
    cursor: pointer;
    margin: 15px auto;
    font-size: 14px;
}

.btn-add-context .icon-svg {
    width: 20px;
    height: 20px;
}

/*canvas-mobile*/
@media (max-width: 768px) {.max-canvas-mobile {max-height: 300px; width: 100%;}}

/*index*/
.body-index { font-family: Arial, sans-serif; background-color: #000; color: white; text-align: center; margin: 0; padding: 0;position:}
.header-div-index {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: min(90%, 1200px);
    background: rgba(40, 40, 40, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 25px;
    z-index: 1000;
    padding: 0.6rem 1rem;
    box-sizing: border-box;
}

.header-logo-index {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    width: 100%;
}

.header-logo-img-index {
    height: 60px;
    width: 60px;
    object-fit: contain;
    animation: fadeInAll 0.9s ease forwards;
}

.header-logo-text-index {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.5px;
    text-decoration: none;
    animation: fadeInAll 0.9s ease forwards;
}

.header-nav-index {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: fadeInAll 0.9s ease forwards;
}

.header-btn-index {
    font-size: clamp(0.9rem, 2vw, 1rem);
    background: none;
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.header-btn-index:hover {
    background: #fff;
    color: #000;
}

.header-acessar-container {
    display: flex;
    align-items: center;
}

.header-acessar-index {
    font-size: clamp(0.9rem, 2vw, 1rem);
    background: none;
    color: #fff;
    padding: 0.5rem 1.5rem;
    border: 1px solid #fff;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    animation: fadeInAll 0.9s ease forwards;
    white-space: nowrap;
}

.header-acessar-index:hover {
    background: #fff;
    color: #000;
}

@keyframes fadeInAll {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-index {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    box-sizing: border-box;
}

.hero-h1-index {
    font-size: 4.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: slideDown 1.1s ease-out;
}

.hero-p-index {
    font-size: 1.25em;
    max-width: 600px;
    margin: 20px auto;
    animation: slideDown 1.2s ease-out;
}

.hero-wordchanger {
    display: inline-block;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-fade-out { opacity: 0; transform: translateY(-20px); }
.hero-fade-in { opacity: 1; transform: translateY(0); }

.hero-cta-index {
    margin: 10px auto;
    font-size: 1.4em;
    padding: 12px 30px;
    background: #000;
    border-radius: 25px;
    color: #fff;
    border: 2px solid hsla(0, 0%, 100%, .5);
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    animation: slideDown 1.3s ease-out;
}

.hero-cta-index:hover {background-color: #fff;color: #000;}

@keyframes slideDown {from {opacity: 0; transform: translateY(-30px)} to {opacity: 1; transform: translateY(0)}}
@keyframes zoomIn {from {transform: scale(1); opacity: 0} to {transform: scale(1); opacity: 1}}

.beneficios-titulo-index {font-size: 2.5em;}
.beneficios-btn-index {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 0 8%;
}

.beneficios-detalhes-user-index {
    background-color: #1e1e1e;
    border-radius: 20px;
    padding: 30px 0px 30px 0px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.beneficios-detalhes-user-img-index {
    width: 60px;
    height: 60px;
    margin-bottom: 5px;
}

.funcionalidades-titulo-index {font-size: 2.5em;margin: 100px auto 0 auto;}

.funcionalidades-main-container-index {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin: 20px auto;
    max-width: 80%;
}

.funcionalidades-conteudo-index {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    background-color: #222;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
    color: #fff;
}

.funcionalidades-span-index {
    font-weight: bold;
    display: block;
    font-size: 1.1rem;
    color: #ddd;
}

.funcionalidades-img-index {
    vertical-align: middle;
    margin-right: 5px;
    width: 24px;
    height: 24px;
}

.funcionalidades-status-membros-index {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 35%;
    margin: 0 auto;
}

.funcionalidades-status-nome-index {
    font-weight: bold;
    display: block;
    font-size: 16px;
    color: #ddd;
}

.funcionalidades-bloco-index {
    display: flex;
    align-items: center;
    background: #222;
    border-radius: 20px;
    padding: 12px;
    width: 100%;
    text-align: left;
}

.funcionalidades-icon-index { margin-right: 15px; }
.funcionalidades-icon-img-index {width: 30px;height: 30px;}
.funcionalidades-info-index p {margin: 2px 0;}
.funcionalidades-grupo-label-index {color: #fff;font-weight: bold;}
.funcionalidades-adicionado-index { color: #8ff0a4; font-weight: bold; }
.funcionalidades-removido-index { color: #f66151; font-weight: bold; }
.tutorial-titulo-index { font-size: 2.5em; margin: 100px auto 0 auto; }

.tutorial-index {
    color: #fff;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.tutorial-index .tutorial-item-index {
    background-color: #222;
    color: #FFF;
    padding: 20px 0px;
    margin: 8px 0;
    border-radius: 20px;
    font-size: 1.5rem;
    font-weight: bold;
    min-width: 65%;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
}

.tutorial-index .tutorial-item-index:hover {
    background: #333;
}

.faq-titulo-index {
    font-size: 2.5em;
    margin: 100px auto 0 auto;
}

.faq-index {
    padding: 20px;
    color: #fff;
    max-width: 70%;
    margin: auto;
}

.faq-question-index {
    background: #222;
    padding: 22px;
    cursor: pointer;
    color: #fff;
    position: relative;
    border-radius: 20px;
    margin-bottom: 14px;
    text-align: left;
}

.faq-question-index:hover { background: #333; }
.faq-question-index h2 { margin: 0; font-size: 20px; }

.faq-question-index span {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
}

.faq-plus-index { opacity: 1; } .faq-minus-index { opacity: 0; }

.faq-answer-index {
    display: none;
    padding: 15px;
    background: #333;
    color: #fff;
    font-size: 18px;
    border-radius: 20px;
    margin-bottom: 10px;
    text-align: left;
}

.footer-index {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #111;
    color: #FFF;
    width: 100%;
    box-sizing: border-box;
    margin-top: auto;
    animation: fadeInAll 0.9s ease forwards
}

.footer-index div {
    display: flex;
    align-items: center;
}

.footer-index img {
    width: 100%;
    display: block;
    margin-right: 10px;
}

.footer-index a {
    color: #FFF;
    margin: 0 10px;
    text-decoration: underline;
}

.footer-index a:hover { color: #ccc; }
.footer-index .social-links-index { display: flex; gap: 20px; }

@media (min-width: 769px) { .header-acessar-mobile-index { display: none; } }
@media (max-width: 768px) {
    .header-div-index {
        width: 95.3%;
        padding: 0.2rem;
    }
    .header-nav-index { display: none; }
    .header-logo-img-index { height: 70px; width: 70px; }
    .header-logo-text-index { font-size: 1.2em; }
    .hero-h1-index {
        font-size: 1.6em;
        text-align: center;
        padding: 0 16px;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    .hero-p-index {
        font-size: 1.1em;
        text-align: center;
        padding: 0 16px;
        margin: 20px auto;
        max-width: 90%;
    }

    .hero-cta-index {
        font-size: 1.1em;
        padding: 12px 30px;
        width: 80%;
        max-width: 280px;
        text-align: center;
        border-radius: 25px;
    }

    .beneficios-btn-index {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        margin: 0 3%;
    }

    .funcionalidades-main-container-index {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0px;
        min-width: 90%;
    }

    .funcionalidades-status-membros-index {
        min-width: 90%;
        padding: 0px;
        gap: 15px;
    }

    .tutorial-index .tutorial-item-index { max-width: 90%; }
    .faq-index { max-width: 100%; }
    .footer-index { text-align: center; flex-direction: column; }
    .footer-index div { flex-direction: column; margin-bottom: 10px; }

    .footer-index .social-links-index {
        flex-direction: row;
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
    }
}

.button-criar {margin-top: -100%}
.span-charCount {display: block; margin-bottom: 10px; font-size: 14px; color: #fff; text-align: right; margin-top: -5px;}
.content-container {
    padding: 20px;
    background-color: #222;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: quickZoomIn 0.4s ease-out forwards;
}

@keyframes quickZoomIn { from { opacity: 0.35; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }

.file-upload-container {
    position: relative;
    margin: 15px 0;
}

.file-upload-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.file-upload-row .file-upload-container {
    flex: 1;
    min-width: 0;
}

.file-upload-button,
.btn-remove {
    background: #2a2a2a;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid #444;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.file-upload-label {
    margin-bottom: 8px;
    color: #888;
    display: block;
}

.file-upload-button:hover { background: #333; border-color: #666; } .btn-remove:hover { background: #5a2a2a; border-color: #ff4444; }
.btn-remove {
    background: #4a1a1a;
    color: #ff6666;
    border: 1px solid #662222;
    margin-left: 15px;
}
@media (max-width: 768px) { .file-upload-button, .btn-remove { padding: 8px 15px; font-size: 14px; width: 100%; margin-left: 0; } .file-upload-button { margin-bottom: 10px; } .btn-remove { margin-left: 0; } .file-upload-row { flex-direction: column; gap: 10px; } }

/*message-preview*/
.preview-btn { margin-top: 10px; padding: 12px 20px; background: #333; border-color: #666; }

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

.modal {
    position: fixed;
    z-index: 1000;
    left: 50%;
    top: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-content {
    position: relative;
    width: 360px;
    height: 670px;
    border: 2.5px solid #222;
    border-radius: 10px;
    animation: modalopen 0.3s;
    overflow: hidden;
    background-size: cover;
}

@keyframes modalopen {
    from { opacity: 0; }
    to { opacity: 1; }
}

.chat-header {
    padding: 8.5px;
    background: #000;
    color: #fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-weight: bold;
    display: flex;
    align-items: center;
}
.chat-body {
    padding: 15px;
    background: url('/static/telegram_background.png');
    height: calc(100% - 50px);
    overflow-y: auto;
    position: relative;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.chat-bubble {
    background: #222;
    color: #fff;
    border-radius: 10px;
    padding: 10px;
    max-width: 80%;
    position: relative;
    word-wrap: break-word;
    line-height: 1.4;
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards 0.25s;
    white-space: pre-wrap;
}

.telegram-btn-link {background-color: rgba(34, 34, 34, 0.80); color: white; border: none; padding: 9px; border-radius: 5px; font-size: 13.5px; font-weight: bold; cursor: pointer; width: 86%; transition: background 0.3s ease, color 0.3s ease; opacity: 0; margin-top: -2px; animation: fadeIn 0.8s ease-out forwards 0.7s; position: relative;} .telegram-btn-link:empty {display: none;} .telegram-btn-link::after {content: "→"; font-size: 12px; position: absolute; top: -5px; right: 5px; transform: rotate(-45deg);} .telegram-btn-link:empty::after {display: none;}

.telegram-btn:not(:first-of-type) { margin-top: 7px; }
.telegram-btn { background-color: rgba(34, 34, 34, 0.80); color: white; border: none; padding: 9px; border-radius: 5px; font-size: 13.5px; font-weight: bold; cursor: pointer; width: 86%; transition: background 0.3s ease, color 0.3s ease; opacity: 0; margin-top: -2px; animation: fadeIn 0.8s ease-out forwards 0.7s; }

.telegram-btn:hover { background-color: rgba(34, 34, 34, 1); color: #ddd; }
@keyframes fadeIn { to { opacity: 1; } }
.close-btn { color: #aaa; font-size: 28px; font-weight: bold; margin-right: 10px; cursor: pointer; transition: color 0.3s ease, transform 0.2s ease; } .close-btn:hover, .close-btn:focus { color: #fff; text-decoration: none; transform: scale(1.1); }

/*base*/
@keyframes fadeInAll{from{opacity:0;transform:scale(0.95);}to{opacity:1;transform:scale(1);}}@keyframes fadeOutAll{from{opacity:1;transform:scale(1);}to{opacity:0;transform:scale(0.95);}}
::-webkit-scrollbar { width: 8px; } ::-webkit-scrollbar-track { background: #333; } ::-webkit-scrollbar-thumb { background: #777; border-radius: 5px; } ::-webkit-scrollbar-thumb:hover { background: #555; }

.navbar {
    width: 275px;
    background-color: #000;
    height: 100%;
    padding: 8px;
    position: fixed;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.navbar::-webkit-scrollbar {
    display: none;
}

.navbar-select {
    font-size: 15.7px;
    padding: 5px;
    border: 1.8px solid #444;
    background-color: #000;
    color: #fff;
    border-radius: 13px;
    text-align: center;
    margin-bottom: -10px;
    margin-top: -5px ;
    overflow-x: hidden;
    outline: none;
    box-sizing: border-box;
    cursor: pointer;
    height: 38.5px;
    display: flex;
    align-items: center;
    position: relative;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease-in-out;
}

.navbar-select-option { background-color: #000; color: #fff; text-align: center;}
.navbar-select:hover{transform: scale(1.03);}

.navbar-button {
    font-size: 16px;
    border: none;
    background-color: #000;
    cursor: pointer;
    height: 38.5px;
    display: flex; align-items: center ;position: relative;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease-in-out;
}
.navbar-button img {width: 24px; height: 24px; margin-right: 15px; margin-left: 10px}

.navbar-button.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-left: 1.5px solid #fff;
}
.navbar-button:hover {background-color: #444;transform: scale(1.03);}

.nabar-button-badge-novo {
    background: red;
    color: #fff;
    font-size: 9px;
    font-weight: 600;
    padding: 2px 5px;
    border-radius: 5px;
    position: absolute;
    top: 0px;
    right: 0;
    animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse { 0% { opacity: 0.8; transform: scale(1); } 50% { opacity: 1; transform: scale(1.1); } 100% { opacity: 0.8; transform: scale(1); } }

.top-logo {
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.4s ease-in-out;
    display: block;
    width: 120px;
    height: 100px;
    margin: 0 auto;
}

.top-logo img {
    width: 120px;
    height: 100px;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease-in-out;
}
.top-logo:hover {transform: scale(1.03);}

.content {
    margin-left: 280px;
    padding: 24px;
    flex-grow: 1;
    overflow-y: auto;
    animation: fadeInUp 0.7s ease-out forwards;
}

@media (min-width: 769px) {#menu-button {display: none;}}
@media (max-width: 768px) {
    .navbar {
        width: 250px;
        background-color: #000;
        transform: translateX(-100%);
        transition: transform 0.5s ease;
        overflow-x: auto;
    }

    .navbar.open {
        transform: translateX(0);
    }

    .navbar-select {
        font-size: 15px;
        padding: 5px;
        margin-bottom: -12px;
        margin-top: -20px;
        height: 32px;
    }

    .navbar-button {
        font-size: 15px;
        height: 32px;
    }
    #menu-button {
    z-index: 2;
    display: block;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 50%;
    padding: 10px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    position: fixed;
    top: 10px;
    left: 10px;
    }
    .content {
        margin-left: 0;
        padding: 12px;
    }
}

/*dashboard*/

.dashboard {text-align: center; background-color: #000}

.container-dashboard {
    max-width: 80%;
    margin: 45px auto;
    background: #222;
    padding: 20px;
    border-radius: 25px;
    margin-bottom: 32px
}
.stats-dashboard {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: -25px;
}
.stats-dashboard div {
    max-width: 40%;
    font-size: 22px;
    flex: 1;
    text-align: center;
    background-color: #222;
    border-radius: 20px;
    color: white;
    line-height: 0.8;
}

.sales-list-dashboard h3 {
    display: inline-flex; align-items: center; justify-content: center; margin: 0px; text-align: center;
    font-weight: bold;
    font-size: 24px;
}

.canvas-dashboard {width: 100%;height: auto;}
.conversion-item-dashboard {
    display: flex;
    align-items: center;
    padding: 8px 0px;
    background: #222;
    border-radius: 15px;
    margin-bottom: 16px;
}

.label-dashboard, .value-dashboard {width: 15%;color: #fff;}

.progress-bar-dashboard {
    width: 65%;
    height: 15px;
    background: #444;
    border-radius: 10px;
    margin: auto;
}

.progress-dashboard {
    height: 100%;
    background: #fff;
    border-radius: 5px;
}
.responsive-sections-dashboard {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.sales-list-dashboard {
    padding: 20px;
    border-radius: 25px;
    margin: 5px auto;
    font-size: 18px;
    max-width: 380px;
    flex: 1 1 45%;
    background-color: #222;
    display: flex;
    flex-direction: column;
    gap: 4.5px;
}

.sales-list-dashboard div {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 10;
    border-bottom: 0.1px solid #222;
}

.switch-container-dashboard {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

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

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

.slider-dashboard:before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    left: 2px; bottom: 2px;
    background-color: white;
    border-radius: 50%;
    transition: .3s;
}

input:checked + .slider-dashboard {
    background-color: #333;
}

input:checked + .slider-dashboard:before {
    transform: translateX(26px);
}

.metrics-dashboard {
    margin-bottom: 12.5px;
    padding: 12.5px;
    background-color: #222;
    border-radius: 10px;
    width: auto;
    display: inline-block;
    max-width: 90%;
}

@media (max-width: 768px) {
    .container-dashboard {max-width: 100%;}
    .stats-dashboard div {max-width: 100%;}
    .canvas-dashboard {max-width: 100%;max-height: 240px;}
    .responsive-sections-dashboard {gap: 0px;}
    .label-dashboard, .value-dashboard {width: 35%;color: #fff;}
    .sales-item-dashboard span { font-size: 3.7vw; white-space: nowrap; overflow: visible; text-overflow: clip; }
    .sales-list-dashboard {margin: 15px auto;}
}

@media (min-width: 601px) {.canvas-dashboard {max-width: 100%;max-height: 400px;}}

/*downsell*/

.message-card-downsell {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 18px;
    margin-bottom: 18px;
    border: 1px solid #333;
    position: relative;
}

.btn-remove-message {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 25px;
    cursor: pointer;
    display: inline-block;
    background: #4a1a1a;
    color: #ff6666;
    border: 1px solid #662222;
    transition: all 0.3s ease;
    border-radius: 8px

}
.btn-remove-message:hover { background: #5a2a2a; border-color: #ff4444; }
.time-select-downsell {background: #111; color: #fff; border: 1px solid #444; border-radius: 8px; padding: 10px 15px; width: 180px; transition: all 0.3s ease;}

.lagura-downsell {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 20px;
}

.tipo-botao-downsell select  {
    padding: 12px;
    font-size: 16px;
    background-color: #333;
    color: #fff;
    border: 1px solid #555;
    border-radius: 5px;
    width: 100%;
}

.tipo-botao-downsell select option {
    background: #333;
    color: #fff;
    font-size: 16px;
    padding: 12px;
}

@media (max-width: 768px) {
    .btn-remove-message {
        position: static;
        display: block;
        width: 100%;
        margin-top: 0px;
        margin-bottom: 15px;
        padding: 10px 20px;
        text-align: center;
        border-radius: 5px;
    }

    .lagura-downsell {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        margin-top: 20px;
    }
}

/*upsell*/

.plano-content-upsell {
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.plano-content-upsell .form-group:nth-child(1) {flex: 2;}
.plano-content-upsell .form-group:nth-child(2) {flex: 1;}
.plano-content-upsell .form-group:nth-child(3) {flex-basis: 100%;width: 100%;}
.plano-content-upsell .form-group input,
.plano-content-upsell .form-group textarea {width: 100%;box-sizing: border-box;}

.message-card-upsell {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 18px;
    margin-bottom: 18px;
    border: 1px solid #333;
    position: relative;
}

.planos-container-upsell {
    margin-top: 20px;
    border-top: 1px solid #222;
    padding-top: 15px;
}

.plano-card-upsell {
    background-color: #222;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.plano-header-upsell {
    background-color: #222;
    padding: 8px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-remove-plano-upsell {
    background-color: #4a1a1a;
    color: #ff6666;
    border: none;
    padding: 6px 14px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;

}
.btn-remove-plano-upsell:hover { background: #5a2a2a; border-color: #ff4444; }

.time-select-upsell {background: #111; color: #fff; border: 1px solid #444; border-radius: 8px; padding: 10px 15px; width: 180px; transition: all 0.3s ease;}

.lagura-upsell {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 20px;
}

.tipo-botao-upsell select  {
    padding: 12px;
    font-size: 16px;
    background-color: #333;
    color: #fff;
    border: 1px solid #555;
    border-radius: 5px;
    width: 100%;
}

.tipo-botao-upsell select option {
    background: #333;
    color: #fff;
    font-size: 16px;
    padding: 12px;
}

@media (max-width: 768px) {
    .plano-content-upsell .form-group:nth-child(1), .plano-content-upsell .form-group:nth-child(2) {flex-basis: 100%;}
    .lagura-upsell {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        margin-top: 20px;
    }
}

.icon-svg { width: 24px; height: 24px; margin-right: 5px; vertical-align: bottom; display: inline-block; }

/*editar bot*/
#mensagem_inicial::-webkit-scrollbar { width: 8px; } #mensagem_inicial::-webkit-scrollbar-track { background: #444; } #mensagem_inicial::-webkit-scrollbar-thumb { background: #777; border-radius: 5px; } #mensagem_inicial::-webkit-scrollbar-thumb:hover { background: #555; } #mensagem_inicial:active::-webkit-scrollbar-thumb { background: #333; }
.mensagem-inicial-help-text {
    font-size: 0.9em;
    margin-top: 0px;
    margin-bottom: 5px;
    color: #aaa;
}

/*login*/
.body-login {
    font-family: Arial, sans-serif;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 85vh;
    background: #000;
    animation: quickZoomIn 0.4s ease-out forwards;
    overflow: hidden;
}

.logo-login {width: 165px; height: 150px; margin-bottom: -45px;margin-left: 0px;display: block;}
.p-login {margin: -5px}
.p-reset-email {
    margin-top: -5px;
    margin-bottom: 15px;
    font-size: 15px;
    color: #aaa;
}
.input-login,
.input-login[type="text"],
.input-login[type="password"] {
    color: #fff;
    background: none;
    padding: 18px 8px;
    border: 2px solid hsla(0, 0%, 100%, .5);
    border-radius: 15px;
    font-size: 16px;
    flex: 1;
    outline: none;
    margin: 0;
    width: 100%;
    min-width: 260px;
}
.input-login[type="text"]:hover, .input-login[type="password"]:hover {background-color: #000;}
.input-group {position: relative; display: flex; align-items:center;justify-content: center; width:100%;}

.button-login {
    width: 100%;
    padding: 10px;
    background-color: #fff;
    border-radius: 15px;
    color: #000;
    cursor: pointer;
    border: none;
    font-size: 16px;
    margin-top: -15px

}
.button-login:hover {background-color: hsla(0, 0%, 100%, .8);}

.icon-wrapper-login {
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
}

/*tutorial*/
.body-tutorial {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #FFF;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container-tutorial {
    background-color: #333;
    border-radius: 25px;
    margin: 20px auto;
    max-width: 900px;
    padding: 20px;
    flex: 1;
}

.img-tutorial {
    width: 100%;
    height: auto;
    margin: 18px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 14px;
    animation: fadeInAll 0.9s ease forwards
}

.video-container-tutorial {
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
    animation: fadeInAll 0.9s ease forwards
}

.video-element-tutorial {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    cursor: pointer;
}

.play-button-tutorial {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    cursor: pointer;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 100px;
    height: 100px;
}

.footer-tutorial {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #111;
    color: #FFF;
    width: 100%;
    box-sizing: border-box;
    margin-top: auto;
    animation: fadeInAll 0.9s ease forwards

}

.footer-tutorial div {
    display: flex;
    align-items: center;
}

.footer-tutorial img {
    width: 100%;
    display: block;
    margin-right: 10px;
}

.footer-tutorial a {
    color: #FFF;
    margin: 0 10px;
    text-decoration: underline;
}

.footer-tutorial a:hover {
    color: #ccc;
}

.footer-tutorial .social-links-tutorial {
    display: flex;
    gap: 20px;
}

.h1-tutorial {
    background-color: #222;
    color: #FFF;
    padding: 10px;
    border-radius: 25px;
    margin-bottom: 20px;
    animation: fadeInAll 0.9s ease forwards
}

.p-tutorial { animation: fadeInAll 0.9s ease forwards;padding: 0px; margin-bottom: 5px; border-bottom: none }
.h2-tutorial { animation: fadeInAll 0.9s ease forwards; }
.h3-tutorial { animation: fadeInAll 0.9s ease forwards; }

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

    .footer-tutorial div {
        flex-direction: column;
        margin-bottom: 10px;
    }

    .footer-tutorial .social-links-tutorial {
        flex-direction: row;
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
    }
}

/*404 e manuteção*/
.body-404-manutecao {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #000;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 85vh;
    overflow: hidden;
    text-align: center;
    animation: quickZoomIn 0.4s ease-out forwards;
}
.container-404-manutecao {max-width: 500px;  }
.container-404-manutecao img { width: 255px; height: 240px; display: block; margin: -40px auto; }
.h1-404-manutecao {
    font-size: 48px;
    margin: 10px 0;
    color: #FFF;
}
.p-404-manutecao {
    font-size: 20px;
    margin: 30px 0;
    color: #AAA;
}
.a-404-manutecao {
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    background-color: #444;
    padding: 15px 20px;
    border-radius: 15px;
    transition: background-color 0.3s ease, transform 0.3s ease-in-out;
    display: block;
    margin-bottom: 15px;
    max-width: 70%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.a-404-manutecao:hover {
    background-color: #222;
    color: #FFF;
    transform: scale(1.05);
}

/*tos*/
.body-tos { font-family: Arial, sans-serif; line-height: 1.6; margin: 0; padding: 20px; background-color: #000; color: #FFF; } .container-tos { background-color: #333; border-radius: 25px; margin: 20px auto; max-width: 900px; padding: 20px; } .h1-tos { background-color: #222; color: #FFF; padding: 10px; border-radius: 25px; margin-bottom: 20px;animation: fadeInAll 0.9s ease forwards; } .p-tos { animation: fadeInAll 0.9s ease forwards;padding: 0px; margin-bottom: 5px; border-bottom: none } .h2-tos { animation: fadeInAll 0.9s ease forwards; }

/*suporte*/
.suporte {
    max-width: 850px;
    margin: 50px auto;
    padding: 40px;
    text-align: center;
}
.icon-svg-suporte {
    width: 60px;
    height: 60px;
    vertical-align: middle; display: inline-block;
}
.h1-suporte {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: bold;
    color: #ddd;
}

.h3-suporte {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: #bbb;
}

.p-suporte {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #aaa;
}

.telegram-contact-suporte {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.telegram-contact-suporte a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    background-color: #444;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.4s ease;
}

.telegram-contact-suporte a:hover {
    background-color: #555;
    transform: scale(1.1);
}

.telegram-contact-suporte img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.social-links-suporte {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-links-suporte a {
    text-decoration: none;
    padding: 15px;
    border-radius: 10px;
    background-color: #444;
    transition: all 0.3s ease;
}

.social-links-suporte a:hover {
    background-color: #555;
    transform: scale(1.1);
}

/*editar bot botoes personalizados*/
.lista-botoes-botao-personalizado {
    list-style: none;
    padding: 0;
    margin: 0;
}

.item-lista-botao-personalizado {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 0.1px solid #444;
}

.coluna-texto-botao-personalizado, .coluna-link-botao-personalizado, .coluna-excluir-botao-personalizado {
    flex: 1;
    text-align: center;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 10;
    overflow: hidden;
    line-height: 1.4;
    max-height: calc(1.4em * 6);
    max-width: 45em;
    word-wrap: break-word;
}

.texto-botao-personalizado {
    /* Estilo para o texto */
}

.link-botao-personalizado {
    /* Estilo para o link */
}

.excluir-botao-personalizado {
    /* Estilo para o botão de excluir */
}

.form-excluir-botao-personalizado {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.botao-excluir-botao-personalizado {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.icone-excluir-botao-personalizado {
    width: 24px;
    height: 24px;
    margin: 0;
}

.msg-nenhum-botao-personalizado {
    text-align: center;
    padding: 10px;
}

.form-adicionar-botao-personalizado {
    display: none;
    border: none;
}

.form-adicionar-form-botao-personalizado {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 0.1px solid #444;
}

.input-botao-botao-personalizado {
    flex: 1;
    padding: 10px;
    margin-right: 10px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 10px;
}

.botao-confirmar-botao-personalizado {
    padding: 10px;
    background: #28a745;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 12%;
    margin-bottom: 10px;
    float: right;
}

.botao-cancelar-botao-personalizado {
    padding: 10px;
    background: #dc3545;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 12%;
    margin-bottom: 10px;
    margin-left: 10px;
    margin-right: 20px;
    float: right;
}

.botao-confirmar-botao-personalizado:hover {
    background: #218838;
}

.botao-cancelar-botao-personalizado:hover {
    background: #c82333;
}

.icone-confirmar-botao-personalizado {
    width: 20px;
    height: 20px;
}

.icone-cancelar-botao-personalizado {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .form-adicionar-form-botao-personalizado {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .input-botao-botao-personalizado {
        width: 100%;
        padding: 12px;
        margin: 5px 0;
        border-radius: 8px;
        text-align: center;
    }

    .botao-confirmar-botao-personalizado,
    .botao-cancelar-botao-personalizado {
        width: 100%;
        padding: 12px;
        border-radius: 8px;
        cursor: pointer;
        display: block;
        text-align: center;
        margin: 5px 0;
    }

    .botao-confirmar-botao-personalizado {
        background: #28a745;
    }

    .botao-cancelar-botao-personalizado {
        background: #dc3545;
    }
}

/*editar bot planos*/
.planos-lista-planosconfig {
    list-style: none;
    padding: 0;
    margin: 0;
}

.header-plano-planosconfig {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 0.1px solid #444;
}

.header-item-planosconfig {
    flex: 1;
    text-align: center;
}

.plano-item-planosconfig {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 0.1px solid #444;

}

.item-nome-planosconfig,
.item-duracao-planosconfig,
.item-valor-planosconfig {
    flex: 1;
    text-align: center;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 10;
    overflow: hidden;
    line-height: 1.4;
    max-height: calc(1.4em * 6);
    max-width: 45em;
    word-wrap: break-word;
}

.form-excluir-planosconfig {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.btn-excluir-planosconfig {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.icon-excluir-planosconfig {
    width: 24px;
    height: 24px;
    margin: 0;
}

.msg-nenhum-plano-planosconfig {
    text-align: center;
}

.form-adicionar-plano-planosconfig {
    display: none;
    border: none;
}

.form-inputs-planosconfig {
    display: flex;
    align-items: center;
    padding: 10px;
}

.input-nome-planosconfig,
.input-duracao-planosconfig,
.input-valor-planosconfig {
    flex: 1;
    padding: 10px;
    margin-right: 10px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 10px;

}

.input-duracao-planosconfig {
    background-color: #111;
    color: #fff;
    border: #111;
}

.btn-confirmar-planosconfig {
    padding: 10px;
    background: #28a745;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 12%;
    margin-bottom: 10px;
    float: right;
}

.btn-cancelar-planosconfig {
    padding: 10px;
    background: #dc3545;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 12%;
    margin-bottom: 10px;
    margin-left: 10px;
    margin-right: 10px;
    float: right;
}
.btn-confirmar-planosconfig:hover {
    background: #218838;
}

.btn-cancelar-planosconfig:hover {
    background: #c82333;
}
.icon-confirmar-planosconfig {
    width: 20px;
    height: 20px;
}

.icon-cancelar-planosconfig {
    width: 20px;
    height: 20px;
}


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

    .input-nome-planosconfig,
    .input-duracao-planosconfig,
    .input-valor-planosconfig {
        width: 100%;
        margin-bottom: 10px;
        margin-left: auto;
        margin-right: auto;
    }

    .btn-confirmar-planosconfig,
    .btn-cancelar-planosconfig {
        width: 100%;
        margin-bottom: 10px;
        margin-left: auto;
        margin-right: auto;
    }
}

/*editar bot planos pacotes*/
.header-plano-planospacotes {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 0.1px solid #444;
}

.header-item-planospacotes {
    flex: 1;
    text-align: center;
}

.plano-item-planospacotes {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 0.1px solid #444;
}

.item-nome-planospacotes,
.item-valor-planospacotes,
.form-excluir-planospacotesm,
.item-entregavel-planospacotes {
    flex: 1;
    text-align: center;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 10;
    overflow: hidden;
    line-height: 1.4;
    max-height: calc(1.4em * 6);
    max-width: 45em;
    word-wrap: break-word;
}

.form-excluir-planospacotes {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.btn-excluir-planospacotes {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.icon-excluir-planospacotes {
    width: 24px;
    height: 24px;
    margin: 0;
}

.form-adicionar-plano-planospacotes {
    display: none;
    border: none;
}

.btn-confirmar-planospacotes{
    padding: 10px;
    background: #28a745;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 12%;
    margin-bottom: 10px;
    float: right;
}
.btn-cancelar-planospacotes {
    padding: 10px;
    background: #dc3545;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 12%;
    margin-bottom: 10px;
    margin-left: 10px;
    margin-right: 10px;
    float: right;
}

.btn-confirmar-planospacotes:hover {
    background: #218838;
}

.btn-cancelar-planospacotes:hover {
    background: #c82333;
}

.icon-cancelar-planospacotes,
.icon-confirmar-planospacotes {
    width: 20px;
    height: 20px;
}

.msg-nenhum-plano-planospacotes {
    text-align: center;
}

.plano-content-planospacotes {
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.plano-content-planospacotes .form-group:nth-child(1) {flex: 2;}
.plano-content-planospacotes .form-group:nth-child(2) {flex: 1;}
.plano-content-planospacotes .form-group:nth-child(3) {flex-basis: 100%;width: 100%;}
.plano-content-planospacotes .form-group input,
.plano-content-planospacotes .form-group textarea {width: 100%;box-sizing: border-box;}

@media (max-width: 768px) {
    .plano-content-planospacotes .form-group:nth-child(1), .plano-content-planospacotes .form-group:nth-child(2) {flex-basis: 100%;}
    .btn-confirmar-planospacotes,
    .btn-cancelar-planospacotes {
        width: 100%;
        margin-bottom: 10px;
        margin-left: auto;
        margin-right: auto;
    }
}

/*botao de mais planos e botoes*/
.btn-de-mais-plano-container-planosconfig-botao-personalizado {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-de-mais-plano-planosconfig-botao-personalizado {
    background: #333;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    padding: 8px;
    margin:5px;
}
.icon-de-mais-planosconfig-botao-personalizado {
    width: 32px;
    height: 32px;
}

/*editar order-bumbp*/
.plano-content-order-bump {
    padding: 0px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.plano-content-order-bump .form-group:nth-child(1) {flex: 2;}
.plano-content-order-bump .form-group:nth-child(2) {flex: 1;}
.plano-content-order-bump .form-group:nth-child(3) {flex-basis: 100%;width: 100%;}

.plano-content-order-bump .form-group input,
.plano-content-order-bump .form-group textarea {width: 100%;box-sizing: border-box;}
.order-bump-text-fields {margin-top: 10px}

.order-bump-botoes-texts {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px;
}

.order-bump-botao-text-field {
    flex: 1;
    min-width: 250px;
}

.order-bump-input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #555;
    border-radius: 8px;
    background: #111;
    color: #fff;
    font-size: 1em;
}

@media (max-width: 768px) {
    .order-bump-botoes-texts {flex-direction: column; align-items: center;}
    .order-bump-botao-text-field {width: 100%;}
    .order-bump-input {max-width: 100%;}
    .plano-content-order-bump .form-group:nth-child(1),
    .plano-content-order-bump .form-group:nth-child(2) {
        flex-basis: 100%;
    }
}


/*payment options*/
.summary-container-payment-options {
}
.input-payment-options, select { width: 100%; padding: 8px; border: 1px solid #d1d5db; border-radius: 6px; font-size: 0.9rem; }
.config-container-payment-options {
    background: #222;
    border-radius: 10px;
    padding: 0px 18px;
    margin-bottom: 20px;
}
.config-form-payment-options {
    display: flex;
    flex-direction: column;
}
.config-form-payment-options label {
    margin-bottom: 6.5px;
    display: block;
}
.buttons-payment-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    justify-content: flex-end;
}
@media (max-width: 768px) {
    .input-payment-options {
        width: 100%;
        max-width: 100%;
    }
}

/*switch*/
.botoes-texts {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px;
}

.botao-text-field {
    flex: 1;
    min-width: 250px;
}
.text-fields {
    margin-top: 10px;
}
.toggle-container {
    margin: 15px 0;
    display: flex;
    align-items: center;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

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

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

.slider:before {
    content: "";
    position: absolute;
    height: 26px;
    width: 26px;
    left: 4px; bottom: 4px;
    background-color: white;
    border-radius: 50%;
    transition: .3s;
}

input:checked + .slider {
    background-color: #000;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

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

    .botao-text-field {
        width: 100%;
    }

    .qrcode-buttons {
        justify-content: center;
        width: 100%;
    }
}

/*aprovacao-automatica*/
.tipo-botao-aprovacao-automatica select {
    padding: 12px;
    font-size: 16px;
    background-color: #333;
    color: #fff;
    border: 1px solid #555;
    border-radius: 5px;
    width: 100%;
}

.tipo-botao-aprovacao-automatica select option {
    background: #333;
    color: #fff;
    font-size: 16px;
    padding: 12px;
}

/*automacao de posts*/
.message-card-automacao-de-posts {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 18px;
    margin-bottom: 18px;
    border: 1px solid #333;
    position: relative;
}

.btn-remove-botao-personaliado-automacao-de-posts {
    background-color: #4a1a1a;
    color: #ff6666;
    border: none;
    padding: 6px 14px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-add-botao-personaliado-automacao-de-posts {
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: #4a4a4a;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    margin: 0 auto;
    font-size: 14px;
}

.botao-personalizado-container-automacao-de-posts {
    margin-top: 20px;
    border-top: 1px solid #222;
    padding-top: 15px;
}

.botao-personalizado-card-automacao-de-posts {
    background-color: #222;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.botao-personalizado-header-automacao-de-posts {
    background-color: #222;
    padding: 8px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.botao-personalizado-content-automacao-de-posts {
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.botao-personalizado-content-automacao-de-posts .form-group:nth-child(1) {flex: 2;}
.botao-personalizado-content-automacao-de-posts .form-group:nth-child(2) {flex: 1;}
.botao-personalizado-content-automacao-de-posts .form-group:nth-child(3) {flex-basis: 100%;width: 100%;}
.botao-personalizado-content-automacao-de-posts .form-group input,
.botao-personalizado-content-automacao-de-posts .form-group textarea {width: 100%;box-sizing: border-box;}

.btn-remove-botao-personaliado-automacao-de-posts:hover { background: #5a2a2a; border-color: #ff4444; }

.lagura-automacao-de-posts {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 20px;
}

.btn-format-automacao-de-posts {
    background: #333;
    color: #fff;
    font-size: 16px;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #555;
    margin: 2px 5.5px 7px 0;
}

.btn-confirmar-automacao-de-posts {
    padding: 10px;
    background: #28a745;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 12%;
    margin-bottom: 10px;
    float: right;
}

.btn-cancelar-automacao-de-posts {
    padding: 10px;
    background: #dc3545;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 12%;
    margin-bottom: 10px;
    margin-left: 10px;
    margin-right: 10px;
    float: right;
}
.btn-confirmar-automacao-de-posts:hover {
    background: #218838;
}

.btn-cancelar-automacao-de-posts:hover {
    background: #c82333;
}

.input-time-automacao-de-posts {
    background-color: #222;
    color: #FFF;
    border: 2px solid #333;
    border-radius: 10px;
    padding: 10px;
    font-size: 16px;
    width: 200px;
    text-align: center;
    transition: all 0.3s ease;
}

.input-time-automacao-de-posts:focus {
    border-color: #000;
    outline: none;
    background-color: #333;
}

.config-envio-dia-semana-automacao-de-posts {
    background-color: #222;
    padding: 20px;
    border-radius: 8px;
    color: #fff;
    margin: 12px auto;
}

.dias-semana-automacao-de-posts {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.checkbox-dias-automacao-de-posts input[type="checkbox"] {
    margin-right: 5px;
    accent-color: #333;
}

.checkbox-dias-automacao-de-posts:hover {
    background-color: #333;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.editor-automacao-de-posts a { color: #007bff; text-decoration: none; } .editor-automacao-de-posts a:hover { text-decoration: underline; }
.editor-automacao-de-posts {
    min-height: 250px;
    max-height: 250px;
    padding: 10px;
    overflow: auto;
    resize: none;
    cursor: text;
    background-color: #333;
    border: 1px solid #222;
    color: #FFF;
    width: calc(100% - 20px);
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 10px;
    font-size: 15px;
    transition: background-color 0.6s ease, border-color 0.3s ease;
}

@media (max-width: 768px) {
    .lagura-automacao-de-posts {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        margin-top: 20px;
    }
    .btn-confirmar-automacao-de-posts,
    .btn-cancelar-automacao-de-posts {
        width: 100%;
        margin-bottom: 10px;
        margin-left: auto;
        margin-right: auto;
    }
}
/* dialog */
.custom-dialog-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.custom-dialog-container {
    width: 100%;
    max-width: 40%;
    max-height: 90vh;
    background-color: #222;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #222;
    display: flex;
    flex-direction: column;
}

.custom-dialog-header {
    padding: 12px 15px;
    background-color: #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #444;
    flex-shrink: 0;
}

.custom-dialog-header h3 {
    margin: 0;
    color: #fff;
    font-size: 20px;
}

.custom-dialog-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    padding: 0;
}

.custom-dialog-content {
    padding: 15px;
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
}
.custom-dialog-content p {
    color: #ddd;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 15px;
}

.custom-dialog-input {
    background-color: #222;
}

.custom-dialog-input:focus {
    outline: none;
}

.custom-dialog-error {
    color: #ff6666;
    font-size: 13px;
    min-height: 18px;
}

.custom-dialog-footer {
    padding: 12px 8px;
    background-color: #222;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    flex-shrink: 0;
}

.custom-dialog-button {
    padding: 12.5px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    margin: 0;
}

.custom-dialog-warning {
    margin: 12px 0;
    font-size: 14px;
    color: #ff4d4d;
    background: #2a0000;
    padding: 10px;
    border-radius: 8px;
}

.dialog-token-field {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.dialog-token-input {
    flex: 1;
    color: #b3b3b3;
    outline: none;
}

.dialog-edit-icon {
    width: 26px;
    height: 26px;
    margin-left: -32px;
    cursor: pointer;
    transition: transform 0.2s ease;
    top: 50%;
    transform: translate(-20%, -20%);
}

.dialog-edit-icon:hover {
    transform: translate(-30%, -20%) scale(1.1);
}

.dialog-config-icon-wrapper {
    position: relative;
    width: 100%;
    display: flex;
}

.dialog-config-icon {
    position: absolute;
    top: 20px;
    right: 8px;
    width: 35px;
    height: 35px;
    cursor: pointer;
    transition: transform 0.2s ease;
    transform: translateY(-20%);
}

.dialog-config-icon:hover {
    transform: translateY(-20%) scale(1.1);
}

.dialog-share-icon {
    right: 68px;
}

.dialog-switch-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.dialog-funnel-section {
    border-top: 1px solid #333;
    padding-top: 15px;
    margin-top: 15px;
}

.dialog-funnel-title {
    color: #fff;
    margin: 0 0 10px 0;
    font-size: 16px;
}

.dialog-funnel-description {
    color: #aaa;
    font-size: 13px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.dialog-funnel-label {
    color: #ccc;
    font-size: 13px;
    display: block;
    margin-bottom: 5px;
}

.dialog-funnel-current {
    background: #222;
    border: 1px solid #333;
    padding: 8px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
    color: #fff;
    font-size: 13px;
}

.dialog-funnel-current-label {
    color: #888;
}

.dialog-funnel-select {
    width: 100%;
    background: #222;
    border: 1px solid #333;
    color: #fff;
    padding: 8px;
    border-radius: 4px;
    font-size: 13px;
    margin-bottom: 10px;
}

.dialog-funnel-link {
    background: #222;
    border: 1px solid #333;
    padding: 8px 10px;
    border-radius: 4px;
}

.dialog-funnel-link-text {
    color: #888;
    font-family: monospace;
    font-size: 12px;
    word-break: break-all;
}

.dialog-warning-small {
    margin-top: 10px;
    font-size: 13px;
    color: #ff4d4d;
    background: #2a0000;
    padding: 10px;
    border-radius: 8px;
}

.dialog-input-margin {
    margin-top: 4px;
}

.dialog-switch-margin {
    margin-bottom: 15px;
}

.dialog-funnel-recommendations {
    border-top: 1px solid #333;
    padding-top: 15px;
    margin-top: 15px;
}

.dialog-recommendation-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.dialog-recommendation-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: transparent;
    border: 1px solid #333;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dialog-recommendation-item:hover {
    background: #2a2a2a;
    border-color: #444;
    transform: translateX(4px);
}

.dialog-recommendation-icon {
    font-size: 20px;
    min-width: 28px;
    text-align: center;
    flex-shrink: 0;
}

.dialog-recommendation-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.dialog-recommendation-content strong {
    color: #fff;
    font-size: 14px;
}

.dialog-recommendation-content small {
    color: #999;
    font-size: 12px;
    line-height: 1.4;
}

.dialog-recommendation-arrow {
    font-size: 16px;
    color: #666;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.dialog-recommendation-item:hover .dialog-recommendation-arrow {
    transform: translateX(4px);
    color: #999;
}

@keyframes scaleIn{from{transform:scale(.9);opacity:0}to{transform:scale(1);opacity:1}}
@keyframes scaleOut{from{transform:scale(1);opacity:1}to{transform:scale(.95);opacity:0}}
.custom-dialog-overlay.active{display:flex;background-color:rgba(0,0,0,.65);backdrop-filter:blur(0px)}
.custom-dialog-overlay.active .custom-dialog-container{animation:scaleIn .335s cubic-bezier(.2,0,.2,1) forwards}
.custom-dialog-overlay.closing{background-color:rgba(0,0,0,0);backdrop-filter:blur(0)}
.custom-dialog-overlay.closing .custom-dialog-container{animation:scaleOut .3s cubic-bezier(.2,0,.2,1) forwards}

@media (max-width: 768px) {
    .custom-dialog-container {
        max-width: 100%;
        width: 100%;
        max-height: 95vh;
        border-radius: 8px;
    }
    .custom-dialog-button {
        font-size: 13px;
        padding: 10px;
        max-width: 100px;
    }


}

/*funcao-bloqueada*/
.container-funcao-bloqueada {
    max-width: 850px;
    margin: 50px auto;
    padding: 40px;
    text-align: center;
    padding: 20px;
    background-color: #222;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: quickZoomIn 0.4s ease-out forwards;
}
.h1-funcao-bloqueada {
    font-size: 2.1rem;
    margin-bottom: 10px;
    font-weight: bold;
    color: #ddd;
}
.p-funcao-bloqueada {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #ccc;
}
.button-funcao-bloqueada {
    display: inline-block;
    margin-top: 0px;
    padding: 15px 40px;
    background-color: #444;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    transition: 0.3s;
}
.button-funcao-bloqueada:hover {
    background-color: #333;
}

/*botao-de-cta*/
.config-container-botao-cta {
    background: #222;
    border-radius: 10px;
    padding: 0px 18px;
    margin-bottom: 20px;
}

.text-fields-botao-cta {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.input-acao-botao-cta {
    padding: 14px;
    border: 1px solid #111;
    border-radius: 6px;
    background-color: #333;
    color: #fff;
    font-size: 16px
}

.cta-buttons-botao-cta {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 30px;
}

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

/*mailing*/
.lista-mailing {
    list-style: none;
    padding: 0;
    margin: 0;
}

.header-plano-mailing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 0.1px solid #444;
}

.header-item-mailing {
    flex: 1;
    text-align: center;
}

.plano-item-mailing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 0.1px solid #444;
}

.item-nome-mailing,
.item-data-mailing,
.item-status-mailing,
.item-usuarios-mailing,
.item-vendas-mailing,
.item-conversao-mailing {
    flex: 1;
    text-align: center;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 10;
    line-height: 1.4;
    max-height: calc(1.4em * 6);
    max-width: 45em;
    word-wrap: break-word;
}

.form-acoes-mailing {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 14px;
    align-items: center;
}

.btn-acoes-mailing {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
}

.icon-mailing {
    width: 22px;
    height: 22px;
    margin: 0;
}

.tipo-botao-mailing select {
    padding: 12px;
    font-size: 16px;
    background-color: #333;
    color: #fff;
    border: 1px solid #555;
    border-radius: 5px;
    width: 100%;
}

.tipo-botao-mailing select option {
    background: #333;
    color: #fff;
    font-size: 16px;
    padding: 12px;
}

.cancelar-btn-mailing {
    margin-left: auto;
    background-color: #333;
    border: none;
    border-radius: 20%;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 42px;
    margin-bottom: 10px;
}

.cancelar-btn-mailing img {
    width: 28px;
    height: 28px;
}

.subtitle-mailing {
    font-size: 20px;
    color: #fff;
    margin-bottom: 12px;
}

.bloco-mailing {
    background: #1e1e1e;
    border-radius: 18px;
    padding: 24px 28px;
    margin-bottom: 28px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
    transition: all 0.3s ease;
}
.bloco-mailing:hover {transform: scale(1.005);}

.subtitle-mailing {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 18px;
    border-bottom: 1px solid #444;
    padding-bottom: 6px;
}

.item-mailing {
    margin-bottom: 18px;
}

.item-mailing strong {
    display: inline-block;
    color: #bbb;
    font-weight: 600;
    min-width: 180px;
}

.valor-mailing,
.mensagem-mailing {
    background-color: #2b2b2b;
    padding: 12px 16px;
    border-radius: 12px;
    margin-top: 8px;
    color: #fff;
    white-space: pre-wrap;
    word-wrap: break-word;
    line-height: 1.5;
    border: 1px solid #333;
}

.entregavel-mailing {
    background: #202020;
    border-left: 3px solid #666;
    border-radius: 14px;
    padding: 15px 12px;
    margin: 10px auto 10px -5px;
    color: #eee;
    font-size: 14px;
}

.box-mailing {
    background: #262626;
    border-radius: 14px;
    padding: 18px 22px;
    margin-bottom: 20px;
    box-shadow: inset 0 0 3px #111;
    color: #ddd;
    font-size: 15.5px;
    transition: all 0.3s ease;
}
.box-mailing:hover {transform: scale(1.002);}

.box-mailing-ob {
    background: #2f2f2f;
    border-radius: 14px;
    padding: 12px 14px;
    margin: 14px 0;
    box-shadow: inset 0 0 3px #111;
}

.box-mailing a {
    color: #4a90e2;
    text-decoration: underline;
    font-weight: 600;
}

.box-mailing a:hover {
    color: #7db9ff;
    text-decoration: underline;
}

.tabela-usuarios-mailing {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(15%, 1fr));
    gap: 10px;
    background-color: none;
    padding: 0px;
    border-radius: 16px;
    color: #fff;
    margin-top: 20px;
}

.box-usuarios-mailing {
    background-color: #222;
    border: 2px solid #333;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.box-usuarios-mailing:hover {
    background-color: #333;
    transform: scale(1.03);
    border-color: #444;
}
.title-usuarios-mailing {
    font-size: 16px;
    margin-bottom: 10px;
    word-break: break-word;
}

.count-usuarios-mailing {
    font-size: 24px;
    font-weight: bold;
    word-break: break-word;
}

@media (max-width: 768px) {
    .tabela-usuarios-mailing {grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));}
    .header-plano-mailing {display: none;}
    .item-usuarios-mailing::before { content: "Enviados/Bloqueados: "; } .item-data-mailing::before { content: "Data: "; } .item-status-mailing::before { content: "Status: "; } .item-vendas-mailing::before { content: "Vendas: "; } .item-conversao-mailing::before { content: "Conversão: "; }
    .lista-mailing li.plano-item-mailing {border-bottom: 0.25px solid #ccc;}
    .plano-item-mailing { flex-direction: column; align-items: flex-start; gap: 6px; }
    .header-item-mailing,
    .item-nome-mailing,
    .item-data-mailing,
    .item-status-mailing,
    .item-usuarios-mailing,
    .item-vendas-mailing,
    .item-conversao-mailing,
    .form-excluir-mailing {
        flex: none;
        width: 100%;
        text-align: left;
    }
}

/*my-account*/
.header-my-account {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-icon-my-account {
    cursor: pointer;
    padding: 12px;
    transition: transform 0.6s ease-in-out;
}

.menu-icon-my-account:hover {
    transform: rotate(360deg);
}

.menu-img-my-account {
    width: 65px;
    height: 65px;
}

.title-my-account {
    font-size: 30px;
    color: #fff;
    font-weight: bold;
}

.divider-my-account {
    border: 1px solid #444;
    margin: 30px 0;
}

.account-info-my-account {
    line-height: 1.6;
    font-size: 18px;
    margin-top: 0px;
}

.info-item-my-account {
    padding: 15px 25px;
    background-color: #2d2d2d;
    margin: 15px 0;
    border-radius: 10px;
    font-size: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #444;
}
.info-item-my-account:hover {transform: scale(1.025);}

.btn-save-my-account {
    background-color: #4CAF50;
    color: #fff;
    border: none;
    padding: 12px 20px;
    min-width: 150px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: inline-block;
    margin: 30px 10px 0 0;
}

.btn-save-my-account:hover {background-color: #388E3C; }

.btn-logout-my-account {
    background-color: #f44336;
    color: #fff;
    border: none;
    padding: 12px 20px;
    min-width: 150px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: inline-block;
    margin: 30px 10px 0 0;
}

.btn-logout-my-account:hover {background-color: #d32f2f;}

/*calendario*/
.header-container-calendario {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1%;
    margin-top: 15px;
    flex-wrap: wrap;
    border-bottom: 2px solid #333;
    margin-bottom: 5px;
}

.header-container-h1-calendario {
    font-size: 30px;
    color: #fff;
    margin: 0;
}

.input-group-calendario {
    display: flex;
    align-items: center;
    background-color: none;
    border-radius: 25px;
    margin-left: 20px;
    box-sizing: border-box;
}

.date-input-calendario[type="text"] {
    color: #fff;
    border-radius: 25px;
    background-color: #222;
    cursor: pointer;
    padding: 15px 0px 15px 38.5px;
    border-radius: 15px;
    font-size: 16px;
    margin: 0 -3px;
    width: 100%;
    min-width: 425px;
    display: block;
    box-sizing: border-box
}

.date-input-calendario[type="text"]:hover { background-color: #222; }
.icon-wrapper-calendario {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    pointer-events: none;
}

.input-icon-calendario { width: 22px; }
.input-container-calendario { position: relative; display: inline-block;}

.container-calendario {
    position: fixed;
    top: 2%;
    left: 70%;
    transform: translateX(-50%) scale(0.4);
    background-color: #000;
    border-radius: 32px;
    padding: 0 1em;
    min-width: 28.5%;
    min-height: 10%;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.5s ease;
    padding: 0.5em 1em;
}
.container-calendario::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 22px;
    width: 24px;
    height: 24px;
    background-color: #000;
    transform: rotate(45deg);
    z-index: 2;
}
.container-calendario.show-calendario {
    opacity: 1;
    transform: translateX(-10%) scale(1);
    pointer-events: auto;
}

.header-calendario {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
}

.header-display-calendario {
    display: flex;
    align-items: center;
}

.header-display-calendario p {
    color: #fff;
    font-size: 1.25rem;
}

.pre-calendario {
    cursor: pointer;
    font-size: 1.25rem;
    color: #fff;
}

.days-calendario,
.week-calendario {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.week-calendario div,
.days-calendario div {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2.5em;
    width: 2.6em;
    border-radius: 10px;
}

.days-calendario div:hover {
    background: #fff;
    color: rgb(25, 25, 201);
    cursor: pointer;
}

.current-date-calendario {
    background-color: #fff;
    color: #000;
}

.start-date-calendario {
    background-color: #3366cc !important;
    color: white !important;
}

.end-date-calendario {
    background-color: #cc3366 !important;
    color: white !important;
}

.in-range-calendario {
    background-color: #444 !important;
}

.display-selected-calendario {
    margin-bottom: 10px;
    text-align: center;
    font-size: 15.5px;
}

.filter-label-calendario {
    display: block;
    margin-bottom: 5px;
}

.clear-button-calendario {
    display: block;
    font-size: 15px;
    width: 100%;
    margin: 12px auto;
    padding: 7.3px 10.5px;
    background-color: #222;
    color: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
}

.clear-button-calendario:hover {
    background-color: #555;
}

@media (max-width: 768px) {
    .container-calendario {
        left: 50%;
        top: 2.3%;
        transform: translateX(-50%) scale(0.9);
        min-width: 90%;
        min-height: 0%;
        padding: 0.5em 1em;
    }
    .container-calendario.show-calendario {
        opacity: 1;
        transform: translateX(-50%) scale(1);
        pointer-events: auto;
    }
    .input-group-calendario {
        flex-direction: column;
        margin: 0;
        margin-bottom: -20px;
        width: 100%;
    }
    .date-input-calendario[type="text"] { min-width: 315px;}
    .header-container-calendario {border-bottom: none; margin-bottom: 0px}
    .week-calendario div,
    .days-calendario div {
        height: 2.3rem;
        width: 2.4rem;

    }
}

/*statistics*/
.statistics {text-align: center; background: linear-gradient(135deg,#111,#1a1a1a,#222)}
.section-title-statistics {text-align: center;}

.stats-grid-statistics {
    padding: 1rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.stats-card-statistics {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 0.2rem;
}

.stats-card-statistics:hover {
    transform: rotate(1.2deg) scale(1.02);
}

.stats-title-statistics {
    font-size: 0.9rem;
    font-weight: 500;
    color: #ccc;
    word-break: break-word;
    margin-bottom: 0.8rem;
    margin-top: 7px;
    text-align: left;
    line-height: 1;
    text-shadow: none;
}

.stats-value-statistics {
    font-size: 1.7rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-align: left;
}

.top-performers-statistics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 15px;
    margin-bottom: 50px;
}
.top-performer-card-statistics {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
}

.top-performer-card-statistics h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}
.top-performer-card-statistics:hover {
    transform: translateY(-5px);
}
.top-list-statistics {
    list-style: none;
    padding: 0;
    margin: 0;
}
.top-list-statistics li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}
.top-list-statistics li:hover {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    padding: 15px 10px;
}

.top-info-statistics {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
}
.top-name-statistics {
    font-weight: 600;
    font-size: 16px;
    color: #fff;
}
.top-details-statistics {
    font-size: 14px;
    color: #aaa;
}
.top-value-statistics {
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    margin-left: 12px;
}

.graficos-statistics {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 1.5rem auto;
    padding: 0px;
}

.row-top-statistics,
.row-middle-statistics,
.row-bottom-statistics {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.chart-container-browser-statistics,
.chart-container-slugs-usuarios-statistics,
.chart-container-os-statistics,
.chart-container-hour-statistics,
.chart-container-performance-statistics,
.chart-container-users-map-statistics,
.chart-container-top-cities-statistics {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chart-container-browser-statistics:hover,
.chart-container-slugs-usuarios-statistics:hover,
.chart-container-os-statistics:hover,
.chart-container-hour-statistics:hover,
.chart-container-performance-statistics:hover,
.chart-container-users-map-statistics:hover,
.chart-container-top-cities-statistics:hover {
    transform: scale(1.007);
}

.row-top-statistics .chart-container-browser-statistics,
.row-top-statistics .chart-container-os-statistics,
.row-top-statistics .chart-container-slugs-usuarios-statistics {
    flex: 1;
    max-height: 305px;
}

.chart-container-browser-statistics canvas {margin-top: -47px;}

.row-middle-statistics .chart-container-hour-statistics {
    flex: 57%;
    min-height: 400px;
}

.row-middle-statistics .chart-container-performance-statistics {
    flex: 25%;
    min-height: 400px;
}
.chart-container-performance-statistics canvas {margin: 35px;}

.row-bottom-statistics .chart-container-users-map-statistics,
.row-bottom-statistics .chart-container-top-cities-statistics {
    flex: 1;
    min-height: 400px;
}

.cidades-vendas-list-statistics {
    max-height: 400px;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    padding: 14px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.6);
    scrollbar-color: #555 #1a1a1c;
}

.cidade-item-statistics {
    display: flex;
    justify-content: space-between;
    border-radius: 20px;
    padding: 16px 20px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.005);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}
.cidade-item-statistics:hover {
    transform: scale(1.015);
}

.cidade-info-statistics {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cidade-dados-statistics {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}
.cidade-nome-statistics {
    font-weight: 650;
    font-size: 1rem;
}
.cidade-vendas-statistics {
    font-size: 0.88rem;
    font-weight: 580;
}
.cidade-valor-statistics {
    font-size: 0.88rem;
    font-weight: 580;
}

.switch-container-statistics {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.switch-statistics {
    position: relative;
    width: 50px;
    height: 24px;
}
.slider-statistics {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #333;
    border-radius: 30px;
    transition: background 0.3s ease;
}
.slider-statistics:before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    left: 2px; bottom: 2px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
}
input:checked + .slider-statistics {
    background-color: #444;
}
input:checked + .slider-statistics:before {
    transform: translateX(26px);
}

.metrics-statistics {
    margin-bottom: 16px;
    padding: 18px;
    background: #222;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 500;
    max-width: 100%;
}
.canvas-mediausuarios-statistics,
.chart-hour-statistics {
    flex: 1;
    position: relative;
    width: 100%;
}

@media (max-width: 768px) {
    .row-top-statistics,
    .row-middle-statistics,
    .row-bottom-statistics {
        flex-direction: column;
    }
    .row-top-statistics .chart-container-browser-statistics,
    .row-top-statistics .chart-container-os-statistics,
    .row-top-statistics .chart-container-slugs-usuarios-statistics {
        max-height: 400px;
    }
}

/*pagamentos*/
.titulo-pagamentos {
    color: #eee;
    font-weight: 700;
    margin-bottom: 20px;
}

.container-pagamentos {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.card-pagamentos {
    flex: 1 1 280px;
    padding: 16px;
    border-radius: 20px;
    box-sizing: border-box;
    min-width: 280px;
    border: 0.1px solid #444;
}

.titulo-card-pagamentos {
    margin-top: 0;
}

.imagem-pagamentos {
    width: 100%;
    max-width: 200px;
    height: 200px;
    border-radius: 35px;
    margin-bottom: 12px;
    display: block;
    object-fit: cover;
}

.subtitulo-pagamentos {
    margin-bottom: 6px;
}

.token-pagamentos {
    font-family: monospace;
    margin-bottom: 12px;
}

.botao-pagamentos {
    cursor: pointer;
    background: #333;
    border: none;
    padding: 8px 14px;
    border-radius: 8px;
}

.form-token-pagamentos {
    margin-top: 10px;
}

.input-token-pagamentos {
    width: 100%;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #444;
    background: #222;
    color: #eee;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.botao-salvar-pagamentos {
    background: #555;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.roteamento-container-pagamentos {
    background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #333;
}
.info-roteamento-pagamentos { color: #ccc; margin-bottom: 20px; font-size: 15px; }

.metodo-container-pagamentos { margin-bottom: 30px; }
.metodo-titulo-pagamentos {
    color: #ccc;
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 2px solid #444;
    padding-bottom: 8px;
    display: inline-block;
}

.gateway-actions-pagamentos {
    background: linear-gradient(135deg, #2a2a2a 0%, #333 100%);
    padding: 14px;
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid #404040;
}

.available-gateways-pagamentos { display: flex; flex-wrap: wrap; gap: 12px; }
.available-gateway-item-pagamentos {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #333 0%, #404040 100%);
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #525252;
    transition: all 0.2s ease;
}
.available-gateway-item-pagamentos:hover {
    background: linear-gradient(135deg, #404040 0%, #4a4a4a 100%);
    transform: translateY(-1px);
}

.botao-adicionar-gateway-pagamentos {
    background: #1f5f2e;
    color: #b6ffb6;
    border-radius: 8px;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
}
.botao-adicionar-gateway-pagamentos:hover {
    background: #27ae60;
    color: #fff;
    transform: none;
}

.gateway-list-pagamentos {
    background: #222;
    border: 1px solid #333;
    border-radius: 12px;
    min-height: 120px;
    padding: 16px;
    margin-bottom: 16px;
    max-height: 300px;
    overflow-y: auto;
}

.gateway-item-pagamentos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #2a2a2a 0%, #333 100%);
    border: 1px solid #404040;
    transition: all 0.2s ease;
    cursor: move;
}
.gateway-item-pagamentos:hover {
    background: linear-gradient(135deg, #333 0%, #404040 100%);
    transform: translateY(-1px);
}
.gateway-item-pagamentos:last-child { margin-bottom: 0; }
.gateway-item-pagamentos.dragging { opacity: 0.6; transform: rotate(1deg); }
.gateway-item-pagamentos.drag-over {
    background: linear-gradient(135deg, #3a3a3a 0%, #4a4a4a 100%);
    border-color: #666;
}

.gateway-info-pagamentos { display: flex; align-items: center; gap: 12px; flex: 1; }
.gateway-name-pagamentos { font-weight: bold; color: #fff; }

.gateway-status-pagamentos {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    margin-left: 10px;
}
.gateway-status-pagamentos.connected {
    background: #1f5f2e;
    color: #b6ffb6;
}
.drag-handle-pagamentos { color: #888; cursor: grab; font-size: 16px; user-select: none; padding: 4px; }
.drag-handle-pagamentos:active { cursor: grabbing; }

.botao-remover-gateway-pagamentos {
    background: #404040;
    color: #fff;
    border: 0.7px solid #777;
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 32px;
}
.botao-remover-gateway-pagamentos:hover { background: #ff4444; }

.empty-state-pagamentos {
    color: #fff;
    font-style: italic;
    text-align: center;
    padding: 40px 20px;
    background: #222;
    border-radius: 8px;
    border: 2px dashed #333;
}

.form-roteamento-pagamentos { margin-top: 10px; }

/*trigger*/
.message-card-trigger {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 18px;
    margin-bottom: 18px;
    border: 1px solid #333;
    position: relative;
}

.select-tipo-trigger {
    width: 100%;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #444;
    background: #222;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
}

.config-eventos-trigger {
    background-color: #222;
    padding: 20px;
    border-radius: 8px;
    color: #fff;
    margin: 12px auto;
}

.eventos-trigger {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.checkbox-eventos-trigger input[type="checkbox"] {
    margin-right: 5px;
    accent-color: #333;
}

.checkbox-eventos-trigger:hover {
    background-color: #333;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/*captacao-leads*/
.message-card-captacao-de-leads {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 18px;
    margin-bottom: 18px;
    border: 1px solid #333;
    position: relative;
}

.select-tipo-captacao-de-leads {
    width: 100%;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #444;
    background: #222;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
}

/*codigo-de-venda*/
.centralizar-graficos-codigo-venda {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    align-items: stretch;
    margin-bottom: 25px;
    padding: 0px;
}

.container-melhores-codigo-de-venda,
.container-melhores-valor-codigo {
    display: flex;
    flex-direction: column;
    padding: 22px;
    border-radius: 24px;
    background-color: #222;
    border: 2px solid #333;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.container-melhores-codigo-de-venda {
    flex: 1%;
    min-height: 340px;
}

.container-melhores-valor-codigo {
    flex: 1%;
    min-height: 340px;
}

.container-melhores-codigo-de-venda:hover,
.container-melhores-valor-codigo:hover {transform: scale(1.012);}

.codigos-de-venda-permitidos-section {
    background: #222;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.codigos-de-venda-permitidos-section:hover {transform: translateY(-2px);}

.canvas-melhores-codigo-de-venda,
.canvas-maior-valor-codigo {
    flex: 1;
    position: relative;
    width: 100%;
}

.codigo-card-codigo-de-venda {
    background-color: #222;
    border: 2px solid #333;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    padding: 8px;
    margin-bottom: 24px;
    border: 1px solid #333;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}
.codigo-card-codigo-de-venda:hover {transform: scale(1.01);}

.codigo-header-codigo-de-venda {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 0 20px;
    margin-bottom: 15px;
}

.codigo-name-codigo-de-venda {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    display: flex;
    align-items: center;
    flex: 1;
}

.metrics-container-codigo-de-venda {
    padding: 0 20px 20px 20px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 12px;
    align-items: center;
}

.valor-principal-codigo-de-venda {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    text-align: left;
}

.metricas-grid-codigo-de-venda {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.metrica-item-codigo-de-venda {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    padding: 8px 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.metrica-item-codigo-de-venda:hover {
    background: rgba(255, 255, 255, 0.08);
}

.metrica-item-codigo-de-venda .label-codigo-de-venda {
    font-size: 14px;
    color: #aaa;
    font-weight: 500;
    margin-bottom: 2px;
}

.metrica-item-codigo-de-venda .value-codigo-de-venda {
    font-size: 16px;
    color: #fff;
}

.tipos-grid-codigo-de-venda {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    padding: 0 20px 20px 20px;
}

.tipo-item-codigo-de-venda {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    padding: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.2s;
}

.tipo-item-codigo-de-venda:hover {
    background: rgba(255, 255, 255, 0.08);
}

.tipo-label-codigo-de-venda {
    font-size: 14px;
    color: #aaa;
    font-weight: 500;
    margin-bottom: 2px;
}

.tipo-normais-codigo-de-venda { border-left: 4px solid #2196F3; }
.tipo-pacotes-codigo-de-venda { border-left: 4px solid #FF9800; }
.tipo-downsell-codigo-de-venda { border-left: 4px solid #F44336; }
.tipo-upsell-codigo-de-venda { border-left: 4px solid #4CAF50; }
.tipo-mailing-codigo-de-venda { border-left: 4px solid #9C27B0; }
.tipo-outros-codigo-de-venda { border-left: 4px solid #607D8B; }
.tipo-valor-codigo-de-venda { font-size: 14px; }
.tipo-count-codigo-de-venda { font-size: 14px; }

.section-title-codigo-de-venda {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 1.4rem;
    font-weight: 600;
}

.lista-botoes-codigo-de-venda {
    list-style: none;
    padding: 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.item-lista-codigo-de-venda-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px 15px 0 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.item-lista-codigo-de-venda {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
}

.item-lista-codigo-de-venda:hover {
    background: rgba(255, 255, 255, 0.05);
}

.coluna-texto-codigo-de-venda {
    flex: 2;
    text-align: left;
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 500;
    word-break: break-word;
    word-wrap: break-word;
}

.coluna-acoes-codigo-de-venda {
    flex: 1;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    align-items: center;
}

.botao-acao-codigo-de-venda {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.botao-acao-codigo-de-venda:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.btn-delete-codigo-de-venda {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 10px 14px;
    cursor: pointer;
    background: #4a1a1a;
    color: #ff6666;
    border: 1px solid #662222;
    transition: all 0.3s ease;
    border-radius: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    z-index: 10;
}

.btn-delete-codigo-de-venda:hover {
    background: #5a2a2a;
    border-color: #ff4444;
    transform: scale(1.05);
}

.btn-de-mais-container-codigo-de-venda {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-de-mais-codigo-de-venda {
    background: #333;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    padding: 8px;
    margin: 5px;
}

.form-adicionar-codigo-de-venda {
    display: none;
    border: none;
}

.form-adicionar-form-codigo-de-venda {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 0.1px solid #444;
}

.input-botao-codigo-de-venda {
    flex: 1;
    padding: 10px;
    margin-right: 10px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 10px;
    margin-left: 14px;
}

.botao-confirmar-codigo-de-venda {
    padding: 10px;
    background: #28a745;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 12%;
    margin-bottom: 10px;
    margin-right: 18px;
    float: right;
}

.botao-cancelar-codigo-de-venda {
    padding: 10px;
    background: #dc3545;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 12%;
    margin-bottom: 10px;
    margin-left: 10px;
    margin-right: 20px;
    float: right;
}

.botao-confirmar-codigo-de-venda:hover {
    background: #218838;
}

.botao-cancelar-codigo-de-venda:hover {
    background: #c82333;
}

.icone-acao-codigo-de-venda {
    width: 20px;
    height: 20px;
}

.icone-confirmar-codigo-de-venda,
.icone-cancelar-codigo-de-venda {
    width: 20px;
    height: 20px;
}

.icon-de-mais-codigo-de-venda {
    width: 32px;
    height: 32px;
}

.empty-state-codigo-de-venda {
    text-align: center;
    color: #777;
    padding: 50px;
    font-style: italic;
}

.msg-nenhum-codigo-de-venda {
    text-align: center;
    padding: 10px;
}

@media (max-width: 768px) {
    .container-melhores-codigo-de-venda,
    .container-melhores-valor-codigo {
        flex: 1 1 100%;
        width: 100%;
        max-width: 500px;
        min-height: auto;
        margin: 0 auto;
    }

    .form-adicionar-form-codigo-de-venda {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .input-botao-codigo-de-venda {
        width: 100%;
        padding: 12px;
        margin: 5px 0;
        border-radius: 8px;
        text-align: center;
    }

    .botao-confirmar-codigo-de-venda,
    .botao-cancelar-codigo-de-venda {
        width: 100%;
        padding: 12px;
        border-radius: 8px;
        cursor: pointer;
        display: block;
        text-align: center;
        margin: 5px 0;
    }

    .botao-confirmar-codigo-de-venda {background: #28a745;}
    .botao-cancelar-codigo-de-venda {background: #dc3545;}

    .coluna-acoes-codigo-de-venda {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: flex-end;
    }

    .metrics-container-codigo-de-venda {grid-template-columns: repeat(1, 1fr);}
    .metricas-grid-codigo-de-venda {grid-template-columns: repeat(1, 1fr);}
    .tipos-grid-codigo-de-venda {grid-template-columns: repeat(1, 1fr);}
}

/*redirecionadores*/
.main-grid-redirecionadores {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.form-redirecionadores,
.box-redirecionadores {
    background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    border: 1px solid #333;
    height: fit-content;
}

.form-grid-redirecionadores {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
}

.form-full-redirecionadores {
    grid-column: 1 / -1;
}

input.input-redirecionadores,
.select-redirecionadores,
.button-redirecionadores {
    background: #222;
    color: #fff;
    border: 1px solid #525252;
    border-radius: 12px;
    padding: 12px 14px;
    transition: all 0.3s ease;
    font-size: 14.5px;
    width: 100%;
    box-sizing: border-box;
}
input.input-redirecionadores:hover { background: #2e2e2e;}

.use-points-icon-redirecionadores {
    height: 18px;
    width: 18px;
    vertical-align: middle;
    margin-left: 5px;
}

.label-redirecionadores {
    color: #e0e0e0;
    font-size: 14px;
    font-weight: 475;
    display: inline;
    margin: 0;
}

.checkbox-group-redirecionadores {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
}

.checkbox-group-redirecionadores input[type=checkbox] {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: #333;
}

.bot-section-redirecionadores {
    grid-column: 1 / -1;
}

.bot-controls-redirecionadores {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
    align-items: end;
}

.bot-list-redirecionadores {
    background: #222;
    border: 1px solid #333;
    border-radius: 12px;
    min-height: 120px;
    padding: 16px;
    margin-bottom: 16px;
    max-height: 300px;
    overflow-y: auto;
}

.bot-item-redirecionadores {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #2a2a2a 0%, #333 100%);
    border: 1px solid #404040;
    transition: all 0.2s ease;
}

.bot-item-redirecionadores:hover {
    background: linear-gradient(135deg, #333 0%, #404040 100%);
    transform: translateY(-1px);
}

.bot-item-redirecionadores:last-child {
    margin-bottom: 0;
}

.bot-info-redirecionadores {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.drag-handle-redirecionadores {
    color: #888;
    cursor: grab;
    user-select: none;
    font-size: 16px;
    padding: 4px;
}

.bot-item-redirecionadores.dragging {
    opacity: 0.6;
    transform: rotate(1deg);
}

.bot-item-redirecionadores.drag-over {
    background: linear-gradient(135deg, #3a3a3a 0%, #4a4a4a 100%);
    border-color: #555;
}

.remove-btn-redirecionadores {
    background: #404040;
    color: #fff;
    border: 0.7px solid #777;
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: bold;
    min-width: 32px;
}

.remove-btn-redirecionadores:hover {
    background: #ff4444;
}

.button-group-redirecionadores {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    grid-column: 1 / -1;
    margin-top: 8px;
}

.button-redirecionadores {
    border-radius: 12px;
}

.button-redirecionadores:hover {
    background: #2e2e2e;
    transform: translateY(-1px);
}

.action-buttons-redirecionadores {
    display: flex;
    gap: 8px;
    align-items: center;
}

.action-buttons-redirecionadores form {
    margin: 0;
    padding: 0;
}

.delete-btn-redirecionadores {
    background: linear-gradient(135deg, #4a1a1a 0%, #5a2020 100%);
    border: 1px solid #662222;
    border-radius: 8px;
    padding: 8px 16px;
    color: #ff6666;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 13px;
}

.edit-btn-redirecionadores {
    background: linear-gradient(135deg, #1a4a1a 0%, #205a20 100%);
    border: 1px solid #226622;
    border-radius: 8px;
    padding: 8px 16px;
    color: #66ff66;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 13px;
    margin-right: 8px;
}

.section-title-redirecionadores {
    color: #fff;
    margin-bottom: 24px;
    font-weight: 600;
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.redir-item-redirecionadores {
    margin-bottom: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
    border-radius: 12px;
    border: 1px solid #333;
    transition: all 0.2s ease;
}

.redir-header-redirecionadores {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
}

.redir-title-redirecionadores {
    color: #fff;
    background-color: #2b2b2b;
    font-family: 'Fira Code', monospace;
    font-size: 14.5px;
    padding: 6px 8px;
    border-radius: 8px;
    user-select: all;
    cursor: pointer;
    word-break: break-all;
    white-space: normal;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.redir-title-redirecionadores:hover {
    background-color: #3a3a3a;
    transform: scale(1.02);
}
.redir-meta-redirecionadores {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.meta-item-redirecionadores {
    color: #bbb;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-active-redirecionadores {
    color: #4CAF50;
}

.status-inactive-redirecionadores {
    color: #f44336;
}

.bot-count-redirecionadores {
    color: #888;
    font-size: 14px;
    margin-bottom: 8px;
}

.bot-list-display-redirecionadores {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 8px;
    margin-bottom: 16px;
}

.bot-tag-redirecionadores {
    background: #333;
    color: #ddd;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 14px;
    border: 1px solid #444;
}
.bot-tag-redirecionadores { display: inline-flex; align-items: center; gap: 3px; }
.bot-tag-redirecionadores img { height: 18px; width: 18px; vertical-align: middle; }
.bot-tag-redirecionadores span.count { font-size: 0.9em; color: #b3b3b3; }

.empty-state-redirecionadores {
    color: #fff;
    font-style: italic;
    text-align: center;
    padding: 40px 20px;
    background: #222;
    border-radius: 8px;
    border: 2px dashed #333;
}

.mode-random-redirecionadores {
    color: #ff9800;
}

.mode-fixed-redirecionadores {
    color: #2196f3;
}

@media (max-width: 768px) {
    .main-grid-redirecionadores {grid-template-columns: 1fr;}
}

/*tournament*/
.container-tournament {
    max-width: 90%;
    margin: 0 auto;
}

.header-tournament {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.main-title-tournament {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, #f8fafc 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    animation: fadeInAll 0.9s ease forwards;
}

.subtitle-tournament {
    font-size: 1.1rem;
    color: #94a3b8;
    font-weight: 400;
    animation: fadeInAll 0.9s ease forwards;
}

.updated-info-tournament {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #293145;
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 1rem;
    color: #cbd5e1;
    margin-top: 16px;
    border: 1px solid #475569;
    animation: fadeInAll 0.9s ease forwards;
}

.rankings-grid-tournament {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.ranking-section-tournament {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
    border: 1px solid #334155;
    position: relative;
    height: 500px;
    display: flex;
    flex-direction: column;
    animation: fadeInAll 0.9s ease forwards;
}

.ranking-section-tournament::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #6366f1, transparent);
}

.section-title-tournament {
    font-size: 1.75rem;
    font-weight: 700;
    color: #f1f5f9;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title-tournament::before {
    content: '';
    width: 6px;
    height: 32px;
    background: linear-gradient(180deg, #6366f1, #8b5cf6);
    border-radius: 3px;
}

.ranking-table-container {
    flex-grow: 1;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #334155 #1e293b;
}

.ranking-table-container::-webkit-scrollbar {
    width: 8px;
}

.ranking-table-container::-webkit-scrollbar-track {
    background: #1e293b;
    border-radius: 4px;
}

.ranking-table-container::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 4px;
}

.ranking-table-container::-webkit-scrollbar-thumb:hover {
    background: #475569;
}

.ranking-table-tournament {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px
}

.table-header-tournament {
    background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
    color: #e2e8f0;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 16px 20px;
    border: none;
    position: sticky;
    top: 0;
    z-index: 1;
}

.table-header-tournament:first-child {
    border-radius: 12px 0 0 12px;
    text-align: center;
}

.table-header-tournament:last-child {
    border-radius: 0 12px 12px 0;
}

.table-row-tournament {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.table-row-tournament:hover {
    transform: translateY(-2px);
}

.table-cell-tournament {
    padding: 20px;
    border: none;
    color: #cbd5e1;
    font-weight: 500;
    vertical-align: middle;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    max-width: 5ch;
}

.table-row-tournament:hover .table-cell-tournament {
    background: linear-gradient(135deg, #475569 0%, #334155 100%);
}

.table-cell-tournament:first-child {
    border-radius: 16px 0 0 16px;
    text-align: center;
    font-weight: 700;
    font-size: 1.25rem;
    width: 50px;
}

.table-cell-tournament:last-child {
    border-radius: 0 16px 16px 0;
    color: #10b981;
    font-weight: 700;
    font-size: 1.1rem;
}

.rank-1-tournament .table-cell-tournament {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #92400e !important;
    font-weight: 700;
}

.rank-1-tournament:hover {
    transform: translateY(-4px);
}

.rank-1-tournament:hover .table-cell-tournament {
    background: linear-gradient(135deg, #fcd34d 0%, #fbbf24 100%);
}

.rank-2-tournament .table-cell-tournament {
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    color: #374151 !important;
    font-weight: 700;
}

.rank-2-tournament:hover {
    transform: translateY(-4px);
}

.rank-2-tournament:hover .table-cell-tournament {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.rank-3-tournament .table-cell-tournament {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #9a3412 !important;
    font-weight: 700;
}

.rank-3-tournament:hover {
    transform: translateY(-4px);
}

.rank-3-tournament:hover .table-cell-tournament {
    background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
}

@media (max-width: 768px) {
    .rankings-grid-tournament {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .ranking-section-tournament {
        padding: 8px;
        height: auto;
    }

    .ranking-table-tournament {
        min-width: 100%;
        table-layout: fixed;
    }

    .table-cell-tournament {
        padding: 4px 6px;
        font-size: 0.65rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .table-cell-tournament:first-child {
        font-size: 0.75rem;
        padding: 4px 6px;
    }

    .table-cell-tournament:last-child {
        font-size: 0.75rem;
        padding: 4px 6px;
    }
    .table-header-tournament {
        font-size: 0.5rem;
        padding: 4px 6px;
    }
}


/*points*/
.title-points {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.box-info-points {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
    border: 1px solid #2a2a2a;
}

.box-info-points p {
    color: #b0b0b0;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.box-info-points p strong {
    color: #ffffff;
    font-weight: 600;
}

.points-table {
    width: 100%;
    max-width: 450px;
    margin: 24px auto 0;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
}

.points-table th,
.points-table td {
    padding: 14px 20px;
    text-align: center;
}

.points-table th {
    background: #242424;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.points-table td {
    background: #1a1a1a;
    color: #d0d0d0;
    font-size: 1rem;
    border-top: 1px solid #2a2a2a;
}

.content-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.box-points {
    background: #1a1a1a;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
}


.box-points strong {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.box-points span {
    color: #909090;
    font-size: 0.95rem;
}

.form-container-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.btn-option-points {
    padding: 18px 24px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 12px;
    background: #1a1a1a;
    border: 2px solid #2a2a2a;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.payment-container-points {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #2a2a2a;
    margin-bottom: 32px;
    text-align: center;
}

.code-id-points {
    font-size: 0.9rem;
    color: #808080;
    background: #242424;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid #2a2a2a;
    margin-bottom: 16px;
    word-break: break-all;
}

.value-display-points {
    font-size: 1.75rem;
    color: #ffffff;
    font-weight: 700;
    margin: 20px 0;
}

.pix-label-points {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 24px 0 16px;
}

.qrcode-container-points {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin: 20px auto;
    border-radius: 16px;
    background: #ffffff;
    max-width: fit-content;
}

.pix-code-textarea-points {
    width: calc(100% - 32px);
    max-width: 600px;
    height: 100px;
    border-radius: 12px;
    padding: 16px;
    border: 2px solid #2a2a2a;
    font-size: 0.9rem;
    background: #242424;
    color: #d0d0d0;
    resize: none;
    margin: 16px auto;
    display: block;
    box-sizing: border-box;
    word-break: break-all;
}

.pix-code-textarea-points:hover,
.pix-code-textarea-points:focus {
    outline: none;
    border-color: #555;
    background: #353535;
}
.status-verification-points {
    margin-top: 24px;
    padding: 14px 24px;
    background: #2a2400;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
    color: #ffd700;
    font-weight: 600;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

.button-container-points {
    text-align: right;
    margin-top: 24px;
}

.btn-points {
    padding: 12px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    background: #1a1a1a;
    border: 2px solid #2a2a2a;
    color: #ffffff;
    transition: all 0.2s ease;
}

@media (max-width: 768px) {
    .title-points { font-size: 2rem; }
    .box-info-points { padding: 24px; }
    .content-points { grid-template-columns: 1fr; }
    .form-container-points { grid-template-columns: 1fr; }
    .payment-container-points { padding: 24px 16px; }
    .pix-code-textarea-points { font-size: 0.8rem; }
    .button-container-points { text-align: center; }
    .btn-points { width: 100%; }
}
