:root {
    --primary-red: #cc0000; /* Vermelho não muito forte */
    --dark-bg: #121212;    /* Preto suave */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #ffffff;
    --text-dim: #b3b3b3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-main);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Container Externo para dar o espaçamento da borda */
.header-container {
    position: fixed;
    top: 20px; /* Distância do topo */
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 9999;
    padding: 0 20px;
}

/* A "Pílula" de Vidro */
.glass-nav {
    width: 100%;
    max-width: 1100px;
    background: rgba(18, 18, 18, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Efeito de Shadow sutil para profundidade */
.glass-nav:hover {
    border-color: rgba(204, 0, 0, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(204, 0, 0, 0.1);
}

/* Estado Normal do Header */
.glass-nav {
    /* ... seus estilos anteriores ... */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: padding, background; /* Avisa ao navegador para otimizar */
}

/* Estado quando o Scroll acontece (Acionado pelo JS) */
.glass-nav.nav-active {
    padding: 8px 20px !important;
    background: rgba(10, 10, 10, 0.9) !important;
    max-width: 1000px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(204, 0, 0, 0.2);
}

/* Logo Estilizada */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Kanit', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    color: #fff;
    letter-spacing: 1px;
}

.red-dot { color: #cc0000; }

/* Links de Navegação */
.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-item {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    position: relative;
}

.nav-item:hover {
    color: #fff;
}

/* Linha animada abaixo do link */
.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #cc0000;
    transition: 0.3s;
}

.nav-item:hover::after {
    width: 100%;
}

/* Botão Discord com Efeito Glow Lateral */
.btn-discord-glow {
    position: relative;
    background: #fff;
    color: #000;
    padding: 12px 24px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.8rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    transition: 0.3s;
}

.btn-discord-glow:hover {
    background: #cc0000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(204, 0, 0, 0.4);
}

.mobile-overlay {
    display: none; /* Escondido por padrão */
}

.mobile-menu-toggle {
    display: none; /* Escondido por padrão */
}

/* Animação simples de entrada */
@keyframes slideDown {
    from { transform: translateY(-100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.glass-nav {
    animation: slideDown 0.8s ease forwards;
}

/* Esconder menu desktop no mobile */
@media (max-width: 992px) {

    
    .character-wrapper {
        height: 200px;
    }

    .nav-links, .nav-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 10001;
    }

    .mobile-menu-toggle span {
        width: 30px;
        height: 2px;
        background: #fff;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 2px;
    }

    /* Transformação para o "X" quando ativo */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background: var(--primary-red);
    }
    .mobile-menu-toggle.active span:nth-child(2) {
        transform: rotate(-45deg);
        background: var(--primary-red);
    }

    /* Overlay do Menu */
    .mobile-overlay {
        position: fixed;
        top: 0;
        right: -120%; /* Começa fora da tela */
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.9);
        backdrop-filter: blur(25px) saturate(200%);
        -webkit-backdrop-filter: blur(25px) saturate(200%);
        z-index: 10000;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    }

    .mobile-overlay.active {
        right: -10%;
    }

    .mobile-links {
        list-style: none;
        text-align: center;
    }

    .mobile-links li {
        margin: 30px 0;
        opacity: 0;
        transform: translateY(20px);
        transition: 0.4s ease;
    }

    .mobile-overlay.active .mobile-links li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Delay na animação dos links (Escalonado) */
    .mobile-overlay.active .mobile-links li:nth-child(1) { transition-delay: 0.3s; }
    .mobile-overlay.active .mobile-links li:nth-child(2) { transition-delay: 0.4s; }
    .mobile-overlay.active .mobile-links li:nth-child(3) { transition-delay: 0.5s; }

    .mobile-links a {
        color: #fff;
        text-decoration: none;
        font-family: 'Kanit', sans-serif;
        font-size: 2.5rem;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .mobile-footer {
        margin-top: 50px;
        opacity: 0;
        transition: 0.5s ease 0.6s;
        display: flex;
        justify-content: center;
    }

    .mobile-overlay.active .mobile-footer {
        opacity: 1;
    }
}

/* --- FUNDO DE GRADE ANIMADO --- */
.grid-background {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -2;
    animation: moveGrid 30s linear infinite;
    mask-image: radial-gradient(circle at center, black, transparent 90%);
    -webkit-mask-image: radial-gradient(circle at center, black, transparent 90%);
}

@keyframes moveGrid {
    from { transform: rotate(0deg) translate(0, 0); }
    to { transform: rotate(0deg) translate(-60px, -60px); }
}

/* --- HERO LAYOUT --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}

.hero-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr; /* Dá ainda mais espaço para a imagem */
    align-items: center;
    gap: 0; /* Remove o gap para a imagem encostar no texto se necessário */
    position: relative;
}

/* --- BADGE STATUS --- */
.badge-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid rgba(255, 0, 0, 0.2);
    margin-bottom: 30px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #ff0000;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff0000;
    animation: pulse 1.5s infinite;
}

/* --- TIPOGRAFIA --- */
.headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1;
    color: #fff;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(90deg, #ff0000, #ff4d4d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* --- BOTÕES --- */
.cta-actions {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: linear-gradient(135deg, #cc0000, #800000);
    padding: 18px 30px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(204, 0, 0, 0.3);
    transition: 0.3s;
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 18px 30px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    backdrop-filter: blur(5px);
}

.btn-primary:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(204, 0, 0, 0.5); }
.btn-outline:hover { background: rgba(255, 255, 255, 0.05); border-color: #ff0000; }

/* --- VISUAL & GLASS CARD --- */
.character-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between; /* Centraliza para expandir para os lados */
    align-items: center;
    height: 100%;
}

#main-char {
    /* Em vez de max-width, vamos usar width em % do container e scale */
    width: 140%; /* Faz a imagem "vazar" para fora do grid de 50% */
    max-width: none; /* Remove restrições */
    height: auto;
    object-fit: contain;
    
    /* O SEGREDO: Se a imagem for pequena, o filter de drop-shadow ajuda a disfarçar a falta de nitidez */
    filter: drop-shadow(0 0 80px rgba(204, 0, 0, 0.4));
    
    animation: float 6s ease-in-out infinite;
    transform: translateX(5%); /* Ajuste de posição lateral */
    pointer-events: none; /* Evita que a imagem atrapalhe cliques em botões próximos */
}

/* Ajuste do Card para acompanhar a imagem maior */
.glass-card-mini {
    position: absolute;
    bottom: 20%; 
    right: -5%; /* Joga o card bem para a ponta, já que a imagem cresceu */
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 5; /* Garante que fique acima da imagem */
}
/* Ajustes de escala interna do Card */
.glass-card-mini .icon-box {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
}

.glass-card-mini .card-text strong {
    display: block;
    font-size: 0.85rem;
    color: #fff;
}

.glass-card-mini .card-text span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsividade para Celular */
@media (max-width: 992px) {
    .hero-layout {
        grid-template-columns: 1fr; /* Empilha no mobile */
        text-align: center;
    }
    
    .character-wrapper {
        justify-content: center;
        margin-top: 40px;
    }

    #main-char {
        max-height: 50vh;
        transform: translateX(0);
    }
    
    .glass-card-mini {
        right: 10%;
        bottom: 5%;
    }
}

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

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ============================================================
   SWIPER SHOWCASE - FULL CUSTOM CSS
   ============================================================ */

   /* --- SECTION INTRO REFORMULADA --- */
