/* 
 * © 2024 ZeroCrazy. Todos los derechos reservados. 
 * Este archivo de estilo CSS es parte del proyecto fonte. 
 * No se permite la reproducción, distribución ni modificación sin autorización previa. 
 */

@font-face {
    font-family: 'Trajan Pro Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Trajan Pro Regular'), url('../webfonts/TrajanPro-Regular.ttf') format('woff');
}

@font-face {
    font-family: 'Trajan Pro Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Trajan Pro Bold'), url('../webfonts/TrajanPro-Bold.otf') format('woff');
}

:root {
    --primary-bg: #000;
    --text-color: #ecd6b4;
    --accent-color: #c88c15;
    --link-hover: #f4b978;
}

body {
    padding: 0px;
    margin: 0px;
    background-color: #000;
    overflow-x: hidden;
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay escuro sobre o vídeo para melhor legibilidade */
.video-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.header-text span {
  color: #ffffff; /* branco */
  background-color: #333; /* fundo escuro */
  border-radius: 10px;
}

.header-text a {
  color: #ffc107; /* amarelo Bootstrap */
  text-decoration: underline;
}

/* Banner convite transparente dentro da hero-top */
.account-invite-banner{
  background: transparent;        /* fundo 100 % transparente          */
  color: #fff;                    /* assume texto branco p/ visibilidade */
  font-size: 1.25rem;             /* ~fs-5 do Bootstrap                 */
  font-weight: 500;
  text-align: center;
  padding: .75rem 1rem;
  width: 100%;
  display: flex;                  /* coloca texto e botão na mesma linha */
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

/* garante que o link (botão) fique bonito sobre bg transparente */
.account-invite-banner .btn{
  text-decoration: none;
}

.hero-top {
	max-width: 1920px;
	margin-left: auto;
	margin-right: auto;
	height: 1098px;
	background: transparent;
	margin-top: 0px;
	padding-top: 50px;
	margin-bottom: -560px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

.hero-top .render {
    background: url('../images/render-top-bg.png');
    width: 600px;
    height: 634px;
    background-size: contain;
}

.container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.container::after {
    content: "";
    display: table;
    clear: both;
}

/* Menu */
.main-navbar {
    background-color: rgba(0, 0, 0, 0.35); /* Transparente por padrão */
    transition: background-color 0.3s;
    position: sticky;
    top: 0;
    z-index: 999;
}

/* Adicionado por JavaScript ao rolar */
.main-navbar.scrolled {
  background-color: #000; /* sólida ao rolar */
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.navbar-center, .navbar-left {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.navbar-right {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: flex-end;
  flex: 1;
}

.navbar-center li,
.navbar-left li {
  position: relative;
}

.navbar-center li a,
.navbar-left li a {
  color: #dabc7b;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 500;
font-size: 14px;
  transition: color 0.3s;
}

.navbar-center li a:hover,
.navbar-left li a:hover {
  color: #fff;
}

.nav-item.dropdown {
    position: relative;
}

.navbar-left li a:hover, .navbar-center li a:hover {
    color: #fff;
}

.navbar-left li a, .navbar-center li a {
    color: #dabc7b;
    padding: 15px 20px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.navbar-left, .navbar-center {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

/*
.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #1c0e0a;
  top: 100%;
  left: 0;
  min-width: 160px;
  z-index: 10;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}*/

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.85);
    top: 100%;
    left: 0;
    min-width: 180px;
    z-index: 10;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
    list-style: none;
    padding: 8px 0;
}

.dropdown-menu img {
  height: 16px;
  width: auto;
  margin-right: 8px;
  vertical-align: middle;
  border-radius: 3px;
}

.nav-item:hover .dropdown-menu {
  display: block;
}

/* Estilo base do menu dropdown */
.navbar .dropdown-menu {
  background-color: rgba(0, 0, 0, 0.85); /* leve transparência */
  border: none;
  border-radius: 10px;
  padding: 8px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
  min-width: 160px;
}

/* Estilo dos itens */
.navbar .dropdown-menu li {
  width: 100%;
}

.navbar .dropdown-menu li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  color: #c6b083; /* dourado claro */
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  text-align: center;
  background-color: transparent;
  border-radius: 0;
  transition: all 0.2s ease-in-out;
}

/* Estilo do hover */
.navbar .dropdown-menu li a:hover,
.navbar .dropdown-menu li a:focus {
  background-color: #6c3b1e; /* marrom claro escuro */
  color: #fff;
}

.dropdown-menu li {
  display: flex;
  align-items: center;
  padding: 8px 15px;
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  color: #dabc7b;
  width: 100%;
  text-align: left;
}

.dropdown-menu li a:hover {
  background-color: #3a1a0e;
}
/*
.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: #bbb;
}*/

.dropdown-menu li a {
    padding: 12px 20px;
    color: #c6b083;
    width: 100%;
    font-size: 14px;
}

.dropdown-menu li a:hover {
    background-color: #6c3b1e;
    color: #fff;
}

.language-flag {
    height: 16px;
    margin-right: 8px;
    border-radius: 3px;
    vertical-align: middle;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    padding: 5px 0;
    z-index: 1000;
}

nav .container {
    max-width: 1280px;
    margin: 0 auto;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

nav ul li {
    position: relative;
}

nav ul li a {
    color: #e2d9d6;
    text-shadow: 0px 2px 0px #330202, 0px 0px 20px #523827;
    font-family: 'Trajan Pro Bold';
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
    transition: all 0.3s ease;
}

nav ul li.language a {
    background-color: #2b1a0f;
    box-shadow: inset 0px 1px 20px 0px hsl(31deg 85% 71% / 50%), 0px 1px 0px #5a4131;
    border-radius: 20px;
}

.flag-lang {
    width: 15px;
    filter: drop-shadow(0 2px 0px #5e1212);
}

nav ul li.signup a {
    background: rgb(208, 145, 51);
    background: linear-gradient(180deg, rgba(208, 145, 51, 1) 0%, rgba(198, 67, 13, 1) 100%);
    box-shadow: inset 0px 1px 20px 0px #00000087, 0px 0px 20px 5px rgb(0 0 0 / 50%);
    border-radius: 20px;
    text-shadow: 0px 1px 0px #9d7933;
}

nav ul li.signup a:hover {
    filter: brightness(1.5);
}

nav ul li a:hover, nav ul li.active a {
    color: var(--link-hover);
}

/* Dropdown styling */
.dropdown .dropbtn {
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    /* background-color: #333; */
    /* box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.5); */
    min-width: 160px;
    z-index: 1;
    top: 100%;
}

.dropdown-content a {
    color: white;
    padding: 5px 30px;
    width: max-content;
    display: block;
    text-decoration: none;
    margin: 3px 0px;
    background-color: #333 !important;
    box-shadow: none !important;
}

.dropdown-content a:hover {
    background-color: #555;
}

.dropdown:hover .dropdown-content {
    display: block;
}


/* Menu */


.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 350px;
  /* width: 100%; */
  text-align: center;
}

.logo-container a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.logo {
  margin-top: 160px;
  width: 400px;
  transition: 1s;
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*
.logo {
  filter: drop-shadow(0 0 8px #d6a13a);
filter: brightness(2);
} */

.logo {
  filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.3));
filter: brightness(1.5);
width: 80%; /* Exemplo: limite a largura para 80% do contêiner */
transform: scale(0.9, 1.1);
}
/*
.logo {
    float: right;
    margin-top: 160px;
    margin-right: 390px;
    width: 400px;
    transition: 1s;
}

.logo:hover {
    filter: brightness(2);
}*/

.logo:hover {
	transform: scale(1.0, 1.25); /* Exemplo: Aumenta 5% horizontalmente e 25% verticalmente */
 /* transform: scale(1.15);
   filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5)); */
filter: drop-shadow(0 0 15px rgb(88, 51, 32));
filter: brightness(3);
}

.main-layout {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 0;
}

.col-left, .col-middle, .col-right, .col-full {
    position: relative;
    padding: 0px 10px;
    box-sizing: border-box;
}

.main-layout .col-left,
.main-layout .col-middle,
.main-layout .col-right {
    display: block;
}

.col-left {
    width: 300px;
    flex: 0 0 300px;
    /* background-color: red; */
}

.col-right {
    width: 300px;
    flex: 0 0 300px;
    margin-left: auto;
    /* background-color: blue; */
}

.col-middle {
    width: 720px;
    flex: 0 0 720px;
    /* background-color: yellow; */
}

@media (max-width: 1400px) {
    .main-layout {
        gap: 10px;
    }

    .col-middle {
        flex: 1 1 auto;
        width: auto;
        min-width: 0;
    }
}

@media (max-width: 1080px) {
    .main-layout {
        flex-wrap: wrap;
    }

    .main-layout .col-left,
    .main-layout .col-middle,
    .main-layout .col-right {
        flex: 1 1 100%;
        width: 100%;
        margin-left: 0;
        padding: 0 5px;
    }

    .main-layout .col-middle {
        order: 2;
    }

    .main-layout .col-left {
        order: 1;
    }

    .main-layout .col-right {
        order: 3;
    }
}

.mt2cms2-c-l {
    position: relative;
    margin: 25px 0;
    background: radial-gradient(circle at top, rgba(74, 41, 21, 0.85), rgba(18, 10, 6, 0.92));
    border: 1px solid rgba(120, 76, 40, 0.35);
    box-shadow: 0 25px 45px -20px rgba(0, 0, 0, 0.8);
    color: #ecd6b4;
    overflow: hidden;
}

.mt2cms2-c-l::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border: 1px solid rgba(200, 140, 21, 0.08);
    mix-blend-mode: screen;
}

.mt2cms2-c-l .page-hd {
    position: relative;
    min-height: 120px;
    padding: 35px 45px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid rgba(200, 140, 21, 0.15);
}

.mt2cms2-c-l .page-hd::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 6, 4, 0.85), rgba(10, 6, 4, 0.35));
}

.mt2cms2-c-l .page-hd .bd-c {
    position: relative;
    z-index: 1;
}

.mt2cms2-c-l .pre-social {
    margin: 0;
    color: #fbeac5;
    letter-spacing: 2.5px;
    font-size: 24px;
    text-transform: uppercase;
    font-family: 'Trajan Pro Bold', serif;
}

.mt2cms2-c-l .padding-container {
    position: relative;
    /* padding: 30px 40px 35px; */
    background: linear-gradient(180deg, rgba(18, 11, 7, 0.95), rgba(12, 7, 4, 0.92));
}

/* Custom Scrollbar */
.mt2cms2-c-l *::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

.mt2cms2-c-l *::-webkit-scrollbar-track {
    background: rgba(15, 9, 5, 0.6);
    border-radius: 5px;
}

.mt2cms2-c-l *::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(120, 70, 35, 0.8), rgba(80, 45, 22, 0.8));
    border-radius: 5px;
    border: 1px solid rgba(200, 140, 21, 0.3);
}

