/* =============================
   WGDS Custom Styles
   ============================= */

/* --- Sidebars --- */
.stats-list {
    list-style: none; padding: 0; margin: 0; line-height: 1.8;
}
.stats-list strong {
    color: #e9d8a6;
}
.mini-ranking-table {
    width: 100%; text-align: left; border-collapse: collapse; font-family: Tahoma, sans-serif; font-size: 13px;
}
.mini-ranking-table th {
    padding: 10px 5px; color: #fff; background: #59361ee6; font-weight: normal; font-size: 14px; border: none; text-align: center;
}
.mini-ranking-table td {
    padding: 10px 5px; background: rgba(22, 10, 4, 0.6); color: #dcd2c8; border-bottom: 1px dashed rgba(212, 163, 69, 0.2); text-align: center; font-size: 13px; transition: all 0.3s ease;
}
.mini-ranking-table tr:last-child td {
    border-bottom: none;
}
.mini-ranking-table td:first-child {
    background: rgba(15, 6, 2, 0.8); font-weight: bold; font-size: 15px; width: 30px; color: #d4a345;
}
.mini-ranking-table th:nth-child(2),
.mini-ranking-table td:nth-child(2) {
    text-align: left; padding-left: 15px;
}

/* Ranking Hover Effects */
.mini-ranking-table tbody tr:hover td {
    background: rgba(212, 163, 69, 0.15);
    color: #fff;
    border-bottom: 1px dashed rgba(212, 163, 69, 0.5);
}
.mini-ranking-table tbody tr:hover td:first-child {
    background: rgba(212, 163, 69, 0.25);
    color: #fff;
}
.mini-ranking-table tbody tr:hover td:nth-child(2) {
    padding-left: 22px; /* Animação de deslizar para a direita */
    color: #e9d8a6;
    text-shadow: 0 0 5px rgba(233, 216, 166, 0.3);
}

/* --- User Sidebar Logged In --- */
.user-sidebar-profile {
    text-align: left;
}
.user-sidebar-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.user-avatar-wrapper {
    width: 60px;
    height: 60px;
    border: 1px solid #d4a345;
    background: #000;
    padding: 2px;
}
.user-avatar-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.user-greeting {
    color: #fff;
    font-size: 15px;
}
.user-sidebar-divider {
    height: 1px;
    background: #3a2d1d;
    margin: 15px 0;
}
.user-sidebar-menu-title {
    color: #f0bc7d;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Trajan Pro Regular';
}
.user-sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;

}
.user-sidebar-nav li {
    margin-bottom: 5px;
    border-bottom: 1px solid #85604b;
    background: #1b0d04;
}
.user-sidebar-nav li a {
    display: flex;
    align-items: center;
    padding: 10px;
    color: #a5a5a5;
    text-decoration: none;
    font-size: 13px;
    border-radius: 5px;
    transition: 0.3s;
    text-transform: uppercase;
}
.user-sidebar-nav li a:hover {
    background: #2f1000;
    border-radius: 0px;
    color: #fff;
}
.user-sidebar-nav li .nav-icon {
    width: 30px;
    height: 30px;
    background: #312218;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    margin-right: 15px;
    color: #a49f99;
}

.user-sidebar-nav li.highlight a:hover {
    background: rgba(212, 163, 69, 0.1);
    color: #fff;
}
.btn-sidebar-logout {
    display: inline-block;
    background: #dc3545;
    color: #fff;
    padding: 8px 30px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}
.btn-sidebar-logout:hover {
    background: #c82333;
    color: #fff;
}
.mini-ranking-table tbody tr:hover td:first-child {
    background: rgba(212, 163, 69, 0.25);
    color: #fff;
}
.mini-ranking-table tbody tr:hover td:nth-child(2) {
    padding-left: 22px; /* Animação de deslizar para a direita */
    color: #e9d8a6;
    text-shadow: 0 0 5px rgba(233, 216, 166, 0.3);
}

