/* ===== PREVENÇÃO DE OVERFLOW HORIZONTAL GLOBAL ===== */
html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}

body {
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    min-height: 100vh;
}

* {
  box-sizing: border-box;
}

.container, .container-fluid {
  max-width: 100%;
  overflow-x: hidden;
  padding-left: 15px;
  padding-right: 15px;
}

.row {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
}

/* Garantir que elementos não ultrapassem a largura da tela */
img, video, iframe, embed, object {
  max-width: 100%;
  height: auto;
}

/* Prevenir overflow em elementos flex */
.flex-container, .d-flex {
  max-width: 100%;
  overflow-x: hidden;
}

header {
    background: linear-gradient(135deg, rgba(15, 12, 41, 0.95) 0%, rgba(48, 43, 99, 0.9) 100%), url(/app/content/assets/images/fundo.jpg) no-repeat center;
    height: 400px;
    position: relative;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    -webkit-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(242, 172, 67, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.card {
    background: rgba(30, 30, 50, 0.8);
    border: 1px solid rgba(242, 172, 67, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(242, 172, 67, 0.2);
    border-color: rgba(242, 172, 67, 0.3);
}

/* Discord widget específico */
.discord-widget-card {
    z-index: 2;
}

.discord-widget-card iframe {
    position: relative;
    z-index: 3;
    width: 100% !important;
    height: 600px !important;
    border: none !important;
    background: transparent !important;
}

.header-container {
    align-items: center;
    max-width: initial;
    padding: 0;
    background: transparent;
    height: 100%;
    justify-content: center;
    position: relative;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(242, 172, 67, 0.3); }
    50% { box-shadow: 0 0 40px rgba(242, 172, 67, 0.6); }
}

nav.navbar-custom {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(242, 172, 67, 0.15);
    -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-nav .nav-link {
    color: #f2ac43;
    font-size: 1.025rem;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(242, 172, 67, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-light .navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f2ac43, transparent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-light .navbar-nav .nav-link:hover::before {
    width: 80%;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: #ffd700;
    transform: translateY(-2px);
}

.social a{
    color: #f2ac43;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(242, 172, 67, 0.4));
}

.social a:hover {
    color: #ffd700;
    transform: scale(1.2);
    filter: drop-shadow(0 4px 15px rgba(242, 172, 67, 0.7));
}

.social-secundario a{
    color: #f2ac43;
    transition: all 0.3s ease;
}

.social-secundario a:hover {
    color: #ffd700;
}

.social {
    margin: 0 auto;
    font-size: 28px;
    color: #f2ac43;
}

.social-secundario {
    margin: 0 auto;
    font-size: 24px;
    color: #f2ac43;
}

@media (min-width: 768px) {
    .btn-store {
        background: linear-gradient(135deg, #f2ac43 0%, #e2b954 100%);
        -webkit-box-shadow: 0 8px 20px rgba(242, 172, 67, 0.4);
        box-shadow: 0 8px 20px rgba(242, 172, 67, 0.4);
        border-radius: 50px;
        font-size: 1.025rem;
        padding: 0 35px;
        -webkit-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .btn-store::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.5s ease;
    }
    
    .btn-store:hover::before {
        left: 100%;
    }
    
    .btn-store:hover {
        transform: scale(1.05);
        box-shadow: 0 12px 30px rgba(242, 172, 67, 0.6);
    }
	
}

@media (min-width: 768px) {
    .logo img {
        width: 320px;
        position: relative;
        bottom: 100px;
        right: 15px;
        filter: drop-shadow(0 5px 15px rgba(242, 172, 67, 0.3));
        transition: all 0.3s ease;
    }
    
    .logo img:hover {
        filter: drop-shadow(0 8px 20px rgba(242, 172, 67, 0.5));
        transform: scale(1.02);
    }
}

.header-bottom {
    position: absolute;
    padding-top: 15px;
    padding-bottom: 25px;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(242, 172, 67, 0.2);
    -webkit-box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.2);
    box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.2);
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.header-bottom .box {
    cursor: pointer;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 220px;
    flex: 0 0 320px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 0.9;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: rgba(242, 172, 67, 0.08);
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(242, 172, 67, 0.2);
    transition: all 0.3s ease;
}

.header-bottom .box:hover {
    opacity: 1;
    background: rgba(242, 172, 67, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(242, 172, 67, 0.3);
}

.header-bottom .box .box-text {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.header-bottom .box .box-text .small {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: rgba(242, 172, 67, 0.9);
    text-transform: uppercase;
}

.header-bottom .box .box-text .big {
    display: block;
    margin-top: 3px;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 20px;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 2px 15px rgba(242, 172, 67, 0.6);
}

.header-bottom .box.box--ip {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: right;
}

.header-bottom .box .box-icon .mdi-minecraft {
    font-size: 32px;
    font-weight: 100;
    position: relative;
    top: -1px;
    margin-left: 18px;
    color: #f2ac43;
    filter: drop-shadow(0 0 10px rgba(242, 172, 67, 0.6));
    transition: all 0.3s ease;
}

.header-bottom .box:hover .box-icon .mdi-minecraft {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(242, 172, 67, 0.9));
}

.header-bottom .box.box--discord {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: left;
}

.header-bottom .box .box-icon .mdi-discord {
    font-size: 28px;
    margin-right: 18px;
    position: relative;
    top: 0px;
    color: #f2ac43;
    filter: drop-shadow(0 0 10px rgba(242, 172, 67, 0.6));
    transition: all 0.3s ease;
}

.header-bottom .box:hover .box-icon .mdi-discord {
    transform: scale(1.2) rotate(-5deg);
    filter: drop-shadow(0 0 20px rgba(242, 172, 67, 0.9));
}

.container {
    max-width: 1250px;
}

section#home {
    margin-top: 30px;
    padding-top: 40px;
}

/* Welcome Section */
.welcome-section {
    margin-bottom: 30px;
}

.welcome-card {
    background: rgba(30, 30, 50, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(242, 172, 67, 0.3);
    border-radius: 16px;
    padding: 30px 35px;
    box-shadow: 0 10px 40px rgba(242, 172, 67, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Removido animação pesada - substituído por efeito mais leve */

.welcome-content {
    position: relative;
    z-index: 1;
}

.welcome-title {
    font-size: 2rem;
    font-weight: 700;
    color: #f2ac43;
    margin-bottom: 15px;
    text-shadow: 0 3px 15px rgba(242, 172, 67, 0.5);
    letter-spacing: 0.5px;
}

.welcome-title i {
    color: #ff6b35;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.welcome-text {
    font-size: 1.1rem;
    color: #d1d1d1;
    line-height: 1.6;
    margin: 0;
}

.welcome-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(242, 172, 67, 0.35);
    border-color: rgba(242, 172, 67, 0.5);
}

/* Removido - usando iframe original */

.card-header {
    border-bottom: 0;
    background: linear-gradient(135deg, rgba(242, 172, 67, 0.2) 0%, rgba(242, 172, 67, 0.05) 100%);
    border-radius: 12px 12px 0 0 !important;
    padding: 20px 25px;
}

section#home .card
#noticias.card {
    background: rgba(30, 30, 50, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(242, 172, 67, 0.15);
}

.card-header#header-noticias {
    background: linear-gradient( to left, rgba(19, 165, 196, 0) 0%, rgba(19, 165, 196, 0) 10%, rgba(0, 0, 0, 0.65) 89%, rgba(0, 0, 0, 0.75) 100%), url(/assets/img/banner-loja.png);
    background-size: cover;
}

.fundo-header {
    border: 2px solid #e2b954;
    padding: 5px;
        border-radius: 10px;
    width: 100px;
}

#noticias.card #header-noticias.card-header h3 {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 1000;
}

.font-size-t {
    font-weight: 900;
    font-size: 12px;
    font-family: "Montserrat", sans-serif !important;
}

.fundo-cards {
    background: linear-gradient( to bottom, rgba(255, 255, 255, 0) 0%, #2b3035 100%) !important;
    width: 100%;
    height: 400px;
    position: absolute;
    z-index: 999;
}

#noticias.card .card-body {
    overflow: hidden;
    text-overflow: ellipsis;
    height: 400px !important;
    position: relative;
    padding: 15px 25px;
    font-size: 17px;
    line-height: 1.5;
}

section#home .card {
    border: none;
    border-radius: 5px;
    -webkit-box-shadow: 0 10px 12px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 12px rgba(0, 0, 0, 0.1);
}
.card#noticias {
    margin-bottom: 20px;
}

.sidebar-bottom {
    margin-bottom: 2%;
}

.footer-main {
    padding: 50px 0 40px;
    background: rgba(15, 12, 41, 0.95);
    border-top: 1px solid rgba(242, 172, 67, 0.15);
    margin-top: 60px;
}

.p-footer-inner {
    max-width: 1200px;
    padding: 0 10px;
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 6px;
    padding-bottom: 10px;
}

.footer-main .textbox {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(50% - 187.5px);
    flex: 0 0 calc(50% - 187.5px);
    text-align: center;
}

.footer-main .textbox-title {
    font-weight: bold;
    font-size: 15px;
    color: #aaa;
}

.footer-main .textbox-title:after {
    content: "";
    display: block;
    width: 35px;
    height: 3px;
    margin: 7px auto 21px;
    background: rgba(255, 255, 255, 0.065);
}

.footer-main p {
    margin: 0;
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #707070;
    line-height: 22px;
}

.footer-main .textbox {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(50% - 187.5px);
    flex: 0 0 calc(50% - 187.5px);
    text-align: center;
}

.footer-main .logo-footer {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 375px;
    flex: 0 0 375px;
}

.footer-main {
    margin-top: -10px;
}

.footer-copyright {
    background: rgba(10, 8, 30, 0.98);
    border-top: 1px solid rgba(242, 172, 67, 0.1);
}

.footer-main a {
    display: block;
    margin-top: 10px;
    font-weight: 600;
    text-decoration: none;
    color: #f2ac43;
    transition: all 0.3s ease;
    text-shadow: 0 2px 8px rgba(242, 172, 67, 0.3);
}

.footer-main a:hover {
    color: #ffd700;
    transform: translateX(5px);
    text-shadow: 0 2px 12px rgba(242, 172, 67, 0.6);
}

.footer-copyright .container {
    padding-top: 25px;
    padding-bottom: 25px;
}

.footer-copyright .copyright-text {
    font-weight: bold;
    font-size: 13px;
    margin-right: auto;
}

section#top {
    margin-top: -10px;
}

body,
button,
input,
textarea,
section,
header {
    font-family: "Montserrat", sans-serif;
    font-size: 0.95em;
}

#header-noticias .font-size-g {
    font-size: 21px;
}

#sidebar-color li a {
    color: #e2b954;
    font-size: 17px;
    font-weight: bold;
    height: 70px;
    line-height: 70px;
    text-decoration: none !important;
}