.mt2cms2-c-l *::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(140, 80, 40, 0.95), rgba(90, 50, 25, 0.95));
}

.mt2cms2-c-l h3,
.mt2cms2-c-l h4,
.mt2cms2-c-l h5 {
    color: #f4d9aa;
    font-family: 'Trajan Pro Bold', serif;
    letter-spacing: 1.5px;
}

.mt2cms2-c-l .table {
    width: 100%;
    margin-bottom: 0;
    color: #f0dfc1;
    background: rgba(24, 14, 9, 0.75);
}

.mt2cms2-c-l .table th,
.mt2cms2-c-l .table td {
    border: none;
    padding: 14px 18px;
    vertical-align: middle;
}

.mt2cms2-c-l .table thead {
    background: linear-gradient(180deg, rgba(77, 40, 21, 0.95), rgba(51, 27, 14, 0.95));
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-family: 'Trajan Pro Bold', serif;
}

.mt2cms2-c-l .table thead th {
    color: #ffeccb;
    border-bottom: 1px solid rgba(200, 140, 21, 0.25);
    padding: 8px;
    font-size: 12px;
}

.mt2cms2-c-l .table .thead-inverse {
    background: linear-gradient(180deg, rgba(90, 50, 25, 0.98), rgba(60, 33, 17, 0.98));
}

.mt2cms2-c-l .table .thead-inverse th {
    color: #fef5e0;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    border-bottom: 2px solid rgba(200, 140, 21, 0.4);
}

.mt2cms2-c-l .table tbody tr {
    background-color: #0f0e0e;
    border-bottom: 1px solid #85604b;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.mt2cms2-c-l .table tbody td {
    padding: 8px;
    font-size: 12px;
}

.mt2cms2-c-l .table tbody th {
    padding: 8px;
    font-size: 12px;
}

.mt2cms2-c-l .table tbody tr:nth-child(even),
.mt2cms2-c-l .table-striped tbody tr:nth-child(even) {
    background-color: #0f0e0e;
}

.mt2cms2-c-l .table tbody tr:hover,
.mt2cms2-c-l .table-hover tbody tr:hover {
    background: linear-gradient(90deg, rgba(70, 38, 20, 0.85), rgba(58, 32, 18, 0.75));
    transform: translateX(2px);
    box-shadow: inset 3px 0 0 rgba(200, 140, 21, 0.6);
}

.mt2cms2-c-l .table tbody td strong {
    color: #fbeac5;
}

.mt2cms2-c-l .table .btn,
.mt2cms2-c-l .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #693d1d, #4a2914);
    border: 1px solid rgba(200, 140, 21, 0.35);
    padding: 8px 22px;
    color: #fff4d1;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mt2cms2-c-l .btn-block {
    width: 100%;
}

.mt2cms2-c-l .btn-primary {
    background: linear-gradient(180deg, #8f5629, #5b3318);
    border-color: rgba(233, 173, 84, 0.45);
}

.mt2cms2-c-l .btn-danger {
    background: linear-gradient(180deg, #a5432c, #6b2416);
    border-color: rgba(255, 120, 80, 0.45);
}

.mt2cms2-c-l .btn-warning {
    background: linear-gradient(180deg, #c37a1f, #8a4e12);
    border-color: rgba(255, 200, 110, 0.45);
    color: #2b170a;
}

.mt2cms2-c-l .btn-sm {
    padding: 6px 16px;
    font-size: 12px;
}

.mt2cms2-c-l .table .btn:hover,
.mt2cms2-c-l .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 20px rgba(200, 140, 21, 0.35);
}

.mt2cms2-c-l .form-control,
.mt2cms2-c-l select,
.mt2cms2-c-l textarea {
    background: rgba(19, 11, 7, 0.9);
    border: 1px solid rgba(200, 140, 21, 0.25);
    color: #f2dfbf;
    padding: 10px 14px;
    border-radius: 4px;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.35);
}

.mt2cms2-c-l select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c88c15' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 35px;
}