/* --- Ranking Page --- */
.ranking-grid-container {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 10px;
}
.rank-card-custom {
    background: #1b0d04;
    border: 1px solid #623c22;
    text-align: center;
    cursor: pointer;
    padding-bottom: 11px;
    color: #f19d27;
    font-family: Tahoma, sans-serif;
    font-size: 11px;
}
.rank-card-header {
    padding: 5px 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.rank-card-img-container {
    width: 100%; height: 100%; background: transparent;
}
.rank-card-img-container img {
    width: 100%; height: 100%; object-fit: contain;
}
.ranking-tabs-custom {
    display: flex; gap: 10px; margin-bottom: 20px; justify-content: center;
}
.ranking-filters-custom {
    display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; background: rgba(0,0,0,0.3); padding: 15px; border: 1px solid #1a1510;
}
.ranking-filters-custom input, .ranking-filters-custom select {
    flex: 1; min-width: 120px; padding: 10px; background: rgba(0,0,0,0.5); border: 1px solid #1a1510; color: #fff;
}

/* --- Modals --- */
.modal {
    display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.8); backdrop-filter: blur(3px);
}
.modal-content {
    background-color: #120e0a; margin: 5% auto; padding: 0; border: 1px solid #e9d8a6; width: 90%; max-width: 800px; border-radius: 5px; box-shadow: 0 4px 8px 0 rgba(0,0,0,0.5); position: relative;
}
.modal-close {
    color: #e9d8a6; float: right; font-size: 24px; font-weight: bold; cursor: pointer; position: absolute; right: 15px; top: 10px; z-index: 10;
}
.modal-close:hover {
    color: #fff;
}
.modal-inner-content {
    min-height: 100px; padding: 10px;
}

/* --- Profiles --- */
.profile-pro, .guild-profile {
    padding: 20px; color: #a49f99; text-align: left;
}
.profile-header, .guild-header {
    display: flex; gap: 20px; align-items: center; border-bottom: 1px solid #1a1510; padding-bottom: 20px; margin-bottom: 20px;
}
.avatar-big, .guild-logo {
    width: 80px; height: 80px; border: 1px solid #1a1510; background: #fff; object-fit: cover; border-radius: 50%;
}
.guild-logo {
    object-fit: contain; padding: 5px; border-radius: 0;
}
.profile-title {
    color: #e9d8a6; margin: 0 0 5px 0; font-size: 24px;
}
.profile-text {
    margin: 0;
}
.profile-text-mb {
    margin: 5px 0;
}
.profile-text-strong {
    color: #fff;
}
.profile-sections {
    display: flex; flex-wrap: wrap; gap: 20px;
}
.profile-box, .guild-members-box {
    flex: 1; min-width: 200px; background: rgba(0,0,0,0.3); border: 1px solid #1a1510; padding: 15px; border-radius: 3px;
}
.profile-box.full {
    flex: 100%;
}
.profile-box-title {
    color: #e9d8a6; margin-bottom: 10px; font-size: 16px;
}
.guild-members-wrap {
    margin-top: 15px; display: flex; flex-wrap: wrap; gap: 5px;
}
.guild-member-badge {
    background: rgba(0,0,0,0.5); padding: 5px 10px; border-radius: 3px; font-size: 12px; border: 1px solid #1a1510; color: #fff;
}

