body {
    font-family: 'Poppins', sans-serif;
    background-color: black !important;
    color: #4b4b4b;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.lightbox {
    display: none !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #7F22FE;
    margin-top: 0;
}

#main-body {
    background-color: #0C0910; /* cor de fundo desejada */
}

.card, .panel-default {
    background-color: #ffffff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover, .panel-default:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: #0B090F !important;
    border: none !important;
    color: #fff !important;
    padding: 12px 24px !important;
    border-radius: 7px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #3e245f !important;
    transform: translateY(-2px);
}

.list-group-item {
    background-color: transparent;
    border: none;
    border-radius: 8px !important;
    margin-bottom: 5px;
    padding: 15px 20px;
    transition: background-color 0.3s ease;
}

.list-group-item.active {
    background-color: #6c5ce7;
    color: #fff;
    font-weight: 600;
}

.list-group-item:hover:not(.active) {
    background-color: #f1f3f6;
    cursor: pointer;
}

header.header {
    background-color: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

header.header .main-navbar-wrapper {
    background-color: #09090B;
    min-height: 60px;
}

header.header .navbar-nav a {
    color: #ffffff !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 500 !important;
    font-size: 16px;
    padding: 20px 25px !important;
    transition: color 0.4s ease, font-weight 0.4s ease;
}

header.header .navbar-nav a:hover {
    color: #7F22FE !important;
    text-decoration: none;
    font-weight: 600 !important;
}

/* assets/css/cards-simple.css */

/* Cards gerais */
.card {
    background-color: #ffffff; /* corpo branco */
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* Header do card */
.card .card-header {
    background-color: #7F22FE; /* roxo limpo */
    color: #ffffff;
    padding: 15px 20px;
    font-size: 1rem;
    font-weight: 600;
    border-bottom: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px 10px 0 0;
}

.card .card-header i {
    margin-right: 8px;
}

/* Botões do header */
.card .card-header .btn {
    font-size: 0.85rem;
    padding: 5px 10px;
    border-radius: 6px;
    background-color: #09090B;
    border: none;
    color: #fff;
    transition: background-color 0.2s;
}

.card .card-header .btn i {
    margin-right: 5px;
}

.card .card-header .btn:hover {
    background-color: #09090B;
}

/* Body do card */
.card .card-body {
    padding: 15px 20px;
    color: #333333;
    font-size: 0.95rem;
    line-height: 1.5;
}

.card-body.px-sm-5.py-5 {
    background: linear-gradient(#150B22, #0B090F); /* gradiente vertical */
    color: #ffffff; /* texto branco */
    padding-left: 3rem;  /* px-sm-5 */
    padding-right: 3rem;
    padding-top: 3rem;   /* py-5 */
    padding-bottom: 3rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Cores de destaque simples */
.card.card-accent-red .card-header { background-color: #7F22FE; }
.card.card-accent-green .card-header { background-color: #7F22FE; }
.card.card-accent-teal .card-header { background-color: #7F22FE; }

.card-title.m-0 {
    color: #ffffff; /* texto branco */
    font-size: 1rem; /* tamanho padrão, pode ajustar */
    font-weight: 600; /* sem exagero, profissional */
    margin: 0; /* garante que não tenha espaçamento extra */
}

#order-standard_cart .cart-sidebar h3,
#order-standard_cart .sidebar-collapsed h3 {
    color: #ffffff;
}

/* Responsividade */
@media (max-width: 768px) {
    .card {
        margin: 15px 0;
    }
    .card .card-header, .card .card-body {
        padding: 12px 15px;
    }
    .card .card-header .btn {
        font-size: 0.8rem;
        padding: 4px 8px;
    }
}

.header-roxy {
    background: linear-gradient(to right, #150B23 0%, #09090B 100%);
}

.topbar {
    background: linear-gradient(to right, #150B23 0%, #09090B 100%);
}

.knowledgebase-article h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.knowledgebase-article article {
    font-size: 1.1rem;
    color: #565867;
}

.master-breadcrumb, .breadcrumb {
    background-color: #0B090F;
    padding: 10px 20px;
}

.main-body {
    background-color: #0B090F;
}

.bg-dark {
    background-color: #2c3e50 !important;
}

.primary-bg-color {
    background-color: #0B090F !important;
}

.hidden {
    display: none !important;
}

header.header .dropdown-menu {
    background-color: #ffffff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

header.header .dropdown-menu .dropdown-item {
    color: #2c3e50;
    padding: none !important;
    transition: background-color 0.3s ease;
}

header.header .dropdown-menu .dropdown-item a {
    color: #2c3e50 !important;
    text-decoration: none;
    display: block;
}

header.header .dropdown-menu .dropdown-item:hover {
    background-color: #f0f2f5;
}

header.header .dropdown-menu .dropdown-item.active {
    background-color: #6c5ce7;
    color: #fff;
}

header.header .dropdown-menu .dropdown-item.active a {
    color: #fff !important;
}

.dropdown-menu {
    background-color: #2c3e50;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.dropdown-menu .dropdown-item {
    color: #fff;
    transition: background-color 0.3s ease;
}

.dropdown-menu .dropdown-item a {
    color: #fff !important;
    text-decoration: none;
    display: block;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #4b4b4b;
}

.dropdown-menu .dropdown-item.active {
    background-color: #6c5ce7;
    color: #fff;
}

.dropdown-menu .dropdown-item.active a {
    color: #fff !important;
}

.summary-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.summary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.summary-card i {
    min-width: 50px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 2rem;
    padding: 0;
}

.summary-card .summary-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
    margin-top: 5px;
}

.summary-card .summary-card-title {
    color: #999;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
}

.summary-card .summary-card-title:hover {
    text-decoration: none;
}

.summary-card .summary-card-value {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 4px;
    text-decoration: none;
}

.summary-card .summary-card-value:hover {
    text-decoration: none;
}

.text-green-500 {
    color: #38A75F;
    background-color: rgba(56, 167, 95, 0.08);
}

.text-red-500 {
    color: #eb2147;
    background-color: rgba(235, 33, 71, 0.08);
}

.text-blue-500 {
    color: #0091d5;
    background-color: rgba(0, 145, 213, 0.08);
}

.card-header .btn-primary {
    background-color: #f1f3f6 !important;
    color: #2c3e50 !important;
    padding: 8px 16px !important;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 6px;
}

.card-header .btn-primary:hover {
    background-color: #e2e5e9 !important;
}

.client-summary-cards {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
}

.services-cards-container {
    display: grid;
    gap: 15px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px); 
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); 
    border-bottom-color: #6c5ce7; 

}

.service-icon-container {
    background-color: #f1f3f6;
    border-radius: 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-container i {
    font-size: 1.5rem;
    color: #6c5ce7;
}

.service-info-col {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-name-domain {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.service-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
}

.service-domain a {
    font-size: 0.9rem;
    color: #7f8c8d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-domain a:hover {
    color: #555;
    text-decoration: underline;
}

.service-details-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.service-detail {
    display: flex;
    flex-direction: column;
    padding-left: 20px;
}

.service-detail:not(:first-child) {
    border-left: 1px solid #e0e0e0;
}

.detail-label {
    font-size: 0.8rem;
    color: #95a5a6;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.detail-value {
    font-size: 1rem;
    font-weight: 500;
    color: #4b4b4b;
}

.service-status-col {
    display: flex;
    align-items: center;
}

.label.status {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 5px 12px;
    color: #fff;
    white-space: nowrap;
}

.status-active {
    background-color: #2ecc71;
}

.status-pending {
    background-color: #f1c40f;
}

.status-suspended {
    background-color: #e74c3c;
}

.status-customer-reply {
    background-color: #5f00ffba !important;
}

.status-cancelled {
    background-color: #95a5a6;
}

@media (max-width: 768px) {
    .service-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .service-status-col {
        width: 100%;
        justify-content: flex-end;
    }
}

/*
 * Novo CSS para o Product Details
 */

.product-details {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.product-details .product-summary {
    flex: 1 1 300px; /* Para telas maiores, ocupa 1/3 do espaço */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #f7f9fc;
    border-radius: 12px;
    padding: 30px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.02);
}

.product-details .product-icon img {
    max-width: 150px;
    margin-bottom: 15px;
}

.product-details .product-icon .fa-stack {
    font-size: 3rem;
    margin-bottom: 15px;
}

.product-details .product-status-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.product-details .product-status-active .product-status-text {
    background-color: #2ecc71; /* Cor para status Ativo */
}

.product-details .product-status-pending .product-status-text {
    background-color: #f39c12; /* Cor para status Pendente */
}

.product-details .product-status-suspended .product-status-text {
    background-color: #e74c3c; /* Cor para status Suspenso */
}

.product-details .product-status-cancelled .product-status-text {
    background-color: #95a5a6; /* Cor para status Cancelado */
}

.product-details h3, .product-details h4 {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.product-details h3 {
    font-size: 1.5rem;
    color: #2c3e50;
}

.product-details h4 {
    font-size: 1.1rem;
    color: #6c757d;
}

.product-details .action-buttons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    width: 100%;
}

.product-details .action-buttons .btn {
    flex: 1;
    border-radius: 8px;
    font-weight: 600;
}

.product-details .action-buttons .btn-success {
    background-color: #2ecc71;
    border-color: #2ecc71;
}

.product-details .action-buttons .btn-danger {
    background-color: #e74c3c;
    border-color: #e74c3c;
}

.product-details .summary-details {
    flex: 1 1 500px; /* Para telas maiores, ocupa o resto do espaço */
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.product-details .summary-details .summary-item {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
}

.product-details .summary-details .summary-item h4 {
    color: #95a5a6;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 5px;
}

.product-details .summary-details .summary-item p {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4b4b4b;
    margin: 0;
}

.product-details .summary-details .summary-item p.summary-date {
    font-size: 1rem;
    font-weight: 500;
}

.product-details-tab-container {
    padding: 30px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.responsive-tabs-sm {
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    background-color: #f7f9fc;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.03);
    margin-bottom: 0;
}

.responsive-tabs-sm .nav-link {
    border: none !important;
    padding: 15px 25px !important;
    font-weight: 600;
    color: #7f8c8d;
    background-color: transparent !important;
    transition: background-color 0.3s, color 0.3s;
    border-bottom: 3px solid transparent !important;
    border-radius: 0;
}

.responsive-tabs-sm .nav-link:hover {
    background-color: #f1f3f6 !important;
    color: #4b4b4b;
}

.responsive-tabs-sm .nav-link.active {
    color: #6c5ce7;
    background-color: #ffffff !important;
    border-bottom: 3px solid #6c5ce7 !important;
}

.module-client-area {
    padding: 20px;
}

    .product-header {
        padding: 20px;
    }
    .product-details-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .details-item {
        border-right: 1px solid #e0e0e0;
        padding-right: 20px;
    }
    .details-item:nth-child(2n) {
        border-right: none;
        padding-right: 0;
    }
    .details-label {
        font-size: 0.85rem;
        color: #95a5a6;
        text-transform: uppercase;
        margin-bottom: 5px;
    }
    .details-value {
        font-size: 1.1rem;
        font-weight: 600;
        color: #4b4b4b;
        margin: 0;
    }
    .label.status {
        font-size: 0.8rem;
        font-weight: 700;
        text-transform: uppercase;
        border-radius: 50px;
        padding: 5px 12px;
        color: #fff;
    }
    .status-active {
        background-color: #2ecc71;
    }
    .status-pending {
        background-color: #f1c40f;
    }
    .status-suspended {
        background-color: #e74c3c;
    }
    .status-cancelled {
        background-color: #95a5a6;
    }
    @media (max-width: 768px) {
        .product-details-grid {
            grid-template-columns: 1fr;
        }
        .details-item {
            border-right: none;
            padding-right: 0;
        }
    }

.kb-search-form {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.search-bar {
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    background-color: #fff;
    border: 1px solid #e0e0e0;
}

.search-bar:focus-within {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: #007bff;
}

.search-input {
    border: none !important;
    background: transparent;
    padding: 1.2rem 2rem;
    font-size: 1rem;
}

.search-input::placeholder {
    color: #a0a0a0;
    font-style: italic;
}

.search-btn {
    border: none !important;
    background-color: #5352ED;
    color: #fff;
    border-radius: 50px;
    padding: 1.2rem 2.5rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.search-btn:hover {
    background-color: #4342C4;
}

.kb-category-card {
    border: none;
    border-radius: 1rem;
    background-color: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-decoration: none !important;
    padding: 1.5rem;
}

.kb-category-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.kb-category-icon {
    color: #5352ED;
}

.kb-category-card h5 {
    color: #212529;
    font-weight: 600;
}

.kb-articles-card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.kb-articles-card .card-header {
    background-color: transparent;
    border-bottom: 1px solid #f0f0f0;
    padding: 1.5rem;
}

.kb-articles-card .card-title {
    font-weight: 700;
    font-size: 1.25rem;
}

.kb-article-link {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border-color: #f0f0f0;
    transition: background-color 0.2s ease;
}

.kb-article-link:hover {
    background-color: #f8f9fa;
}

.kb-article-link h6 {
    font-weight: 600;
}

.kb-article-link .article-content {
    flex-grow: 1;
    margin-right: 1rem;
}

.kb-article-link .article-arrow {
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}

.kb-article-link:hover .article-arrow {
    transform: translateX(5px);
    color: #007bff !important;
}

.article-card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.article-card h1 {
    font-weight: 700;
}

.article-action-btn {
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.article-action-btn:hover {
    background-color: #007bff;
    color: #fff;
}

.article-meta {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 1rem;
}

.article-content {
    line-height: 1.8;
    color: #495057;
}

.article-content p, .article-content li {
    font-size: 1.1rem;
}

.article-content pre {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 1rem;
    border-radius: 0.5rem;
    white-space: pre-wrap;
    word-wrap: break-word;
}

#vote {
    font-weight: 600;
    color: #495057;
}

.btn-outline-success:hover, .btn-outline-danger:hover {
    color: #fff;
}

.related-articles-card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.related-articles-card .card-header {
    background-color: transparent;
    padding: 1.5rem;
}

.related-article-item {
    transition: all 0.2s ease;
    padding: 1.25rem 1.5rem;
    border-color: #f0f0f0;
}

.related-article-item h6 {
    font-weight: 600;
    color: #212529;
}

.related-article-item:hover {
    background-color: #f8f9fa;
    transform: translateX(5px);
}

.article-nav-btn {
    border-radius: 50px;
}

footer.footer {
    background-color: #150B23;
    font-size: 14px;
    color: #fff;
    border-top: 1px solid #7F22FE;
}

footer.footer.bg-light.py-5.border-top.mt-5 {
    background-color: #150B23 !important; /* roxo/preto escuro */
    font-size: 14px;
    color: #fff;
    border-top: 1px solid #0C0910 !important;
}

footer.footer, {
    background-color: #150B23;
    font-size: 14px;
    color: #fff;
    border-top: 1px solid #7F22FE;
}

footer.footer .btn {
    background-color: rgba(255, 255, 255, .1);
    color: #fff;
    font-size: 14px;
    line-height: 1.75rem;
    padding: 0 10px;
}

footer.footer h5, footer.footer h6 {
    color: #fff;
}

footer.footer a:hover {
    color: #1e90ff;
    text-decoration: underline;
}

footer.footer ul {
    padding-left: 0;
}

footer.footer li {
    margin-bottom: 6px;
}