.mt2cms2-c-l select option {
    background: #1a0f08;
    color: #f2dfbf;
    padding: 8px;
}

.mt2cms2-c-l .bootstrap-select .btn {
    background: rgba(19, 11, 7, 0.9) !important;
    border: 1px solid rgba(200, 140, 21, 0.25) !important;
    color: #f2dfbf !important;
}

.mt2cms2-c-l .bootstrap-select .dropdown-menu {
    background: rgba(25, 15, 9, 0.98);
    border: 1px solid rgba(200, 140, 21, 0.35);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

.mt2cms2-c-l .bootstrap-select .dropdown-menu li a {
    color: #f2dfbf;
    transition: background 0.2s ease;
}

.mt2cms2-c-l .bootstrap-select .dropdown-menu li a:hover,
.mt2cms2-c-l .bootstrap-select .dropdown-menu li.selected a {
    background: rgba(90, 50, 25, 0.6);
}

.mt2cms2-c-l .form-control:focus,
.mt2cms2-c-l select:focus,
.mt2cms2-c-l textarea:focus {
    outline: none;
    border-color: rgba(248, 206, 139, 0.6);
    box-shadow: 0 0 0 2px rgba(200, 140, 21, 0.25);
}

.mt2cms2-c-l .form-control::placeholder {
    color: rgba(250, 233, 201, 0.45);
}

/* Checkbox and Radio Buttons */
.mt2cms2-c-l input[type="checkbox"],
.mt2cms2-c-l input[type="radio"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(200, 140, 21, 0.4);
    background: rgba(19, 11, 7, 0.8);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    vertical-align: middle;
    margin-right: 8px;
}

.mt2cms2-c-l input[type="radio"] {
    border-radius: 50%;
}

.mt2cms2-c-l input[type="checkbox"]:checked,
.mt2cms2-c-l input[type="radio"]:checked {
    background: linear-gradient(135deg, rgba(140, 80, 40, 0.9), rgba(90, 50, 25, 0.9));
    border-color: rgba(248, 206, 139, 0.6);
}

.mt2cms2-c-l input[type="checkbox"]:checked::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 14px;
    font-weight: bold;
}

.mt2cms2-c-l input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
}

.mt2cms2-c-l input[type="checkbox"]:hover,
.mt2cms2-c-l input[type="radio"]:hover {
    border-color: rgba(248, 206, 139, 0.6);
    box-shadow: 0 0 8px rgba(200, 140, 21, 0.3);
}

/* File upload buttons */
.mt2cms2-c-l input[type="file"] {
    display: block;
    width: 100%;
    padding: 10px;
    background: rgba(19, 11, 7, 0.9);
    border: 1px solid rgba(200, 140, 21, 0.25);
    border-radius: 4px;
    color: #f2dfbf;
    cursor: pointer;
}