#sidebar-color li {
    border-top: 1px solid #34393e;
}

#sidebar-fundo.card {
    -webkit-box-shadow: 0 4px 7px rgba(0, 0, 0, 0.075);
    box-shadow: 0 4px 7px rgba(0, 0, 0, 0.075);
    background: #2f3439;
}

.sidebar-logo {
    position: absolute;
	bottom: calc(100% - 40px);
    display: block;
    left: 77px;
    width: 210px;
    height: auto;
    padding-block-end: 20px;
}

#loja-fundo {
    text-align: center;
    background: #212121;
    color: #fff;
    text-transform: uppercase;
    padding: 40px;
}

nav ul li a:hover {
    color: #e9cb80;
    background: rgba(0, 0, 0, 0.025);
}

.card-meta#sidebar-fundo {
    padding: 20px;
    margin-top: 6px;
    position: relative;
}

.meta-text {
    display: block;
    margin-top: -3px;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 11px;
    letter-spacing: 1px;
    color: #4dbb6a;
}

.goal-progress {
    border-radius: 50px;
    margin: 0;
    height: 14px;
    background: #424242;
}

.goal-progress .progress-bar {
    border-radius: 50px;
    background: #4dbb6a;
}

.progress-bar[aria-valuenow="0"] {
    color: #999999;
    min-width: 30px;
    background-color: transparent;
    background-image: none;
    box-shadow: none;
}