/* --- General Pages --- */
.page-body-padded {
    padding: 20px; color: #a49f99;
}
.page-body-center {
    padding: 20px; text-align: center;
}
.flex-grid {
    display: flex; gap: 20px; margin-bottom: 20px; flex-wrap: wrap;
}
.flex-grid-center {
    display: flex; gap: 20px; justify-content: center; text-align: center; flex-wrap: wrap;
}
.panel-card {
    flex: 1; background: rgba(0,0,0,0.3); border: 1px solid #1a1510; padding: 15px; border-radius: 3px;
}
.panel-card-center {
    flex: 1; min-width: 150px; background: rgba(0,0,0,0.3); border: 1px solid #1a1510; padding: 15px; border-radius: 3px; text-align: center;
}
.panel-card-title {
    color: #e9d8a6; margin-bottom: 10px;
}
.panel-section-title {
    color:#e9d8a6; margin-bottom: 10px; font-size: 16px; border-bottom: 1px solid #1a1510; padding-bottom: 5px;
}
.alert-error {
    color: #fff; background: rgba(255,0,0,0.5); padding: 10px; text-align: center; margin-bottom: 15px; border: 1px solid red;
}
.text-success {
    color: #4CAF50; margin-bottom: 20px;
}
.text-danger {
    color: #d9534f; margin-bottom: 20px;
}
.text-warning {
    color: #e9d8a6; margin-bottom: 20px;
}

/* --- Info Pages --- */
.info-menu-item {
    transition: 0.3s;
}
.info-menu-item:hover {
    border-color: #e9d8a6 !important;
}
.info-menu-item:hover .info-bg-overlay {
    background: rgba(0,0,0,0.4) !important;
}
.info-table {
    width: 100%; border-collapse: collapse; margin-bottom: 20px; color: #a49f99; font-size: 13px; text-align: left;
}
.info-table th {
    background: rgba(0,0,0,0.5); padding: 10px; color: #e9d8a6; border: 1px solid #1a1510; text-align: center; font-weight: bold; font-size: 14px;
}
.info-table td {
    padding: 10px; border: 1px solid #1a1510; background: rgba(0,0,0,0.3);
}
.info-table tr:hover td {
    background: rgba(0,0,0,0.5);
}
.info-table td.center {
    text-align: center;
}

/* --- VIP Pages --- */
.vip-menu {
    display: flex; gap: 10px; justify-content: center; margin-bottom: 20px; flex-wrap: wrap;
}
.vip-btn {
    background: #b5852a; color: #000; padding: 10px 20px; font-weight: bold; font-family: Tahoma, sans-serif; text-decoration: none; font-size: 13px; border: 1px solid #7c5c1f; border-radius: 2px; transition: 0.3s; cursor: pointer; display: inline-block;
}
.vip-btn:hover, .vip-btn.active {
    background: #d4a345; color: #000; border-color: #e9d8a6;
}
.vip-box {
    background: rgba(0,0,0,0.3); border: 1px solid #1a1510; padding: 20px; margin-bottom: 20px; border-radius: 3px;
}
.vip-box-title {
    color: #a49f99; font-size: 16px; text-align: center; margin-bottom: 15px; font-weight: bold; padding-bottom: 10px; border-bottom: 1px solid #1a1510;
}
.vip-box-text {
    color: #a49f99; font-size: 13px; line-height: 1.6; margin-bottom: 15px;
}
.payment-card {
    background: #1a1510; border: 1px solid #000; border-radius: 5px; text-align: center; padding: 15px; position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 120px; transition: 0.3s;
}
.payment-card:hover {
    border-color: #e9d8a6; transform: translateY(-3px);
}
.payment-badge {
    background: #0d0a08; color: #a49f99; font-size: 11px; padding: 5px 15px; border-radius: 10px; margin-bottom: 15px; border: 1px solid #000; width: 100%; box-sizing: border-box;
}
.payment-logo {
    max-width: 80%; max-height: 50px; object-fit: contain;
}
.package-card {
    background: #0d0a08; border: 1px solid #1a1510; text-align: center; padding: 0 0 15px 0; border-radius: 3px;
}
.package-title {
    color: #e9d8a6; font-size: 18px; font-weight: bold; margin: 15px 0;
}
.package-inner {
    background: #120e0a; border-top: 1px solid #1a1510; border-bottom: 1px solid #1a1510; padding: 15px; margin-bottom: 15px; position: relative;
}
.package-inner img {
    max-width: 100px;
}
.package-name {
    background: rgba(255,255,255,0.1); color: #fff; padding: 5px; border: 1px solid rgba(255,255,255,0.2); font-size: 12px; font-weight: bold; margin: 10px auto; width: 80%; letter-spacing: 1px;
}
.package-credits {
    color: #e9d8a6; font-weight: bold; font-size: 13px; margin-bottom: 10px;
}
.package-price {
    color: #fff; font-size: 12px; font-weight: bold; margin-bottom: 15px;
}
.package-footer-text {
    color: #a49f99; font-size: 12px; margin-bottom: 15px;
}