.mt2cms2-c-l input[type="file"]::file-selector-button {
    padding: 8px 16px;
    background: linear-gradient(180deg, #693d1d, #4a2914);
    border: 1px solid rgba(200, 140, 21, 0.35);
    color: #fff4d1;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.mt2cms2-c-l input[type="file"]::file-selector-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 15px rgba(200, 140, 21, 0.3);
}

.mt2cms2-c-l .jumbotron {
    padding: 24px 28px;
    background: linear-gradient(135deg, rgba(35, 20, 12, 0.92), rgba(25, 15, 9, 0.88));
    border: 1px solid rgba(200, 140, 21, 0.3);
    border-radius: 8px;
    color: #f3debc;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(248, 206, 139, 0.1);
}

.mt2cms2-c-l .jumbotron p {
    margin: 0;
    padding: 10px 9px;
    background-color: #0f0e0e;
    border-bottom: 1px solid #85604b;
    color: #ffffff;
    font-family: 'Trajan Pro Bold';
    font-size: 12px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.mt2cms2-c-l .jumbotron p:hover {
    transform: translateX(5px);
    background-color: #1a1312;
}

.mt2cms2-c-l .jumbotron-fluid {
    padding: 20px 24px;
}

.mt2cms2-c-l .nav-tabs {
    display: flex;
    gap: 10px;
    border: none;
    margin: 0 0 25px;
    padding: 0;
    list-style: none;
}

.mt2cms2-c-l .nav-tabs li {
    list-style: none;
}

.mt2cms2-c-l .nav-tabs a,
.mt2cms2-c-l .nav-tabs .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(33, 20, 12, 0.85);
    border: 1px solid rgba(200, 140, 21, 0.28);
    border-radius: 6px 6px 0 0;
    color: #f9e5c4;
    font-family: 'Trajan Pro Bold', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.mt2cms2-c-l .nav-tabs a:hover,
.mt2cms2-c-l .nav-tabs .nav-link:hover {
    background: linear-gradient(180deg, rgba(120, 70, 35, 0.95), rgba(80, 45, 22, 0.95));
    transform: translateY(-2px);
    border-color: rgba(248, 206, 139, 0.5);
    box-shadow: 0 4px 15px rgba(200, 140, 21, 0.25);
}

.mt2cms2-c-l .nav-tabs .open a,
.mt2cms2-c-l .nav-tabs .active a,
.mt2cms2-c-l .nav-tabs .nav-link.active {
    background: linear-gradient(180deg, rgba(140, 80, 40, 0.98), rgba(90, 50, 25, 0.98));
    border-color: rgba(248, 206, 139, 0.6);
    color: #fef5e0;
    box-shadow: 0 0 20px rgba(200, 140, 21, 0.35), inset 0 -2px 10px rgba(0, 0, 0, 0.4);
}

.mt2cms2-c-l .nav-tabs img {
    height: 20px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}

.mt2cms2-c-l .alert {
    border: 1px solid rgba(200, 140, 21, 0.25);
    background: rgba(36, 20, 11, 0.85);
    color: #ffedc8;
    padding: 18px 22px;
    border-radius: 6px;
    box-shadow: 0 8px 25px -15px rgba(0, 0, 0, 0.65);
}

.mt2cms2-c-l .alert-success {
    border-color: rgba(112, 193, 134, 0.45);
    background: rgba(32, 58, 32, 0.85);
    color: #c6f1d1;
}

.mt2cms2-c-l .alert-danger {
    border-color: rgba(214, 92, 78, 0.45);
    background: rgba(61, 21, 16, 0.88);
    color: #ffd6cd;
}

.mt2cms2-c-l .alert-warning {
    border-color: rgba(233, 173, 84, 0.45);
    background: rgba(66, 38, 18, 0.88);
    color: #ffe4b8;
}

.mt2cms2-c-l .alert strong {
    color: #f8d98a;
}

.mt2cms2-c-l .close {
    color: rgba(255, 236, 200, 0.8);
    opacity: 0.7;
    text-shadow: none;
}

.mt2cms2-c-l .close:hover {
    opacity: 1;
}

.mt2cms2-c-l .pagination {
    margin: 25px 0 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.mt2cms2-c-l .pagination li {
    list-style: none;
}

.mt2cms2-c-l .pagination a {
    display: inline-block;
    padding: 8px 12px;
    background: rgba(33, 19, 12, 0.85);
    color: #f4d9aa;
    border: 1px solid rgba(200, 140, 21, 0.25);
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.mt2cms2-c-l .pagination a:hover,
.mt2cms2-c-l .pagination .active a {
    background: linear-gradient(180deg, rgba(104, 60, 29, 0.95), rgba(65, 37, 18, 0.95));
    transform: translateY(-1px);
}

.mt2cms2-c-l .row {
    margin: 0;
    background-color: #0f0e0e;
    border-bottom: 1px solid #85604b;
    padding: 10px 9px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.mt2cms2-c-l .row:hover {
    transform: translateX(5px);
    background-color: #1a1312;
}

.mt2cms2-c-l .row [class*='col-'] {
    padding: 5px;
}

/* Input Group Styles */
.mt2cms2-c-l .input-group {
    display: flex;
    width: 50%;
    margin-bottom: 15px;
}

.mt2cms2-c-l .input-group .form-control {
    flex: 1;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
}

.mt2cms2-c-l .input-group-btn {
    display: flex;
}

.mt2cms2-c-l .input-group .btn,
.mt2cms2-c-l .input-group-btn .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    white-space: nowrap;
    padding: 12px 24px;
}

.mt2cms2-c-l .form-control-lg {
    padding: 14px 18px;
    font-size: 16px;
    height: auto;
}

.mt2cms2-c-l .btn-lg {
    padding: 14px 28px;
    font-size: 15px;
}

.mt2cms2-c-l label {
    font-family: 'Trajan Pro Regular', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(251, 234, 197, 0.8);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.mt2cms2-c-l .form-group {
    margin-bottom: 20px;
}

.mt2cms2-c-l .form-group.row {
    display: flex;
    gap: 15px;
}

.mt2cms2-c-l .text-danger,
.mt2cms2-c-l .text-warning {
    color: #ff9d69 !important;
    font-size: 12px;
}

.mt2cms2-c-l .text-success {
    color: #6fc794 !important;
}

.mt2cms2-c-l .text-info {
    color: #7eb8d4 !important;
}

.mt2cms2-c-l hr {
    border: 0;
    height: 1px;
    margin: 25px 0;
    background: linear-gradient(90deg, transparent, rgba(200, 140, 21, 0.4), transparent);
}

/* Badges e Labels */
.mt2cms2-c-l .badge,
.mt2cms2-c-l .label {
    display: inline-block;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 3px;
    background: linear-gradient(180deg, rgba(90, 50, 25, 0.9), rgba(60, 33, 17, 0.9));
    color: #fff5e0;
    border: 1px solid rgba(200, 140, 21, 0.3);
}

.mt2cms2-c-l .badge-primary,
.mt2cms2-c-l .label-primary {
    background: linear-gradient(180deg, rgba(104, 60, 29, 0.95), rgba(75, 43, 21, 0.95));
}

.mt2cms2-c-l .badge-success,
.mt2cms2-c-l .label-success {
    background: linear-gradient(180deg, rgba(60, 110, 70, 0.9), rgba(40, 75, 48, 0.9));
    border-color: rgba(112, 193, 134, 0.4);
}

.mt2cms2-c-l .badge-danger,
.mt2cms2-c-l .label-danger {
    background: linear-gradient(180deg, rgba(165, 67, 44, 0.9), rgba(107, 36, 22, 0.9));
    border-color: rgba(214, 92, 78, 0.4);
}

.mt2cms2-c-l .badge-warning,
.mt2cms2-c-l .label-warning {
    background: linear-gradient(180deg, rgba(195, 122, 31, 0.9), rgba(138, 78, 18, 0.9));
    border-color: rgba(233, 173, 84, 0.4);
    color: #2b170a;
}

/* Melhoria para imagens nas tabelas */
.mt2cms2-c-l .table img {
    vertical-align: middle;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

/* Estilos para links dentro de texto */
.mt2cms2-c-l p a,
.mt2cms2-c-l .panel-body a:not(.btn),
.mt2cms2-c-l .jumbotron a:not(.btn) {
    color: #e9ad54;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.mt2cms2-c-l p a:hover,
.mt2cms2-c-l .panel-body a:not(.btn):hover,
.mt2cms2-c-l .jumbotron a:not(.btn):hover {
    color: #f8ce8b;
}

.mt2cms2-c-l .tab-content {
    background: rgba(18, 10, 6, 0.85);
    border: 1px solid rgba(200, 140, 21, 0.2);
    padding: 25px;
    border-radius: 8px;
}

/* Listas */
.mt2cms2-c-l ul:not(.nav-tabs):not(.pagination),
.mt2cms2-c-l ol {
    padding-left: 25px;
    margin: 15px 0;
}

.mt2cms2-c-l ul:not(.nav-tabs):not(.pagination) li,
.mt2cms2-c-l ol li {
    margin: 8px 0;
    color: #ecd6b4;
}

/* Blockquote */
.mt2cms2-c-l blockquote {
    margin: 20px 0;
    padding: 15px 20px;
    border-left: 4px solid rgba(200, 140, 21, 0.6);
    background: rgba(30, 18, 10, 0.6);
    color: #e8d3ad;
    font-style: italic;
}

.mt2cms2-c-l blockquote p {
    margin: 0;
}

/* Code blocks */
.mt2cms2-c-l code {
    background: rgba(15, 9, 5, 0.8);
    padding: 2px 6px;
    border-radius: 3px;
    color: #e9ad54;
    font-family: 'Courier New', monospace;
    font-size: 13px;
}

.mt2cms2-c-l pre {
    background: rgba(15, 9, 5, 0.9);
    padding: 15px;
    border-radius: 6px;
    border: 1px solid rgba(200, 140, 21, 0.2);
    overflow-x: auto;
    color: #e8d3ad;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.5;
}

.mt2cms2-c-l pre code {
    background: transparent;
    padding: 0;
}

/* Melhorias para fade in animations */
.mt2cms2-c-l .fade.in,
.mt2cms2-c-l .fade.show {
    opacity: 1;
}

.mt2cms2-c-l .fade {
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Helper classes */
.mt2cms2-c-l .text-center {
    text-align: center;
}

.mt2cms2-c-l .text-left {
    text-align: left;
}

.mt2cms2-c-l .text-right {
    text-align: right;
}

.mt2cms2-c-l .mb-0 { margin-bottom: 0 !important; }
.mt2cms2-c-l .mb-1 { margin-bottom: 10px !important; }
.mt2cms2-c-l .mb-2 { margin-bottom: 20px !important; }
.mt2cms2-c-l .mb-3 { margin-bottom: 30px !important; }

.mt2cms2-c-l .mt-0 { margin-top: 0 !important; }
.mt2cms2-c-l .mt-1 { margin-top: 10px !important; }
.mt2cms2-c-l .mt-2 { margin-top: 20px !important; }
.mt2cms2-c-l .mt-3 { margin-top: 30px !important; }

/* Status indicators */
.mt2cms2-c-l .status-online,
.mt2cms2-c-l .online-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #4caf50;
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.6);
    animation: pulse-green 2s infinite;
}

.mt2cms2-c-l .status-offline,
.mt2cms2-c-l .offline-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #f44336;
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 8px rgba(244, 67, 54, 0.6);
}

@keyframes pulse-green {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Well / Info boxes */
.mt2cms2-c-l .well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: rgba(25, 15, 9, 0.6);
    border: 1px solid rgba(200, 140, 21, 0.2);
    border-radius: 6px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
}

.mt2cms2-c-l .well-sm {
    padding: 12px;
}

.mt2cms2-c-l .well-lg {
    padding: 24px;
}

/* Dividers */
.mt2cms2-c-l .divider {
    height: 1px;
    margin: 20px 0;
    background: linear-gradient(90deg, transparent, rgba(200, 140, 21, 0.35), transparent);
}

.mt2cms2-c-l .divider-vertical {
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(200, 140, 21, 0.35), transparent);
}

/* Panel / Accordion Styles */
.mt2cms2-c-l .panel-group {
    margin-bottom: 20px;
}

.mt2cms2-c-l .panel {
    background: transparent;
    border: none;
    margin-bottom: 12px;
}

.mt2cms2-c-l .panel-default {
    border: 1px solid rgba(200, 140, 21, 0.25);
    border-radius: 6px;
    background: rgba(25, 15, 9, 0.75);
    overflow: hidden;
}

.mt2cms2-c-l .panel-heading {
    background: linear-gradient(180deg, rgba(60, 35, 18, 0.9), rgba(45, 25, 13, 0.9));
    border-bottom: 1px solid rgba(200, 140, 21, 0.3);
    padding: 0;
}

.mt2cms2-c-l .panel-title {
    font-size: 15px;
    margin: 0;
}

.mt2cms2-c-l .panel-title a {
    display: block;
    padding: 15px 20px;
    color: #f9e5c4;
    text-decoration: none;
    font-family: 'Trajan Pro Bold', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.mt2cms2-c-l .panel-title a:hover {
    background: rgba(70, 40, 20, 0.6);
    color: #fef5e0;
}

.mt2cms2-c-l .panel-title a[aria-expanded="true"] {
    background: rgba(80, 45, 22, 0.7);
    color: #fff5e0;
}

.mt2cms2-c-l .panel-collapse {
    background: rgba(20, 12, 7, 0.85);
}

.mt2cms2-c-l .panel-body {
    padding: 20px;
    color: #ecd6b4;
}

.mt2cms2-c-l .panel-body .form-group {
    margin-bottom: 18px;
}

.mt2cms2-c-l .collapse.in,
.mt2cms2-c-l .collapse.show {
    display: block;
}

.mt2cms2-c-l .collapse {
    display: none;
}

/* List Group Styles */
.mt2cms2-c-l .list-group {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 20px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(200, 140, 21, 0.25);
}

.mt2cms2-c-l .list-group-item {
    position: relative;
    display: block;
    padding: 16px 20px;
    background-color: rgba(25, 15, 9, 0.75);
    border-bottom: 1px solid rgba(200, 140, 21, 0.15);
    color: #ecd6b4;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.mt2cms2-c-l .list-group-item:last-child {
    border-bottom: none;
}

.mt2cms2-c-l .list-group-item.active {
    background: linear-gradient(180deg, rgba(77, 40, 21, 0.95), rgba(51, 27, 14, 0.95));
    color: #ffeccb;
    font-family: 'Trajan Pro Bold', serif;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-bottom: 1px solid rgba(200, 140, 21, 0.35);
}

.mt2cms2-c-l .list-group-item-action {
    cursor: pointer;
    text-decoration: none;
}

.mt2cms2-c-l .list-group-item-action:hover {
    background: linear-gradient(90deg, rgba(50, 28, 15, 0.85), rgba(40, 22, 12, 0.75));
    transform: translateX(3px);
    box-shadow: inset 3px 0 0 rgba(200, 140, 21, 0.6);
}

.mt2cms2-c-l .list-group-item-heading {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 16px;
    color: #f9e5c4;
    font-family: 'Trajan Pro Bold', serif;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mt2cms2-c-l .list-group-item-text {
    margin-bottom: 0;
    font-size: 13px;
    color: #d4c29a;
    line-height: 1.5;
}

.mt2cms2-c-l .list-group a i,
.mt2cms2-c-l .list-group li i {
    color: #e9ad54;
}

/* FontAwesome icons styling */
.mt2cms2-c-l .fa,
.mt2cms2-c-l [class^="fa-"],
.mt2cms2-c-l [class*=" fa-"] {
    display: inline-block;
    margin-right: 6px;
}

.mt2cms2-c-l .btn .fa,
.mt2cms2-c-l .btn [class^="fa-"],
.mt2cms2-c-l .btn [class*=" fa-"] {
    margin-right: 5px;
}

/* Progress bars */
.mt2cms2-c-l .progress {
    height: 22px;
    background: rgba(15, 9, 5, 0.8);
    border-radius: 4px;
    border: 1px solid rgba(200, 140, 21, 0.25);
    overflow: hidden;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.4);
}

.mt2cms2-c-l .progress-bar {
    height: 100%;
    background: linear-gradient(180deg, rgba(140, 80, 40, 0.95), rgba(90, 50, 25, 0.95));
    transition: width 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.mt2cms2-c-l .progress-bar-success {
    background: linear-gradient(180deg, rgba(80, 130, 85, 0.95), rgba(55, 95, 60, 0.95));
}

.mt2cms2-c-l .progress-bar-danger {
    background: linear-gradient(180deg, rgba(180, 70, 50, 0.95), rgba(120, 45, 30, 0.95));
}

/* Thumbnails / Cards para imagens */
.mt2cms2-c-l .thumbnail,
.mt2cms2-c-l .card-img {
    padding: 4px;
    background-color: rgba(25, 15, 9, 0.6);
    border: 1px solid rgba(200, 140, 21, 0.25);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.mt2cms2-c-l .thumbnail:hover,
.mt2cms2-c-l .card-img:hover {
    border-color: rgba(248, 206, 139, 0.5);
    box-shadow: 0 0 15px rgba(200, 140, 21, 0.3);
}

.mt2cms2-c-l .thumbnail img,
.mt2cms2-c-l .card-img img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.card {
    margin-bottom: 5px;
    width: 100%;
}

/* Modal Styles */
.mt2cms2-c-l .modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1050;
    display: none;
    overflow: auto;
}

.mt2cms2-c-l .modal.show {
    display: block;
}

.mt2cms2-c-l .modal-dialog {
    position: relative;
    width: auto;
    margin: 30px auto;
    max-width: 600px;
}

.mt2cms2-c-l .modal-content {
    background: linear-gradient(135deg, rgba(30, 18, 10, 0.98), rgba(20, 12, 7, 0.98));
    border: 2px solid rgba(200, 140, 21, 0.4);
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7);
}

.mt2cms2-c-l .modal-header {
    padding: 20px 25px;
    border-bottom: 1px solid rgba(200, 140, 21, 0.3);
    background: linear-gradient(180deg, rgba(60, 35, 18, 0.8), rgba(45, 25, 13, 0.8));
}

.mt2cms2-c-l .modal-title {
    margin: 0;
    font-family: 'Trajan Pro Bold', serif;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #ffeccb;
    font-size: 18px;
}

.mt2cms2-c-l .modal-body {
    padding: 25px;
    color: #ecd6b4;
}

.mt2cms2-c-l .modal-footer {
    padding: 15px 25px;
    border-top: 1px solid rgba(200, 140, 21, 0.3);
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.mt2cms2-c-l .modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1040;
}

/* Tooltips */
.mt2cms2-c-l .tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s;
}

.mt2cms2-c-l .tooltip.show {
    opacity: 1;
}

.mt2cms2-c-l .tooltip-inner {
    max-width: 200px;
    padding: 6px 12px;
    color: #fff;
    text-align: center;
    background-color: rgba(20, 12, 7, 0.95);
    border: 1px solid rgba(200, 140, 21, 0.4);
    border-radius: 4px;
}

a {
    display: block;
    text-decoration: none;
    color: #ecd6b4;
}

/*
.sidenav-trigger {
    display: none;
    background: #351a08;
    text-align: center;
    color: #fff;
    font-size: 36px;
    border-bottom: 1px solid #a67a5d;
}*/

/* Esconde o menu lateral por padrão */
.sidenav {
    position: fixed; /* Fica fixo na tela */
    top: 0;
    left: 0;
    width: 280px; /* Largura do menu */
    height: 100%;
    background-color: #1c0e0a; /* Cor de fundo escura */
    z-index: 1001; /* Garante que fique acima do overlay */
    overflow-y: auto; /* Permite rolar se tiver muitos itens */
    
    /* A MÁGICA ACONTECE AQUI: joga o menu para fora da tela */
    transform: translateX(-100%); 
    
    transition: transform 0.3s ease-in-out; /* Animação suave */
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

/* Estilos para os links dentro do sidenav */
.sidenav li a {
    display: block;
    padding: 15px 20px;
    color: #dabc7b; /* Cor do texto */
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s;
}

.sidenav li a:hover {
    background-color: #3a1a0e; /* Cor de fundo ao passar o mouse */
}

/* Adicione esta classe ao seu CSS */
.sidenav.sidenav-open {
    transform: translateX(0); /* Traz o menu de volta para a tela */
}

/* (Opcional, mas recomendado) Overlay para escurecer o fundo */
.sidenav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000; /* Fica abaixo do menu, mas acima do conteúdo */
    display: none; /* Escondido por padrão */
}

/* --- CONTROLE DO MENU MOBILE --- */
.sidenav-trigger {
    display: none; /* Escondido por padrão */
    position: fixed;
    top: 15px;
    left: 15px;
    color: #fff;
    font-size: 28px;
    z-index: 1000; /* Garante que fique acima de outros elementos */
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 5px;
}


.large-href {
    width: 100%;
    height: 100px;
    /* background-color: gray; */
    /* display: list-item; */
    background: url('../images/btn-href.png') no-repeat;
    background-size: cover !important;
    border-bottom: 3px solid #49350b;
    text-align: center;
    line-height: 100px;
    /* color: #d0a990; */
    color: #fff;
    text-shadow: 0px 0px 7px rgba(90, 65, 49, 0.49);
    /* font-size: 36px; */
    font-size: x-large;
    text-decoration: none;
    font-family: 'Trajan Pro Bold';
    text-transform: uppercase;
    transition: 1s;
}

.large-href .icon {
    float: left;
    line-height: 100px;
    margin-left: 30px;
}

.large-href:hover {
    filter: brightness(1.5);
}
.btn-download {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    max-width: 100%;
}

.btn-download {
    width: 280px;
    height: 109px;
    background-image: url('/images/download_button.png');
    background-size: 840px 109px;
    background-position: 0 0;
    color: #fffbf6;
    text-shadow: 0px 1px #4e3615;
    font-size: x-large;
    font-family: 'Trajan Pro Bold';
    text-transform: uppercase;
    text-decoration: none;
    user-select: none;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    transition: filter 0.3s ease;
}

/* Hover */
.btn-download:hover {
    background-position: -280px 0;
}

/* Ativo (clicando) */
.btn-download:active {
    background-position: -560px 0;
}

/* Ícone */
.btn-download .icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-title {
    font-family: 'Trajan Pro Regular';
    color: #ca9020;
    border-bottom: 2px solid #141212;
    text-align: center;
    background: url('../images/top-light-card.png') no-repeat 50% 50% #0f0e0e;
    background-size: contain;
    font-size: 14px !important;
    text-shadow: 0px 1px 0px #9d7933;
    padding: 14px 0px;
}

.card-body {
    background-color: #141212;
    width: 100%; /* O un valor específico como 300px */
    box-sizing: border-box; /* Asegúrate de que padding y border estén dentro del ancho total */
    overflow: hidden;
    box-shadow: inset 0px -4px 13px 0px hsl(0deg 0% 0% / 50%);
}

/* Forms, inputs, etc... */
.input-group {
    position: relative;
    width: 100%;
}


.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #aaa;
    font-size: 16px;
    padding: 5px;
}

.toggle-password:hover {
    color: #c88c15;
}

.input-group .icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #c88c15;
    text-shadow: 0px 1px 0px #c88c15;
}

.input-group_bk input {
    width: 100%; /* Ajusta el input al 100% del contenedor */
    padding: 10px 40px; /* Espacio para el icono */
    border: 1px solid #ae7b17;
    border-bottom: 2px solid #ae7b17;
    color: #FFF !important;
    background-color: #393434;
    font-size: 16px;
    box-sizing: border-box; /* Importante para que respete el tamaño del contenedor */
    /* box-shadow: 0px 0px 20px 13px rgb(63 42 30 / 50%); */
}

.input-group input {
    width: 100%; /* Ajusta el input al 100% del contenedor */
    padding: 10px 40px; /* Espacio para el icono */
    border: none;
    border-bottom: 2px solid #ae7b17;
    /*color: #7a5844;*/
	color: #FFF !important;
    background-color: #393434;
    font-size: 14px;
    box-sizing: border-box; /* Importante para que respete el tamaño del contenedor */
    /*box-shadow: 0px 0px 20px 13px rgb(63 42 30 / 50%);*/
}

.input-group input::placeholder {
    color: #ffffff;
	/*color: #FFF !important;*/
    text-shadow: 0px 1px 0px #805b46;
}

.input-group_bk input:focus {
    outline: none; /* Elimina el borde que aparece por defecto */
}

/* Cambia el color del icono cuando se hace focus en el input */
/*.input-group:has(input:focus) .icon {
    color: #000;
}*/

.input-group input:focus {
    outline: none; /* já está ok */
    border-bottom: 2px solid #f1c27d; /* borda em destaque no foco */
    box-shadow: 0 0 8px 0px rgba(255, 202, 120, 0.6); /* brilho suave dourado */
    transition: 0.3s ease;
}

/* Se quiser mudar o ícone quando o input estiver focado 
.input-group:has(input:focus) .icon {
    color: #f1c27d; 
    text-shadow: 0 0 5px rgba(241, 194, 125, 0.8);
    transition: 0.3s ease;
}*/

.btn-login {
    display: block;
    margin: 0 auto;
    width: 190px;
    height: 47px;
    background-image: url('/images/signin_button.png');
    background-position: 0 0;
    background-size: auto;
    background-color: unset;
    border: none;
    color: #342200;
    font-family: 'Trajan Pro Bold';
    font-size: 18px;
    cursor: pointer;
    letter-spacing: 0.6px;
    outline: none;

    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    transition: filter 0.3s ease;
}

/* Hover */
.btn-login:hover {
    background-position: -190px 0;
}

/* Clicando */
.btn-login:active {
    background-position: -380px 0;
}

.btn-register {
    display: block;
    margin: 0 auto;
    width: 190px;
    height: 47px;
    background-image: url('/images/register_button.webp');
    background-position: 0 0;
    background-size: auto;
    background-color: unset;
    border: none;
    color: #342200;
    font-family: 'Trajan Pro Bold';
    font-size: 18px;
    cursor: pointer;
    letter-spacing: 0.6px;
    outline: none;

    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    transition: filter 0.3s ease;
}

/* Hover */
.btn-register:hover {
    background-position: -190px 0;
}

/* Clicando */
.btn-register:active {
    background-position: -380px 0;
}

.btn {
    display: block;
    margin: 0 auto;
    background-color: #2e0f06;
    border: none;
    border-top: 1px solid #85604b;
    box-shadow: inset 0px -1px 0px 0px #85604b, 0px 0px 20px 13px rgb(63 42 30 / 10%);
    padding: 10px 30px;
    color: #ffffff;
    outline: none;
    font-family: 'Trajan Pro Bold';
    cursor: pointer;
}

.forgot-password {
    padding: 15px 10px;
    background-color: #0f0e0e;
    text-align: center;
    color: #c88c15 !important;
    margin-top: 10px;
}

.card-body p {
    color: #b1a080 !important;

}

.forgot-password p {
    color: #c88c15 !important;
    margin: 0px;
}

.forgot-password a {
    color: #f8f0e4;
}

/* News */
.card.news .card-title {
    background: linear-gradient(180deg, rgba(77, 40, 21, 0.95), rgba(51, 27, 14, 0.95));
    border-bottom: 1px solid rgba(200, 140, 21, 0.18);
    color: #ffe9c8;
    font-family: 'Trajan Pro Bold', serif;
    letter-spacing: 2px;
}

.card.news .card-body {
    background: rgba(18, 11, 7, 0.92);
}

/* Card de la noticia */
.news-card {
    margin: 20px 0;
    border-radius: 5px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}

.news-body {
    background-color: #0d0c0c;
    padding: 1px 20px;
}

.news-title {
    font-size: 24px;
    font-weight: bold;
    color: #ecd6b4;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.news-content {
    font-size: 16px;
    opacity: 0.6;
    line-height: 1.5;
    color: #ecd6b4;
    margin-bottom: 15px;
	max-width: 100%;
}

.news-content img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 10px auto;
	border-radius: 6px;
}

.news-image {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 10px auto;
	border-radius: 6px;
}
/*
.news-card {
	max-width: 700px;
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
}*/

.highlight {
    color: #e24b3c; /* Color rojo para resaltar */
}

/* Footer de la noticia */
.news-footer {
    /* display: flex; */
    background-color: #0d0c0c;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    padding: 20px;
}

.news-footer .cc {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: flex-start;
    justify-content: center;
}

.author {
    color: #fc6950; /* Color rojo del autor */
    font-weight: bold;
    font-family: sans-serif;
    font-weight: 100;
}

.date-posted {
    color: #d6c2a5;
    font-weight: 100;
    font-family: sans-serif;
}

.read-all-btn {
    background-color: #3f2a1e;
    border: none;
    border-radius: 3px;
    color: #f9d6b2;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    float: right;
}

.read-all-btn:hover {
    background-color: #604832;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.2);
}

/* Slider */
.slider {
    background-color: transparent;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.slider .card-body {
    position: relative;
    width: 100%;
    height: 282px;
}

.slider .slide {
    display: none; /* Oculta todos los slides por defecto */
    padding: 0px;
    text-align: center;
    height: 282px;
    background-size: cover;
}

.slider .slide.active {
    display: block; /* Solo muestra el slide activo */
}

.slider .slide .content {
    bottom: 0px;
    position: absolute;
    text-align: left;
    padding: 0px 20px;
    width: 100%;
    background-color: rgb(23 11 2 / 70%);
    font-family: 'Trajan Pro Bold';
}

.slider .slide .content h2 {
    color: #ecd6b4;
    font-family: 'Trajan Pro Bold';
    margin-bottom: 0px;
}

.slider .slide .content p {
    opacity: 0.7;
    color: #ecd6b4;
    font-family: sans-serif;
    font-weight: 100;
    font-size: 14px;
    margin-top: 0px;
}

.slider button {
    background-color: rgb(46 15 6 / 10%);
    transition: 0.5s;
    color: #fffbec;
    border: none;
    border-radius: 4px;
    padding: 10px 15px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.slider button.prev {
    left: 10px;
}

.slider button.next {
    right: 10px;
}

.slider button:hover {
    background-color: #48271a;
}

/* Ranking */
.ranking {
    width: 100%;
    border-collapse: collapse;
    background-color: #0d0c0c;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /*font-family: 'Trajan Pro Bold';*/
    font-size: 12px;
}

.ranking th, .ranking td {
    padding: 8px;
    text-align: left;
    border-bottom: 2px solid #141212;
}

.ranking thead {
    background-color: #141212;
}

.ranking th {
    font-weight: bold;
	/* font-family: 'Merriweather', serif; */
    color: #9d7933;
}

.ranking tbody tr {
    transition: background-color 0.3s, transform 0.2s ease;
}
.ranking tbody tr:hover {
    transform: translateX(5px);
    background-color: #1a1312;
}

.ranking tbody tr:last-child td {
    border-bottom: none;
}

.ranking tbody td:nth-child(1) {
    background-color: #0d0c0c;
    text-align: center;
    font-weight: 900;
    font-family: sans-serif;
    color: #ecd6b4;
    text-shadow: 0px 1px 0px #ecd6b4;
}

.ranking-container {
  width: 20px;
  height: 20px;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}

.ranking-position-img {
  position: relative;
  top: -9px;
  left: -9px;
  width: 38px;
  height: 38px;
  display: block; /* opcional, ajuda no alinhamento */
}
/* Estilo para la columna 2 (Name) */
.ranking, .ranking tbody td:nth-child(2), .ranking tbody td:nth-child(3) {
    color: #ecd6b4;
}
.ranking thead th:nth-child(1), .ranking thead th:nth-child(3),.ranking thead th:nth-child(4) {
    text-align: center;
}
.ranking tbody td:nth-child(3) {
    text-align: center;
}

/* Estilo para la columna 4 (Level) */
.ranking tbody td:nth-child(4) {
    color: #ecd6b4;
    text-align: center;
}

.Jinno {
    color: #6871e7 !important;
}
.Shinsoo {
    color: #e22727 !important;
}
.Chunjo {
    color: #dfd02d !important;
}

/* Statistics */
.card.statistics ul {
    margin: 0px;
    padding: 10px 20px;
}

.card.statistics ul li {
    display: block;
    background-color: #0f0e0e;
    margin-bottom: 5px;
    padding: 10px 9px;
    border-bottom: 1px solid #85604b;
    color: #ffffff;
    font-family: 'Trajan Pro Bold';
    font-size: 12px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.card.statistics ul li:hover {
    transform: translateX(5px);
    background-color: #1a1312;
}

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

.card.statistics ul li strong {
    float: right;
	color: #c88c15;
}

/* User Navigation Links - Same style as Statistics */
.user-nav-links {
    margin: 0px;
    padding: 10px 20px;
    list-style: none;
}

.user-nav-links li {
    display: block;
    background-color: #0f0e0e;
    margin-bottom: 5px;
    padding: 10px 9px;
    border-bottom: 1px solid #85604b;
    color: #ffffff;
    font-family: 'Trajan Pro Bold';
    font-size: 12px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.user-nav-links li:hover {
    transform: translateX(5px);
    background-color: #1a1312;
}

.user-nav-links li a {
    color: #ffffff;
    text-decoration: none;
}

.user-nav-links li a:hover {
    color: #c88c15;
}

.col-full {
    background: transparent;
    width: 100%;
    padding: 0px;
    height: 1241px;
    margin-top: -900px;
    margin-bottom: -110px;
    z-index: -10;
}

.pagination {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.links-download {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-around;
    align-items: center;
}

.links-download li {
    display: block;
}

.table.table-hover {
    margin-left: auto;
    margin-right: auto;
}

.table.table-hover img {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-bottom: 20px;
}

.specs-table {
    border-spacing: 5px;
}
.specs-table tr {
    background-color: #1e0f06;
    color: #ffe9a8;
    text-align: center;
    font-size: 14px;
}
.specs-table tr th, .specs-table tr td {
    padding: 10px 21px;
}
.specs-table .odd {
    background-color: #321b0c;
}
.bold {
    font-weight: bold;
}
.account-table {
    width: 100%;
    border-spacing: 0px;
    padding: 30px 0px;
}
.account-table tr {
    background-color: #321b0c;
}
.account-table tr td {
    padding: 15px 21px;
    border-bottom: 1px solid #341c0b;
}
.account-table tr:nth-child(2n) {
    background-color: #45240e !important;
}
.account-table .glow {
    text-shadow: 0px 0px 3px #c5b71e;
}
.account-table tbody tr td form {
    width: 100%;
    display: block;
}

footer {
    background-color: transparent;
    color: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    bottom: 140px;
    width: 100%;
    flex-wrap: nowrap;
}

footer .left-text, 
footer .right-text {
    font-size: 14px;
    color: #c9aa79;
    font-family: 'Trajan Pro Bold';
}

footer .right-text {
    text-align: right;
}

footer .center-logo img {
    height: 100px; /* Ajusta el tamaño del logo según prefieras */
}

footer span {
    color: #eedfc8;
    font-weight: bold;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

footer span a {
    margin-left: 35px;
}

.justify-content-center {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.discord-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.discord-toggle {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #5865F2;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
    transition: background-color 0.2s ease;
}

.discord-toggle:hover {
    background-color: #404EED;
}

@media (max-width: 767px) {
    .discord-widget {
        display: none;
    }
    
    /* Responsividade para tabelas de ranking */
    .mt2cms2-c-l .table {
        font-size: 12px;
    }
    
    .mt2cms2-c-l .table th,
    .mt2cms2-c-l .table td {
        padding: 10px 8px;
    }
    
    /* Oculta colunas menos importantes em telas pequenas */
    .mt2cms2-c-l .table .exp-table,
    .mt2cms2-c-l .table tbody td:nth-child(5) {
        display: none;
    }
    
    /* Ajusta tabs para mobile */
    .mt2cms2-c-l .nav-tabs {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .mt2cms2-c-l .nav-tabs a,
    .mt2cms2-c-l .nav-tabs .nav-link {
        padding: 10px 14px;
        font-size: 11px;
    }
    
    .mt2cms2-c-l .nav-tabs img {
        height: 16px;
    }
    
    /* Ajusta jumbotron para mobile */
    .mt2cms2-c-l .jumbotron {
        padding: 16px 18px;
    }
    
    /* Ajusta botões para mobile */
    .mt2cms2-c-l .btn {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .mt2cms2-c-l .btn-lg {
        font-size: 14px;
        padding: 12px 20px;
    }
}

@media (max-width: 576px) {
    /* Para telas muito pequenas, oculta também a coluna de level */
    .mt2cms2-c-l .table .level-table,
    .mt2cms2-c-l .table tbody td:nth-child(4) {
        display: none;
    }
    
    .mt2cms2-c-l .padding-container {
        padding: 15px;
    }
    
    .mt2cms2-c-l .page-hd h2 {
        font-size: 20px;
    }
}

/* Reset básico */
#invite-panel, 
#invite-panel *, 
#invite-panel *::before, 
#invite-panel *::after {
  box-sizing: border-box;
}

#invite-panel{
    background-image:url(../images/invite_panel.png);
    background-repeat:no-repeat;
    background-position:center;
    width:374px;
    height:504px;
    position:fixed;
    z-index:10000;
    left:100px;
    top:calc((100% - 504px)/2);
    box-shadow:4px 4px 18px 0 rgb(0 0 0/50%);
    border-radius:15px;
    text-align:center;
    color:#fff;
    font-size:17px;
    line-height:1.25;
    text-shadow:3px 3px 7px rgb(0 0 0/54%);
    padding:25px;
    padding-top:285px;
    overflow:hidden
}

#invite-panel p {
    margin-top: 10px;
}

#invite-panel-close{
    color:#fff;
    position:absolute;
    right:5px;
    top:0;
    font-size:20px;
    padding:5px;
    text-shadow:0 0 5px rgb(0 0 0/33%)
}
#invite-panel-close:hover{
    color:#e5e5e5
}
#invite-panel-button{
    background-image:url(../images/invite_button.png);
    background-repeat:no-repeat;
    background-position:center;
    width:337px;
    height:115px;
    display:block;
    margin-left:auto;
    margin-right:auto;
    color:#000;
    font-size:16px;
    font-weight:700;
    text-align:left;
    padding-top:67px;
    padding-left:20px;
    position:absolute;
    bottom:10px;
    left:0;
    right:0;
    transition-duration:.2s;
    text-shadow:none
}
#invite-panel-button:hover{
    filter:brightness(110%)
}
#invite-panel h4{
    background:linear-gradient(90deg,rgba(255,228,152,1) 0%,rgba(255,255,255,1) 45%,rgba(255,255,255,1) 55%,rgba(255,228,152,1) 100%);
    background-clip:text;
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    font-size:27px;
    font-weight:700;
    text-transform:uppercase;
    text-shadow:none;
    display:inline
}

@media screen and (max-width:2300px){
    #invite-panel{
        left:20px
    }
}
@media screen and (max-width:2100px){
    #invite-panel{
        width:200px;
        padding-top:260px;
        left:10px
    }
    #invite-panel-button{
        text-align:center;
        width:100%;
        background-position:0 0
    }
}