.progress-bar {
    float: left;
    height: 100%;
    font-size: 12px;
    line-height: 20px;
    transition: width 0.6s ease;
}

.recent-buy {
    padding-bottom: 15px;
}

.compras-recent#sidebar-fundo {
    margin-top: 6px;
    position: relative;
}

.recent-title {
    font-weight: bold;
    color: #4dbb6a;
    letter-spacing: 2px;
    text-align: center;
    font-size: 13px;
    display: block;
    padding: 22px 0;
    line-height: 14px;
}

.heads-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 30px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.heads-row .head {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30px;
    flex: 0 0 30px;
    margin: 0 4px;
}

.heads-row .head img {
    margin-bottom: 8px;
    border-radius: 3px;
}

.loja-info#sidebar-fundo {
    padding: 0 25px 25px;
}

.homepage-alert-container {
    padding-top: 25px;
}

.homepage-alert {
    background: #d74040;
    padding: 15px;
    padding-left: 50px;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    color: white;
    font-weight: bold;
    position: relative;
}

.homepage-alert .mdi {
    font-size: 22px;
    height: 22px;
    line-height: 22px;
    display: block;
    position: absolute;
    margin: auto 0;
    top: 2px;
    bottom: 0;
    left: 15px;
}

.homepage-header {
    height: 110px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 25px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.homepage-title {
    position: relative;
    top: 3px;
}

.homepage-title .small {
    display: block;
    font-size: 13px;
    margin-bottom: -5px;
    font-weight: bold;
    color: rgba(245, 193, 114, 0.65);
}

.homepage-title .big {
    display: block;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.025em;
    color: #f5c172;
}

.homepage-package {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.homepage-package .text {
    text-align: right;
}

.homepage-package .text .name {
    font-size: 14px;
    font-weight: bold;
    color: white;
    letter-spacing: -0.02em;
}

.homepage-package .text .price {
    margin-top: 3px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.homepage-package .text .price .price-compare .old {
    font-size: 11px;
    display: inline-table;
    color: #ff7373;
    font-weight: 600;
    position: relative;
}

.homepage-package .text .price .price-compare .current {
    color: white;
    margin-top: -4px;
    display: block;
    font-size: 11px;
    font-weight: 900;
}

.homepage-package .text .price .btn {
    position: relative;
    top: 2px;
    margin-left: 8px;
    height: 30px;
    font-size: 12px;
    line-height: 22px;
    background: #5371c6;
    border-bottom: #4760a8;
    border: none;
}

.homepage-package .image {
    margin-left: 15px;
}

.homepage-package .image img {
    height: 80px;
    width: 93px;
    width: auto;
    border-radius: 4px;
}

.fundo-red img {
    position: absolute;
    bottom: calc(100% - 60px);
    display: block;
    left: 7px;
    /* width: 250px; */
    width: 368px;
    height: auto;
	padding-block-end: 20px;
}

.footer-main .footer-links ul li a {
    padding: 0 10px;
}

.footer-main .footer-links ul li a:hover {
    border-bottom: 1px solid rgba(209, 197, 169, 0.402);
}

.logo-footer {
    display: block;
    margin: auto;
    overflow: hidden;
    background-size: contain;
    width: 130px;
}

.footer-sub-links ul li a {
    padding: 0 10px;
    color: rgba(209, 197, 169, 0.402);
    font-size: 11px;
}

.menores-de-idade img {
    border-radius: 5px;
    border: 2px solid white;
}

.panel-default {
    cursor: default;
    border-radius: 4px;
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.125);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.125);
    background: #2f3439;
}

.panel-default .panel-heading {
    border-radius: 4px 4px 0 0;
    background: white;
    border: none;
    color: white;
    font-size: 15px;
    font-weight: 500;
    height: 50px;
    padding: 0 20px;
    line-height: 51px;
    background: #47975c;
}

.panel-default .panel-body {
    padding: 20px;
}

.username {
    margin: 5px 0 7px 0;
}

span.username-prompt {
    font-weight: bold;
    display: block;
    margin: 0 0 10px;
    color: white;
}

.input-group {
    position: relative;
    display: table;
    border-collapse: separate;
}

.form-control {
    border-radius: 4px;
    font-weight: 600;
    color: #f5c172;
    border: 2px solid rgba(255, 255, 255, 0.035);
    background: rgba(255, 255, 255, 0.075);
}

.input-group-addon,
.input-group-btn {
    width: 1%;
    vertical-align: middle;
}

.input-group-btn {
    display: table-cell;
}

.input-group>.form-control {
    width: 100%;
}

.button-md-custom {
    height: 46px;
    border: none;
    border-bottom: 3px solid;
    border-width: 0 0 3px;
    font-weight: bold;
    font-size: 12px;
    padding: 0 13px;
    height: 38px;
    line-height: 38px;
    color: white;
    outline: none !important;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.15) !important;
    border-radius: 0 5px 5px 0px;
    background: #47975c;
}