.section-intro {
    text-align: left;
    margin-bottom: 70px;
    position: relative;
    padding-left: 30px; /* Espaço para a barra lateral decorativa */
}

/* Barra Vertical Decorativa com Gradiente e Glow */
.section-intro::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-red), transparent);
    box-shadow: 4px 0 15px rgba(187, 10, 10, 0.4);
    border-radius: 2px;
}

/* Tag Superior (Badge) */
.section-intro .acc-id {
    font-family: 'Kanit', sans-serif;
    font-size: 0.8rem;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 10px;
    opacity: 0.9;
    font-weight: 700;
}

/* Título Principal com Tipografia Gamer */
.section-intro h2 {
    font-family: 'Kanit', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsivo */
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

/* Subtítulo / Descrição */
.section-intro p {
    font-size: 1.1rem;
    color: var(--text-dim);
    max-width: 600px;
    line-height: 1.6;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 20px;
    margin-left: -20px; /* Alinha visualmente com o h2 */
}

/* Elemento Decorativo de Fundo (Opcional - Estilo HUD) */
.section-intro::after {
    content: 'INVENTORY_v2.0';
    position: absolute;
    right: 0;
    top: 0;
    font-family: 'monospace';
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.05);
    letter-spacing: 2px;
    transform: rotate(90deg);
    transform-origin: right top;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 768px) {
    .section-intro {
        text-align: center;
        padding-left: 0;
    }
    
    .section-intro::before {
        display: none; /* Remove a barra lateral no mobile para centralizar */
    }
    
    .section-intro p {
        margin: 0 auto;
        border-left: none;
        padding-left: 0;
    }

    .section-intro::after {
        display: none;
    }
}