@media screen and (max-width:1750px){
    #invite-panel{
        display:none
    }
}

.mobile-dropdown-menu {
    display: none; /* Escondido por padrão. jQuery irá controlar a exibição. */
    position: absolute;
    top: 55px; /* Ajuste a distância do topo conforme a altura do seu header */
    left: 0;
    width: 100%;
    background-color: #1c0e0a; /* Fundo escuro, como na imagem */
    z-index: 998; /* Abaixo do header, mas acima do conteúdo */
    border-top: 1px solid #4d3a2a;
    box-shadow: 0 8px 15px rgba(0,0,0,0.5);
}

/* Estilo dos links dentro do menu dropdown */
.mobile-dropdown-menu a {
    display: block; /* Ocupa a linha inteira */
    padding: 18px 20px;
    color: #dabc7b;
    text-align: center; /* Centraliza o texto */
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid #3a1a0e; /* Linha separadora entre os links */
}

.mobile-dropdown-menu a:hover {
    background-color: #3a1a0e;
    color: #fff;
}

/* Divisor visual para a seção de idiomas */
.language-divider {
    height: 10px;
    background-color: #3a1a0e;
}

/* Estilo específico para as opções de idioma */
.mobile-dropdown-menu a.language-option {
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: none; /* Idiomas não precisam de maiúsculas */
}

.mobile-dropdown-menu a.language-option img {
    height: 16px;
    margin-right: 10px;
    border-radius: 3px;
}

.wp-pagenavi {
	text-align: center;
	margin-top: 20px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
}

.wp-pagenavi a {
	display: inline-block;
	padding: 6px 12px;
	background-color: #222;
	color: wheat;
	text-decoration: none;
	border: 1px solid #444;
	border-radius: 4px;
	transition: background-color 0.2s;
}

.wp-pagenavi a:hover {
	background-color: #444;
}

.wp-pagenavi a.current {
	color: red;
	font-weight: bold;
	border: 2px solid red;
}