.input-group>.custom-select:not(:last-child),
.input-group>.form-control:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    background: #3e4348;
    color: #e2b954;
}

#text-loja {
    font-weight: 500;
    font-size: 13px;
    line-height: 25px;
    margin-bottom: 10px;
    color: #ccc;
}

.botoes-link {
    margin-top: 16px;
}

.boteoes-link .btn:not(:last-child) {
    margin-right: 3px;
}

.botoes-link a {
    background: #f5c172 !important;
    border-bottom: 3px solid;
    color: #6d3e1e;
}

section#top #produtos .sidebar-module {
    margin-bottom: 11% !important;
}

section#top #produtos .sidebar-module .card {
    background: #2f3439;
}

section#top #produtos .card,
section#top #produtos .card img {
    border-radius: 5px;
}

#produtos .card {
    box-shadow: 0 4px 7px rgba(0, 0, 0, 0.075);
    text-align: center;
}

.card .card-body h5.produto-name {
    color: #e2b954 !important;
}

div.show-preco {
    position: relative;
    top: 20px;
}

div.show-preco h6 {
    color: #ccc;
}

div.show-preco h1 {
    color: #e2b954;
}

section#top .row .btn.btn-simple-blue-2 {
    top: 40px;
    background: #4dbb6a;
    color: #fff;
    border: 0;
    border-radius: 5px;
    position: relative;
}