/* 1. Container Principal */
.showcase-section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.showcase-slider {
    width: 100%;
    padding: 20px 0 80px 0; /* Espaço para não cortar o card no hover */
    overflow: visible !important; /* Permite que o card flutue para fora se necessário */
}

/* 2. O Card (Slide) */
.account-panel {
    opacity: 0 !important; /* Esconde slides inativos para o efeito Fade */
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}

.account-panel.swiper-slide-active {
    opacity: 1 !important;
    pointer-events: auto;
}

.panel-glass {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
}

/* 3. Visual da Skin (Lado Esquerdo) */
.account-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.char-display {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(187, 10, 10, 0.4));
    animation: float 6s ease-in-out infinite;
}

/* 4. Conteúdo de Texto (Lado Direito) */
.acc-id {
    font-family: 'Kanit', sans-serif;
    color: #bb0a0a;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.acc-title {
    font-family: 'Kanit', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 30px;
    text-transform: uppercase;
}

/* 5. Grid de Inventário (HUD) */
.inventory-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.inv-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
}

.inv-item::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #bb0a0a;
    box-shadow: 0 0 10px #ff1a1a;
    border-radius: 50%;
}

.inv-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(187, 10, 10, 0.5);
    color: #fff;
}

/* 6. Botão de Ação */
.btn-inspect {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    border-radius: 16px;
    text-transform: uppercase;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-inspect:hover {
    background: #bb0a0a;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(187, 10, 10, 0.4);
}

/* 7. Controles (Botões e Paginação) */
.swiper-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.custom-nav-btn {
    position: static !important;
    width: 60px !important;
    height: 60px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 50% !important;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: 0.4s !important;
}

.custom-nav-btn:after {
    font-family: swiper-icons;
    font-size: 20px !important;
    color: #fff !important;
}

.custom-nav-btn:hover {
    background: #bb0a0a !important;
    border-color: #bb0a0a !important;
    box-shadow: 0 0 20px rgba(187, 10, 10, 0.5);
    transform: scale(1.1);
}

.custom-pagination {
    position: static !important;
    width: auto !important;
    display: flex;
    gap: 12px;
}

.custom-pagination .swiper-pagination-bullet {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    opacity: 1;
    border-radius: 4px;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-pagination .swiper-pagination-bullet-active {
    background: #bb0a0a;
    width: 80px;
    box-shadow: 0 0 15px rgba(187, 10, 10, 0.6);
}

/* 8. Responsividade */
@media (max-width: 992px) {

    .hero-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: center;
    }

    .panel-glass {
        grid-template-columns: 1fr;
        padding: 40px 25px;
        gap: 30px;
        text-align: center;
    }

    .char-display {
        max-height: 350px;
        margin-bottom: 20px;
    }

    .inventory-preview {
        grid-template-columns: 1fr;
    }

    .swiper-controls {
        gap: 20px;
    }

    .custom-pagination .swiper-pagination-bullet {
        width: 25px;
    }
    
    .custom-pagination .swiper-pagination-bullet-active {
        width: 50px;
    }
}

/* Animação de Flutuar */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Features Segurança do cliente */

.features-section {
    padding: 60px 0;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Efeito de luz no Hover */
.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #bb0a0a;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(187, 10, 10, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(187, 10, 10, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #bb0a0a;
    border: 1px solid rgba(187, 10, 10, 0.2);
    transition: 0.4s;
}

.feature-card:hover .feature-icon {
    background: #bb0a0a;
    color: #fff;
    box-shadow: 0 0 20px #bb0a0a;
}

.feature-info h3 {
    font-family: 'Kanit', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.feature-info p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Responsividade */
@media (max-width: 768px) {
    .feature-card {
        padding: 30px;
        text-align: center;
        align-items: center;
    }
}   

/* --- SEÇÃO DE VENDAS/INTERMEDIAÇÃO --- */
.sell-section {
    padding: 100px 0;
    position: relative;
}

/* Painel de Vidro Principal (Geralmente ocupa a largura total do container) */
.panel-sell-glass {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Divide entre texto e fotos */
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

/* --- LADO DO TEXTO --- */
.sell-info {
    padding: 60px;
}

.badge-red {
    background: rgba(187, 10, 10, 0.15);
    color: #ff1a1a;
    padding: 6px 15px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.sell-info h2 {
    font-family: 'Kanit', sans-serif;
    font-size: 2.5rem;
    margin: 20px 0;
    line-height: 1.1;
}

.sell-info p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
}

/* Lista de Passos do Processo */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-num {
    background: #bb0a0a;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.8rem;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(187, 10, 10, 0.4);
}

.step-txt strong {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.step-txt span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Botão de Venda */
.btn-sell {
    display: inline-block;
    padding: 20px 40px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 800;
    border-radius: 15px;
    transition: 0.3s;
}

.btn-sell:hover {
    background: #bb0a0a;
    color: #fff;
    box-shadow: 0 15px 30px rgba(187, 10, 10, 0.4);
}

/* --- LADO DAS GARANTIAS (GRID DE PRINTS) --- */
/* --- CONTAINER DA VITRINE DE PROVAS MODERNA --- */
.guarantee-showcase-modern {
    padding: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    position: relative;
    min-height: 500px; /* Garante espaço para a animação */
}

/* --- ESTILO DA PILHA (STACK) --- */
.proof-stack {
    position: relative;
    width: 280px;
    height: 380px;
    margin-top: 40px;
}

/* --- ESTILO DOS CARDS INDIVIDUAIS --- */
.proof-card-fancy {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1); /* Transição suave de mola */
    cursor: pointer;
    background: #1a1a1a;
}

.proof-card-fancy img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: 0.3s;
}

/* --- TAG DE LEGENDA NOS CARDS --- */
.proof-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #bb0a0a;
    color: #fff;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 800;
    transform: translateY(50px); /* Escondida inicialmente */
    transition: 0.4s;
}

/* --- POSICIONAMENTO INICIAL DA PILHA (Efeito de profundidade) --- */
.item-1 { transform: rotate(-5deg) translateY(0); z-index: 3; }
.item-2 { transform: rotate(0deg) translateY(10px) scale(0.95); z-index: 2; opacity: 0.7; }
.item-3 { transform: rotate(5deg) translateY(20px) scale(0.90); z-index: 1; opacity: 0.5; }

/* --- EFEITO AO PASSAR O MOUSE NO CONTAINER (O Segredo!) --- */
.proof-stack:hover .item-1 {
    transform: rotate(-15deg) translateX(-120px) translateY(-20px);
    opacity: 1;
}

.proof-stack:hover .item-2 {
    transform: rotate(0deg) translateY(-40px) scale(1.05);
    opacity: 1;
    z-index: 4; /* Traz o card do meio para frente no hover */
}

.proof-stack:hover .item-3 {
    transform: rotate(15deg) translateX(120px) translateY(-20px);
    opacity: 1;
}

/* Revela a tag e clareia a imagem no hover */
.proof-stack:hover .proof-tag {
    transform: translateY(0);
}
.proof-stack:hover img {
    opacity: 1;
}

/* --- ÍCONE DE INSTRUÇÃO --- */
.proof-instruction {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    gap: 10px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -10px); }
}