/* --- Register Page --- */
.register-form .form-group {
    margin-bottom: 15px; text-align: left;
}
.register-form label {
    display: block; color: #e9d8a6; font-size: 12px; font-weight: bold; margin-bottom: 5px;
}
.register-form input {
    width: 100%; padding: 12px; background: rgba(0,0,0,0.5); border: 1px solid #1a1510; color: #a49f99; border-radius: 3px; font-family: Tahoma, sans-serif; box-sizing: border-box; transition: 0.3s;
}
.register-form input:focus {
    border-color: #b5852a; outline: none; box-shadow: 0 0 5px rgba(181, 133, 42, 0.5);
}
.terms-box {
    background: rgba(0,0,0,0.3); border: 1px solid #1a1510; padding: 15px; border-radius: 3px; color: #a49f99; font-size: 12px; margin-bottom: 20px; text-align: left; line-height: 1.5;
}
.btn-register {
    width: 100%; background: linear-gradient(to bottom, #d4a345, #8a651b); border: 1px solid #e9d8a6; color: #fff; padding: 15px; font-size: 16px; font-weight: bold; cursor: pointer; border-radius: 3px; letter-spacing: 2px; transition: 0.3s;
}
.btn-register:hover {
    background: linear-gradient(to bottom, #e9d8a6, #b5852a);
}
.register-footer {
    border-top: 1px dashed #3a2d1d; margin-top: 25px; padding-top: 15px; text-align: left;
}
.register-footer p {
    color: #a49f99; font-size: 11px; margin-bottom: 8px;
}
.register-footer p strong {
    color: #e9d8a6;
}
.terms-modal-body {
    max-height: 50vh;
    overflow-y: auto;
    color: #a49f99;
    font-size: 13px;
    line-height: 1.6;
    text-align: left;
    padding-right: 15px;
}
.terms-modal-body::-webkit-scrollbar {
    width: 6px;
}
.terms-modal-body::-webkit-scrollbar-track {
    background: #1a1510;
}
.terms-modal-body::-webkit-scrollbar-thumb {
    background: #d4a345;
}

/* --- New News Style --- */
.wgds-news-card {
    background: #1b0d04;
    border: 1px dashed #85604b96;
    border-radius: 3px;
    margin-bottom: 20px;
}
.wgds-news-header {
    text-align: center;
    padding: 15px;
    color: #d4a345;
    font-size: 18px;
    font-weight: bold;
}
.wgds-news-divider {
    height: 1px;
    border-bottom: 1px dashed #85604b96;
    margin: 0 15px 15px 15px;
}
.wgds-news-cover {
    padding: 0 15px;
}
.wgds-news-cover img {
    width: 100%;
    display: block;
    border: 1px solid #1a1510;
}
.wgds-news-body {
    padding: 15px;
    color: #a49f99;
    font-size: 14px;
    line-height: 1.6;
}
.wgds-read-more {
    color: #d4a345;
    text-decoration: none;
    font-weight: bold;
    margin-left: 5px;
}
.wgds-read-more:hover {
    color: #e9d8a6;
    text-decoration: underline;
}
.wgds-news-footer {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    background: #080604;
    border-top: 1px solid #1a1510;
    color: #d4a345;
    font-size: 12px;
    font-style: italic;
}

/* --- Server List Sidebar --- */
.server-sidebar-item { margin-bottom: 10px;cursor: pointer;transition: 0.3s;padding: 5px; }
.server-sidebar-item:hover { background: rgba(0,0,0,0.2); }
.server-sidebar-info { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 5px; color: #ffbe46; align-items: center; }
.server-sidebar-bar-bg { background: #110c08;border: 1px solid #623c22;height: 15px;border-radius: 3px;overflow: hidden; }
.server-sidebar-bar-fill { height: 100%; background: #a65824; transition: width 0.5s ease; }
.server-status-on { color: #4CAF50; font-size: 12px;margin-left: 5px;font-weight: bold;text-transform: uppercase; }
.server-status-off { color: #f44336; font-size: 11px; margin-left: 5px; }

/* --- Equipe Sidebar --- */
.team-grid-table {
    width: 100%;
    border-collapse: collapse;
}
.team-grid-table td {
    padding: 10px 10px;
    text-align: center;
    background: #1b0d04;
    font-size: 13px;
    font-family: Tahoma, sans-serif;
    border: 1px dashed #85604b96;
}
.team-grid-table td.team-name-col {
    color: #e9ecef;
}
.team-grid-table td.team-status-off {
    color: #ff3333;
}
.team-grid-table td.team-status-on {
    color: #4CAF50;
}

/* --- Enquete Sidebar --- */
.poll-sidebar-box { background: rgba(0,0,0,0.4); border: 1px solid #2a2015; border-radius: 4px; padding: 15px; box-shadow: inset 0 0 10px rgba(0,0,0,0.8); }
.poll-question { color: #e9d8a6; font-size: 13px; margin-bottom: 15px; text-align: center; text-shadow: 1px 1px 2px #000; padding-bottom: 10px; border-bottom: 1px dashed #3a2d1d; }
.poll-form { display: flex; flex-direction: column; gap: 10px; }
.poll-option { display: flex; align-items: center; gap: 8px; color: #fff; font-size: 13px; cursor: pointer; padding: 5px; border-radius: 3px; transition: background 0.2s; }
.poll-option:hover { background: rgba(255,255,255,0.05); }
.poll-option input[type="radio"] { accent-color: #d4a345; }
.poll-btn { margin-top: 15px; padding: 10px; font-size: 12px; width: 100%; border: 1px solid #d4a345; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s; }
.poll-btn:hover { background: #d4a345; color: #000; }

/* --- Detailed Character Profile --- */
.char-profile-wrapper {
    background: #312218;
    padding: 20px;
    color: #a49f99;
    font-family: Tahoma, sans-serif;
    font-size: 12px;
}
.char-profile-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
}
.char-avatar-box {
    height: 120px;
    background: transparent;
    flex-shrink: 0;
}
.char-avatar-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.char-info-box {
    flex: 1;
}
.char-name-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    text-align: center;
}
.char-guild-icon {
    width: 25px;
    height: 25px;
    border: 1px solid #1a1510;
    background: #000;
}
.char-name {
    width: 100%;
    font-size: 20px;
    color: #fff;
    margin: 0;
}
.char-creation {
    font-size: 13px;
    color: #e9d8a6;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
}
.char-stats-grid {
    padding: 6px;
    display: grid;
    grid-template-columns: 1fr 1fr 1.0fr;
    gap: 10px;
    border: 3px dashed #3a2d1d;
    background: #1c1510;
}
.char-stat-line {
    margin: 5px 0;
}
.char-stat-label {
    color: #f0bc7d;
    font-weight: bold;
}
.char-stat-val {
    color: #fff;
}
.char-stat-val.offline {
    color: #f44336;
}
.char-stat-val.online {
    color: #4CAF50;
}
.char-stat-val.vip {
    color: #4CAF50;
}
.char-tabs-group {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}
.char-tab-btn {
    background: transparent;
    border: 1px solid #3a2d1d;
    color: #a49f99;
    padding: 3px 10px;
    font-size: 11px;
    border-radius: 3px;
    cursor: pointer;
}
.char-tab-btn:hover {
    border-color: #d4a345;
    color: #fff;
}
.char-section {
    margin-bottom: 25px;
}
.char-section-title {
    font-size: 16px;
    color: #fff;
    padding-bottom: 5px;
    margin-bottom: 15px;
    text-align: center;
}
.char-trophy-table {
    width: 100%;
    text-align: center;
    border-collapse: collapse;
    border: 3px dashed #3a2d1d;
    background: #1c1510;
}
.char-trophy-table th {
    color: #fff;
    font-weight: bold;
    padding: 10px;
    font-size: 14px;
}
.char-trophy-table td {
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}
.char-trophy-icon {
    width: 30px;
    height: auto;
}
.char-total-icon {
    width: 40px;
    height: auto;
}

/* --- Detailed Guild Profile --- */
.guild-profile-wrapper {
    background: transparent;
    padding: 10px;
    color: #a49f99;
    font-family: Tahoma, sans-serif;
    font-size: 12px;
}
.guild-profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    margin-top: 20px;
}
.guild-header-left {
    width: 230px;
    padding: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 3px dashed #3a2d1d;
    background: #1c1510;
}
.guild-mark-big {
    width: 80px;
    height: 80px;
    image-rendering: pixelated;
    border: 1px solid #3a2d1d;
}
.guild-name-title {
    font-size: 22px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 1px 1px 2px #000;
}
.guild-banner-box {
    border-radius: 5px;
    padding: 10px 20px;
    text-align: center;
    width: 300px;
    height: 75px;
    border: 3px dashed #3a2d1d;
    background: rgb(26 20 16 / 95%);
}
.guild-banner-text1 {
    font-size: 17px;
    color: #a9a9a9;
    margin-bottom: 10px;
}
.guild-banner-text2 {
    font-size: 13px;
    color: #858585;
}
.guild-mid-section {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    border: 3px dashed #3a2d1d;
    background: #1c1510;
}
.guild-trophy-box {
    width: 55%;
}
.guild-info-box {
    width: 40%;
    text-align: center;
    line-height: 2.6;
    margin-top: 30px;
}
.guild-info-title {
    font-size: 16px;
    color: #fff;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}
.guild-members-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    border: 3px dashed #3a2d1d;
    background: #1c1510;
}
.guild-members-table th {
    color: #ddba91;
    text-align: center;
    padding: 10px;
    font-size: 13px;
    font-weight: 600;
    border-bottom: 1px solid #3a2d1d;
}
.guild-members-table th:first-child { text-align: left; }
.guild-members-table td {
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #1a1510;
    color: #a49f99;
    background: #171410;
}
.guild-members-table tr:nth-child(even) td { background: #1c1813; }
.guild-members-table td:first-child { text-align: left; }
.guild-member-info { display: flex; align-items: center; gap: 10px; }
.guild-member-avatar { width: 45px; height: 45px; border: 1px solid #3c0a0a; }
.guild-member-name { font-size: 16px; color: #fff; font-weight: bold; margin-bottom: 3px; display: block; }
.guild-member-date { font-size: 10px; color: #939393; display: block; }
.guild-status-on { color: #28a745; }
.guild-status-off { color: #dc3545; }

/* Painel de Controle User */
.painel-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 25px;
}
.painel-nav a {
    background: #110906;
    border: 1px solid #1a1510;
    color: #a49f99;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}
.painel-nav a.active {
    background: rgba(255,255,255,0.05);
    color: #fff;
    border-color: #59361e;
}
.painel-nav a:hover {
    background: rgba(255,255,255,0.05);
    color: #d4a345;
}

.painel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

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

.painel-item {
    background: #110906;
    border: 1px solid #1a1510;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    border-radius: 2px;
}

.painel-item-icon {
    width: 30px;
    height: 30px;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    color: #d4a345;
    font-size: 14px;
}

.painel-item-content {
    display: flex;
    justify-content: space-between;
    flex: 1;
    align-items: center;
}

.painel-item-label {
    color: #a49f99;
    font-size: 13px;
}

.painel-item-value {
    color: #fff;
    font-size: 13px;
    font-weight: bold;
}