.painel-esqueleto {
    margin-bottom: 20px;
    border-radius: 5px;
}

.painel-header {
    font-weight: 500;
    font-size: 18px;
    padding: 35px 40px;
    padding-bottom: 0;
}

.painel-body {
    padding: 15px;
}

.staffs {
    text-align: center;
    padding: 24px;
    margin: 10px 0;
    position: relative;
}

.cabeca-staffs {
    border-radius: 5px;
    display: inline-block;
}

.staffs-nomes {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    color: #e2b954;
}

.painel-header .staffs-names {
    color: #AA0000;
}

.dropdown-menu {
    background: rgba(0, 0, 0, 0.65);
    top: calc(100% - 5px);
    right: 0;
    -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.01);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.01);
    width: 200px;
    padding: 10px 0;
    border-radius: 3px;
    text-align: right;
}

.dropdown-menu a {
    font-size: 16px;
    height: 40px;
    line-height: 40px;
    padding: 0 22px;
    font-weight: bold;
    color: #d3e6ff;
}

.dropdown-menu::before {
    content: "";
    display: block;
    width: 0px;
    position: absolute;
    bottom: 100%;
    right: 161px;
    margin: 0 auto;
    border: 4px solid transparent;
    border-bottom-color: rgba(0, 0, 0, 0.65);
}

.politica-privacidade h3 {
    color: #e2b954;
}

.politica-privacidade h2 {
    color: #e2b954;
    font-weight: bold;
}

.politica-privacidade p {
    color: #96782f;
}

.politica-privacidade small {
    font-weight: bold;
    color: white;
}

#changelog.card {
    padding: 25px;
}

#changelog {
    color: #e2b954;
}
/* ================================================== */
/* ESTILOS PARA A LISTA DE NOTÍCIAS (PÁGINA INICIAL)  */
/* ================================================== */