.proof-card-fancy {
    /* Evita que o usuário selecione a imagem sem querer ao tocar rápido */
    user-select: none;
    -webkit-user-drag: none;
}

.proof-card-fancy {
    /* Evita que o usuário selecione a imagem sem querer ao tocar rápido */
    user-select: none;
    -webkit-user-drag: none;
}

/* --- SOLUÇÃO DEFINITIVA PARA MOBILE (SEM SAIR DA TELA) --- */
@media (max-width: 768px) {

    .hide-mobile { 
        display: none; 
    }
    .show-mobile { 
        display: block; 
        font-size: 0.8rem;
        color: var(--primary-red); /* Cor de destaque para o aviso de toque */
        font-weight: 600;
    }

    /* Muda o ícone da instrução para algo mais mobile */
    .proof-instruction i {
        content: "\f25a"; /* Código FontAwesome para 'hand-pointer' */
    }

    .guarantee-showcase-modern {
        padding: 40px 10px;
        overflow: hidden; 
        min-height: 400px;
    }

    /* 2. Reduzimos um pouco o tamanho base da pilha */
    .proof-stack {
        width: 160px; /* Largura menor para sobrar espaço nas laterais */
        height: 240px;
        margin: 0 auto;
    }

    /* 3. Posição inicial dos cards (Pilha fechada) */
    .item-1 { transform: rotate(-5deg); }
    .item-2 { transform: rotate(0deg); }
    .item-3 { transform: rotate(5deg); }

    /* 4. O EFEITO DE ABRIR PARA OS LADOS (Calculado para telas estreitas) */
    .proof-stack:hover .item-1 {
        /* Move só 70px para a esquerda e inclina mais */
        transform: rotate(-15deg) translateX(-75px) translateY(-10px);
        opacity: 1;
    }

    .proof-stack:hover .item-2 {
        /* O do meio apenas sobe levemente e ganha destaque */
        transform: rotate(0deg) translateY(-30px) scale(1.1);
        opacity: 1;
        z-index: 10;
    }

    .proof-stack:hover .item-3 {
        /* Move só 70px para a direita e inclina mais */
        transform: rotate(15deg) translateX(75px) translateY(-10px);
        opacity: 1;
    }

    /* 5. Ajuste das Tags para não sobrepor o texto */
    .proof-tag {
        font-size: 0.55rem;
        padding: 3px 8px;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%) translateY(40px);
        white-space: nowrap; /* Impede o texto de quebrar linha */
    }

    .proof-stack:hover .proof-tag {
        transform: translateX(-50%) translateY(0);
    }
}