.feedlist {
    display: flex;
    flex-direction: column;
    gap: 30px;
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.news-post-item {
    background: rgba(30, 30, 50, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(242, 172, 67, 0.15);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.news-post-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f2ac43, #e2b954, #f2ac43);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.news-post-item:hover::before {
    opacity: 1;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.news-post-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(242, 172, 67, 0.15);
    border-color: rgba(242, 172, 67, 0.3);
}

.news-post-header {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.news-post-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    transition: opacity 0.4s ease;
}

.news-post-item:hover .news-post-header::after {
    opacity: 0.7;
}

.news-post-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-post-item:hover .news-post-header img {
    transform: scale(1.05);
}

.news-post-body {
    display: flex;
    padding: 20px;
}

.news-post-sidebar {
    display: flex;
    align-items: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.news-post-sidebar .author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #f2ac43;
    margin-right: 15px;
    box-shadow: 0 4px 15px rgba(242, 172, 67, 0.3);
    transition: all 0.3s ease;
}

.news-post-sidebar .author-avatar:hover {
    transform: scale(1.1);
    border-color: #ffd700;
    box-shadow: 0 6px 20px rgba(242, 172, 67, 0.5);
}

.news-post-sidebar .author-info {
    display: flex;
    flex-direction: column;
}

.author-info .author-name {
    font-weight: 700;
    color: #f2ac43;
    font-size: 1rem;
    text-shadow: 0 2px 8px rgba(242, 172, 67, 0.4);
    letter-spacing: 0.3px;
}

.author-info .post-date {
    font-size: 0.8rem;
    color: #a7b0be;
    font-weight: 500;
    margin-top: 2px;
}

.news-post-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-post-content .post-title {
    margin: 0 0 12px 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

.news-post-content .post-resume {
    margin: 0 0 15px 0;
    color: #d1d1d1;
    flex-grow: 1;
    line-height: 1.6;
}

/* Garante que o conteúdo do resumo (que vem do BD) tenha a cor correta */
.news-post-content .post-resume * {
    color: #d1d1d1 !important;
}

.btn-read-more {
    background: linear-gradient(135deg, #f2ac43 0%, #e2b954 100%);
    color: #1e1e1e;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    align-self: flex-start;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    box-shadow: 0 4px 15px rgba(242, 172, 67, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-read-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-read-more:hover::before {
    left: 100%;
}

.btn-read-more:hover {
    background: linear-gradient(135deg, #ffd700 0%, #f2ac43 100%);
    color: #000;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(242, 172, 67, 0.4);
}

.btn-read-more .fa-arrow-right {
    margin-left: 5px;
}

/* Responsividade Mobile - Mantendo layout desktop */
@media (max-width: 768px) {
    /* Header responsivo mas mantendo estrutura */
    header {
        height: 380px;
        background-position: center;
        background-size: cover;
    }
    
    .header-container {
        display: flex !important;
        flex-direction: column !important;
        height: 100% !important;
        padding: 0 !important;
        position: relative !important;
    }
    
    /* Logo no centro - com espaço flexível */
    .logo {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        flex: 1 !important;
        padding-top: 50px !important;
        padding-bottom: 80px !important;
    }
    
    .logo img {
        width: 200px !important;
        position: static !important;
        bottom: auto !important;
        right: auto !important;
        max-width: 90% !important;
    }
    
    /* Header bottom embaixo - fixo */
    .header-bottom {
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: 80px;
        padding: 12px 5px;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .header-bottom .box {
        flex: 0 0 auto;
        min-width: 150px;
        max-width: 45%;
        margin: 0 5px;
        padding: 10px 12px;
    }
    
    .header-bottom .box .box-text {
        overflow: hidden;
    }
    
    .header-bottom .box .box-text .small {
        font-size: 9px;
        letter-spacing: 0.5px;
        white-space: nowrap;
    }
    
    .header-bottom .box .box-text .big {
        font-size: 13px;
        letter-spacing: 0.8px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .header-bottom .box .box-icon .mdi-minecraft,
    .header-bottom .box .box-icon .mdi-discord {
        font-size: 22px;
        margin-left: 10px;
        margin-right: 10px;
    }
    
    /* Navbar no topo absoluto */
    nav.navbar-custom {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 10 !important;
        padding: 8px 0 !important;
        order: 0 !important;
    }
    
    /* Navbar - SEM HAMBURGER - sempre visível */
    .navbar-toggler {
        display: none !important;
    }
    
    .navbar-collapse {
        display: flex !important;
        visibility: visible !important;
        background: transparent !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .navbar-collapse.collapse {
        display: flex !important;
    }
    
    /* Social icons - ocultar no mobile */
    nav.navbar-custom .social {
        display: none !important;
    }
    
    .navbar-nav {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        width: 100% !important;
        gap: 8px !important;
    }
    
    .navbar-light .navbar-nav .nav-link {
        color: #f2ac43 !important;
        font-size: 0.75rem !important;
        padding: 6px 12px !important;
        margin: 0 !important;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 600;
        text-shadow: 0 2px 8px rgba(242, 172, 67, 0.4);
    }
    
    .navbar-light .navbar-nav .nav-link:hover {
        color: #ffd700 !important;
    }
    
    /* Ocultar botão loja desktop */
    .btn-store.d-none.d-md-block {
        display: none !important;
    }
    
    /* Botão loja mobile com destaque */
    .btn-store.d-md-none {
        background: linear-gradient(135deg, #f2ac43 0%, #e2b954 100%);
        border-radius: 20px;
        padding: 0;
        box-shadow: 0 4px 12px rgba(242, 172, 67, 0.4);
    }
    
    .btn-store.d-md-none .nav-link {
        color: rgba(0, 0, 0, 0.9) !important;
        padding: 6px 14px !important;
        background: transparent !important;
        font-weight: 700 !important;
    }
    
    /* Content responsivo */
    section#home {
        margin-top: 25px;
        padding-top: 25px;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Welcome card */
    .welcome-card {
        padding: 22px;
        margin-bottom: 25px;
    }
    
    .welcome-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .welcome-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* News posts */
    .news-post-header {
        height: 180px;
    }
    
    .news-post-body {
        flex-direction: column;
        padding: 18px;
    }
    
    .news-post-sidebar {
        margin-right: 0;
        margin-bottom: 15px;
        flex-direction: row;
        align-items: center;
    }
    
    .news-post-sidebar .author-avatar {
        width: 50px;
        height: 50px;
        margin-right: 12px;
    }
    
    .news-post-content .post-title {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }
    
    .btn-read-more {
        align-self: stretch;
        text-align: center;
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    /* Sidebar */
    .sidebar-bottom {
        margin-top: 25px;
    }
    
    .discord-widget-card,
    .top-buyers-card {
        margin-bottom: 20px;
    }
    
    /* Discord widget */
    .discord-widget-card iframe {
        height: 450px;
    }
    
    /* Cards */
    .card {
        margin-bottom: 20px;
    }
    
    .card-header {
        padding: 16px 20px;
    }
    
    .card-header h5 {
        font-size: 1.05rem;
    }
}

/* Celulares pequenos - ajustes adicionais */
@media (max-width: 480px) {
    header {
        height: 360px !important;
    }
    
    .logo {
        padding-top: 45px !important;
        padding-bottom: 85px !important;
    }
    
    .logo img {
        width: 170px !important;
    }
    
    .header-bottom {
        height: 75px !important;
        padding: 10px 3px !important;
    }
    
    .header-bottom .box {
        min-width: 140px !important;
        max-width: 48% !important;
        padding: 8px 8px !important;
        margin: 0 2px !important;
    }
    
    .header-bottom .box .box-text .small {
        font-size: 8px !important;
    }
    
    .header-bottom .box .box-text .big {
        font-size: 11px !important;
    }
    
    .header-bottom .box .box-icon .mdi-minecraft,
    .header-bottom .box .box-icon .mdi-discord {
        font-size: 20px !important;
        margin-left: 8px !important;
        margin-right: 8px !important;
    }
    
    .navbar-light .navbar-nav .nav-link {
        font-size: 0.7rem !important;
        padding: 5px 10px !important;
    }
}

@media (max-width: 768px) {
    /* Melhorias para tablets */
    header {
        height: 320px;
    }
    
    .header-container {
        background: linear-gradient(135deg, rgba(21, 31, 56, 0.6), rgba(0, 167, 207, 0.5), rgba(239, 227, 72, 0.5), rgba(134, 26, 84, 0.5), rgba(5, 79, 125, 0.5));
        box-shadow: inset 0 0 4em rgba(0, 0, 0, 0.6);
    }
    
    nav.navbar-custom {
        background: rgba(0, 0, 0, 0.6);
        padding: 8px 0;
    }
    
    .navbar-light .navbar-nav .nav-link {
        color: #e2b954;
        font-size: 1.05rem;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
    }
    
    .logo img {
        width: 250px;
        position: relative;
        bottom: 70px;
        right: 10px;
    }
    
    .header-bottom .box {
        padding: 10px 15px;
        background: rgba(0, 0, 0, 0.7);
        border: 1px solid rgba(226, 185, 84, 0.2);
        border-radius: 10px;
    }
    
    .header-bottom .box .box-text .small {
        font-size: 0.85rem;
        color: #e2b954;
    }
    
    .header-bottom .box .box-text .big {
        font-size: 1rem;
        color: #fff;
    }
}

.box-body {
    background: rgba(43, 49, 54, 0.97);
    padding: 25px;
}

.box-title {
    background: #585858;
    padding: 25px;
    font-size: 20px;
    font-weight: bold;
    color: white;
}

#box-tile-aside {
    padding: 15px;
}

.table thead th,
.table td {
    border: none;
}

input[type=radio] {
    box-sizing: border-box;
    padding: 0;
    display: none;
}

.gateway input:checked+img {
    border: 2px solid #4b4b4b;
}

.gateway img {
    display: block;
    margin: auto;
    width: 100%;
    max-width: 250px;
    padding: 10px;
}

.gateway {
    max-width: 100%;
    width: 100%;
    overflow: hidden;
}

.gateway input {
    transition: 0.5s;
}

.box .box-title-cupom {
    padding: 10px;
    font-size: 22px;
}
::-webkit-scrollbar {
    width: 8px;
    height: 0;
    background: #111;
    overflow: visible;
}

::-webkit-scrollbar-button {
    height: 0;
    width: 0;
}

::-webkit-scrollbar-thumb {
    padding: 0;
    background: #e04e37;
    border-radius: 50px;
    border-width: 1px 1px 1px 6px;
}

::-webkit-scrollbar-track {
    background-clip: padding-box;
    border: solid transparent;
    border-width: 0 0 0 4px;
}

/* ===== PREVENÇÃO DE OVERFLOW HORIZONTAL EM MOBILE ===== */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    width: 100vw;
    max-width: 100vw;
  }
  
  .container, .container-fluid {
    max-width: 100vw;
    overflow-x: hidden;
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .row {
    margin-left: 0;
    margin-right: 0;
    max-width: 100vw;
  }
  
  /* Garantir que cards não ultrapassem a largura */
  .col-md-4, .col-md-6, .col-md-8, .col-md-12 {
    max-width: 100%;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
  
  /* Prevenir overflow em tabelas */
  .table-responsive {
    overflow-x: hidden;
    max-width: 100vw;
  }
  
  /* Garantir que botões não ultrapassem a largura */
  .btn {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  /* Garantir que textos não ultrapassem a largura */
  h1, h2, h3, h4, h5, h6, p, span, div {
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  html, body {
    overflow-x: hidden !important;
    width: 100vw;
    max-width: 100vw;
  }
  
  .container, .container-fluid {
    max-width: 100vw;
    overflow-x: hidden;
    padding-left: 5px;
    padding-right: 5px;
  }
  
  .row {
    margin-left: 0;
    margin-right: 0;
    max-width: 100vw;
  }
  
  /* Garantir que cards não ultrapassem a largura */
  .col-md-4, .col-md-6, .col-md-8, .col-md-12 {
    max-width: 100%;
    width: 100%;
    padding-left: 5px;
    padding-right: 5px;
  }
  
  /* Prevenir overflow em tabelas */
  .table-responsive {
    overflow-x: hidden;
    max-width: 100vw;
  }
  
  /* Garantir que botões não ultrapassem a largura */
  .btn {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  /* Garantir que textos não ultrapassem a largura */
  h1, h2, h3, h4, h5, h6, p, span, div {
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}