@media (max-width: 992px) {
    .panel-sell-glass {
        grid-template-columns: 1fr; /* Garante que as colunas virem uma só */
        display: flex;
        flex-direction: column;
    }

    .guarantee-showcase-modern {
        width: 100%;
        padding: 20px 0 100px 0; /* Espaço embaixo para o leque subir */
        overflow: hidden; /* Proteção extra */
    }
}

/* Ajuste para telas MUITO pequenas (iPhone SE, etc) */
@media (max-width: 380px) {
    .proof-stack {
        width: 180px;
        height: 260px;
    }

    .proof-stack:hover .item-1 {
        transform: rotate(-10deg) translateX(-50px) translateY(-10px);
    }
    .proof-stack:hover .item-3 {
        transform: rotate(10deg) translateX(50px) translateY(-10px);
    }
}


/* --- SEÇÃO FAQ PRINCIPAL --- */
.faq-section {
    padding: 80px 0;
    position: relative;
}

.faq-container {
    max-width: 800px; /* Mantém o FAQ centralizado e legível */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Espaço entre cada pergunta */
}

/* --- ITEM INDIVIDUAL DO FAQ --- */
.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden; /* Garante que a resposta não vaze antes de abrir */
    transition: 0.3s all ease;
}

/* Estilo quando o FAQ está aberto */
.faq-item.active {
    border-color: rgba(187, 10, 10, 0.5);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* --- BOTÃO DA PERGUNTA --- */
.faq-question {
    width: 100%;
    padding: 25px;
    background: none;
    border: none;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    color: #fff;
    font-family: 'Kanit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-question i {
    color: #bb0a0a; /* Cor do ícone de seta */
    transition: 0.4s transform cubic-bezier(0.4, 0, 0.2, 1);
}

/* Gira a seta quando ativo */
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* --- ÁREA DA RESPOSTA --- */
.faq-answer {
    max-height: 0; /* Começa fechado */
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.2); /* Fundo levemente mais escuro para a resposta */
}

.faq-answer p {
    padding: 0 25px 25px 25px; /* Espaçamento interno da resposta */
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* --- CONFIGURAÇÃO GERAL DO RODAPÉ --- */
.main-footer {
    background: linear-gradient(to top, #050505, #0d0d0d); /* Degradê sutil para o fundo */
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* Linha divisória fina */
    margin-top: 100px;
}

/* --- GRID DO RODAPÉ --- */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr; /* Colunas com tamanhos variados */
    gap: 60px;
    margin-bottom: 60px;
}

/* --- ESTILO DA COLUNA LOGO/DESCRIÇÃO --- */
.footer-logo {
    font-family: 'Kanit', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.logo-text .red-dot {
    color: var(--primary-red);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

/* --- BOTÕES SOCIAIS --- */
.social-links {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.social-btn:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(187, 10, 10, 0.3);
}

/* --- LINKS DE NAVEGAÇÃO --- */
.footer-links h4, .footer-status h4 {
    font-family: 'Kanit', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 25px;
    letter-spacing: 2px;
    color: var(--primary-red);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: #fff;
    padding-left: 10px; /* Efeito de slide ao passar o mouse */
}

/* --- CARD DE STATUS DO SERVIDOR --- */
.status-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 20px;
}

.status-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.status-line:last-child {
    margin-bottom: 0;
}

.status-tag {
    color: #fff;
    font-weight: 700;
    font-size: 0.75rem;
}

.status-tag.online {
    color: #00ff88; /* Verde para Online */
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

/* Animação Pulse para o status das contas */
.status-tag.pulse {
    color: var(--primary-red);
    animation: textPulse 2s infinite;
}

@keyframes textPulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* --- BARRA DE COPYRIGHT FINAL --- */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

.dev-credit i {
    color: var(--primary-red);
}

/* --- RESPONSIVIDADE DO FOOTER --- */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr; /* Colunas empilham no tablet/celular */
        gap: 40px;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
}

