:root {
    --bg-dark: #000000; /* Preto absoluto */
    --bg-card: #080808;
    --primary: #ff0000;
    --primary-glow: rgba(255, 0, 0, 0.4);
    --secondary: #0a0a0a;
    --text-main: #ffffff;
    --text-dim: #888888;
    --accent: #ff1a1a;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes glowPulse {
    0% { box-shadow: 0 0 5px var(--primary-glow); }
    50% { box-shadow: 0 0 20px var(--primary-glow); }
    100% { box-shadow: 0 0 5px var(--primary-glow); }
}

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



body {
    background: #000000 !important;
    background-image: radial-gradient(circle at 50% 50%, rgba(220, 20, 20, 0.25) 0%, rgba(0, 0, 0, 0) 70%) !important;
    background-attachment: fixed !important;
    background-size: cover !important;
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    padding-top: 80px;
}



/* FUNDO CINEMATOGRÁFICO PRETO PROFUNDO (SMOKE EDITION) */
.deep-black-bg { display: none !important; }

/* Efeito de Fumaça Global */
.smoke-wrap { display: none !important; }

.smoke-particle { display: none !important; }

@keyframes smokeFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.2; }
    33% { transform: translate(150px, -80px) scale(1.3); opacity: 0.4; }
    66% { transform: translate(-80px, 80px) scale(0.9); opacity: 0.3; }
}

/* Gradiente Vermelho Intenso */
.red-glow-static { display: none !important; }

/* Textura de Circuitos Tecnológicos */
.texture-overlay { display: none !important; }

.grid-overlay { display: none !important; }







/* Navbar Incrível */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 50px;
    z-index: 1000;
    padding: 10px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.navbar:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 0, 0, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 45px;
    filter: drop-shadow(0 0 5px var(--primary-glow));
}

.nav-links {
    display: flex;
    gap: 10px;
    list-style: none;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-btn {
    color: white;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    padding: 10px 18px;
    border-radius: 25px;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 5px rgba(255, 0, 0, 0.1);
}

.nav-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: shine 4s infinite;
}

.nav-btn i {
    animation: pulseIcon 2s infinite;
}

.nav-btn i {
    font-size: 0.9rem;
    color: var(--primary);
}

.nav-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--primary-glow);
    border-color: var(--primary);
}

.nav-btn:hover i {
    color: white;
}

.nav-btn-client {
    background: linear-gradient(135deg, var(--primary), #ff3333) !important;
    border: none !important;
    box-shadow: 0 0 15px var(--primary-glow) !important;
    color: white !important;
}

.nav-btn-client i {
    color: white !important;
    font-size: 1rem !important;
}

.nav-btn-client:hover {
    background: linear-gradient(135deg, #ff3333, var(--primary)) !important;
    box-shadow: 0 0 25px var(--primary-glow) !important;
    transform: scale(1.05) !important;
}

.nav-btn.active {
    background: var(--primary);
    border-color: var(--primary);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.6);
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
    border: 2px solid var(--bg-dark);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

/* Header & Logo */
header {
    text-align: center;
    animation: fadeIn 0.8s ease-out;
}

.logo {
    max-width: 180px;
    filter: drop-shadow(0 0 10px var(--primary-glow));
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-stylized {
    max-width: 600px;
    width: 100%;
    filter: drop-shadow(0 0 20px var(--primary-glow));
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 20px;
}

.logo-stylized:hover {
    transform: scale(1.05);
}

.logo:hover {
    transform: scale(1.1) rotate(2deg);
}

.hero-section {
    background: transparent !important;
    position: relative;
    padding: 100px 0 60px;
    background: radial-gradient(circle at center, rgba(255, 0, 0, 0.15) 0%, transparent 70%);
    overflow: hidden;
}

.hero-section::before { display: none !important; }

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-top: 20px;
    background: linear-gradient(to bottom, #fff 30%, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
    filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.3));
    animation: fadeIn 1s ease-out;
}

.hero-subtitle {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 50px;
}

/* Plans Grid */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    padding-bottom: 100px;
    align-items: stretch; /* Garante que todos os cards na mesma linha tenham a mesma altura */
}

.plan-card {
    background: linear-gradient(145deg, #0a0a0a, #2a0505) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 0, 0.8) !important;
    border-radius: 24px;
    padding: 45px 35px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    animation: fadeIn 1s ease-out;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

/* Borda Energizada para TODOS os Planos */
.plan-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: conic-gradient(transparent, transparent, transparent, #ff3333, #ff0000);
    animation: rotateBorder 3s linear infinite;
    z-index: -1;
    opacity: 0.6;
}

/* Luz de LED no fundo do card ao passar o mouse */
.plan-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 0, 0, 0.4) 0%, transparent 70%);
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
    pointer-events: none;
}

@keyframes rotateBorder {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.plan-card:hover::after {
    opacity: 1;
    animation: ledPulse 1.5s ease-in-out infinite;
}

@keyframes ledPulse {
    0%, 100% { box-shadow: inset 0 0 20px rgba(255, 0, 0, 0.2); }
    50% { box-shadow: inset 0 0 40px rgba(255, 0, 0, 0.4); }
}

.plan-card:hover {
    border-color: #ff0000 !important;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.6), 0 0 50px rgba(255, 0, 0, 0.3), inset 0 0 20px rgba(255, 0, 0, 0.1);
}

.plan-name {
    background: linear-gradient(to right, #fff, #ff4d4d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 15px;
}

/* Botão ORIGINAL Restaurado com Efeito Shine */
.btn-buy {
    background: linear-gradient(90deg, #cc0000, #ff0000) !important;
    color: #fff !important;
    border: none !important;
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 900 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
    text-align: center;
    text-decoration: none;
    display: block;
    margin-top: 0; /* Removido margin-top auto para o botão */
}

.btn-buy::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: rotate(45deg);
    animation: shineOriginal 4s infinite;
}

@keyframes shineOriginal {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

.btn-buy:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.6);
    background: linear-gradient(90deg, #ff0000, #ff4d4d) !important;
}

.btn-buy:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.5);
    background: linear-gradient(90deg, #ff0000, #ff4d4d) !important;
}

.plan-tag {
    background: rgba(255, 0, 0, 0.1);
    color: #fff;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    border: 1px solid var(--primary);
    margin-bottom: 20px;
    display: inline-block;
    align-self: flex-start;
}

.plan-god .plan-tag {
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 0, 0, 0.05), transparent);
    pointer-events: none;
}

.plan-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.plan-card:hover::before {
    transform: scaleX(1);
}

.plan-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 0, 0, 0.1);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid var(--primary);
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    color: var(--primary);
}

.plan-price span {
    font-size: 1rem;
    color: var(--text-dim);
    font-weight: 400;
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
}

.plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid #1a1a1a;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #fff;
}

.plan-features li i {
    color: var(--primary);
    margin-right: 12px;
    font-weight: bold;
}

.report-info {
    background: #151515;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.report-info div {
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.report-info b {
    color: var(--primary);
}

.btn-buy {
    display: block;
    width: 100%;
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-buy:hover {
    background: #ff3333;
    box-shadow: 0 0 20px var(--primary-glow);
    transform: scale(1.02);
}

/* Payment Page */
.payment-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
    animation: fadeIn 0.6s ease-out;
}

@media (max-width: 900px) {
    .payment-container { grid-template-columns: 1fr; }
}

.payment-box {
    background: var(--bg-card);
    border: 1px solid #222;
    padding: 40px;
    border-radius: 20px;
}

.pix-area {
    text-align: center;
}

.qr-placeholder {
    background: white;
    width: 220px;
    height: 220px;
    margin: 20px auto;
    padding: 10px;
    border-radius: 10px;
}

.pix-key-box {
    background: #151515;
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px dashed var(--primary);
}

.copy-btn {
    background: var(--primary);
    border: none;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dim);
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    background: #151515;
    border: 1px solid #333;
    padding: 15px;
    color: white;
    border-radius: 10px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-color: var(--primary);
    outline: none;
}

.checkout-summary {
    border-top: 1px solid #222;
    padding-top: 20px;
    margin-top: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.total {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

/* Chat Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: radial-gradient(circle at center, rgba(255, 0, 0, 0.05) 0%, transparent 70%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title span {
    color: var(--primary);
}

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

.chat-card {
    background: #0d0d0d;
    border: 1px solid #222;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 450px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s;
}

.chat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.chat-header {
    background: #1a1a1a;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #222;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: white;
}

.chat-user-info {
    display: flex;
    flex-direction: column;
}

.chat-user-name {
    font-weight: bold;
    font-size: 0.9rem;
}

.chat-status {
    font-size: 0.7rem;
    color: #25d366;
}

.chat-

body {
    background: #000000 !important;
    background-image: radial-gradient(circle at 50% 50%, rgba(220, 20, 20, 0.25) 0%, rgba(0, 0, 0, 0) 70%) !important;
    background-attachment: fixed !important;
    background-size: cover !important;
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    padding-top: 80px;
}



.message {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    position: relative;
}

.message.sent {
    align-self: flex-end;
    background: #056162;
    color: white;
    border-bottom-right-radius: 2px;
}

.message.received {
    align-self: flex-start;
    background: #262d31;
    color: white;
    border-bottom-left-radius: 2px;
}

.message-time {
    display: block;
    font-size: 0.65rem;
    text-align: right;
    margin-top: 5px;
    opacity: 0.6;
}

.chat-footer {
    background: #1a1a1a;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-input-mock {
    flex: 1;
    background: #2a2f32;
    height: 35px;
    border-radius: 20px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    color: #8696a0;
    font-size: 0.85rem;
}


/* Portfolio Page Styles */
.portfolio-header {
    text-align: center;
    padding: 80px 0 60px;
    background: radial-gradient(circle at center, rgba(255, 0, 0, 0.15) 0%, transparent 70%);
    animation: fadeIn 0.8s ease-out;
}

.portfolio-header .hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
}

.portfolio-header .hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-dim);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.portfolio-card {
    background: var(--bg-card);
    border: 1px solid #222;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    animation: fadeIn 0.6s ease-out;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.2);
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #1a1a1a;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-image .overlay {
    opacity: 1;
}

.game-tag {
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.portfolio-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: white;
}

.game-description {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex: 1;
    line-height: 1.5;
}

.game-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #222;
}

.stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-dim);
    flex: 1;
}

.stat i {
    color: var(--primary);
    font-size: 1rem;
}

.stat span {
    display: block;
    color: white;
    font-weight: 600;
}

.btn-budget {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-budget:hover {
    background: #ff3333;
    box-shadow: 0 0 20px var(--primary-glow);
    transform: translateY(-2px);
}

.portfolio-cta {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, rgba(255, 0, 0, 0.05) 100%);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 20px;
    margin: 80px 0;
    animation: fadeIn 1s ease-out;
}

.portfolio-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(to bottom, #fff 30%, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.portfolio-cta p {
    color: var(--text-dim);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

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

    .portfolio-header .hero-title {
        font-size: 2.5rem;
    }

    .game-stats {
        flex-direction: column;
    }
}


@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Campaign Duration Badge */
.campaign-badge {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 12px;
    padding: 12px 16px;
    margin-top: auto; /* Garante que o badge fique no final, antes do botão */
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center; /* Centraliza o conteúdo */
    gap: 10px;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    width: 100%;
    transition: all 0.3s ease;
}

.plan-card:hover .campaign-badge {
    background: rgba(255, 0, 0, 0.2);
    border-color: #ff0000;
    transform: translateY(-2px);
}

.campaign-badge i {
    font-size: 1.1rem;
    color: var(--primary);
    animation: spin 3s linear infinite; /* Alterado para spin para girar */
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Estilos de Relatórios - Timeline Cyber-Tech */
.reports-section {
    margin-top: 60px;
    position: relative;
}

.reports-header {
    margin-bottom: 50px;
}

.cyber-timeline {
    position: relative;
    padding-left: 40px;
}

.cyber-timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    box-shadow: 0 0 10px var(--primary-glow);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    animation: fadeIn 0.5s ease-out forwards;
}

.timeline-dot {
    position: absolute;
    left: -40px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: var(--bg-dark);
    border: 3px solid var(--primary);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 10px var(--primary-glow);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item.active .timeline-body {
    max-height: 1000px; /* Valor alto o suficiente para mostrar o conteúdo */
}

.timeline-header {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.timeline-header:hover {
    background: rgba(255, 0, 0, 0.05);
}

.timeline-date-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.timeline-date {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
}

.timeline-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dim);
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 4px;
}

.timeline-stats {
    display: flex;
    gap: 20px;
    align-items: center;
}

.timeline-stat {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.timeline-stat b {
    color: white;
}

.timeline-toggle {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    color: var(--primary);
}

.timeline-item.active .timeline-toggle {
    transform: rotate(180deg);
}

.timeline-item.active .timeline-content {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.1);
}

.timeline-

body {
    background: #000000 !important;
    background-image: radial-gradient(circle at 50% 50%, rgba(220, 20, 20, 0.25) 0%, rgba(0, 0, 0, 0) 70%) !important;
    background-attachment: fixed !important;
    background-size: cover !important;
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    padding-top: 80px;
}



.timeline-item.active .timeline-

body {
    background: #000000 !important;
    background-image: radial-gradient(circle at 50% 50%, rgba(220, 20, 20, 0.25) 0%, rgba(0, 0, 0, 0) 70%) !important;
    background-attachment: fixed !important;
    background-size: cover !important;
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    padding-top: 80px;
}



.links-grid-cyber {
    padding: 25px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.cyber-link-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
    transition: all 0.3s;
}

.cyber-link-card:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--primary-glow);
}

.cyber-link-icon {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.cyber-link-card:hover .cyber-link-icon {
    background: rgba(255, 255, 255, 0.2);
}

.cyber-link-text {
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.empty-state-cyber {
    text-align: center;
    padding: 60px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: var(--text-dim);
}

/* Animação Épica da Logo */
.logo-animated {
    animation: logoFloat 3s ease-in-out infinite, logoGlow 2s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 15px var(--primary-glow));
    max-width: 220px !important;
    margin-bottom: 10px;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes logoGlow {
    from {
        filter: drop-shadow(0 0 10px var(--primary-glow)) brightness(1);
    }
    to {
        filter: drop-shadow(0 0 30px var(--primary)) brightness(1.3);
    }
}

.hero-title {
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    letter-spacing: 5px;
}

/* Destaque Metodologia */
.nav-btn-highlight {
    border: 1px solid var(--primary) !important;
    box-shadow: 0 0 15px var(--primary-glow) !important;
    background: rgba(255, 0, 0, 0.2) !important;
    position: relative;
    overflow: hidden;
}

.nav-btn-highlight::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -150%;
    width: 50px;
    height: 200%;
    background: rgba(255, 255, 255, 0.5);
    transform: rotate(30deg);
    animation: shineEffect 3s infinite;
}

@keyframes shineEffect {
    0% { left: -150%; }
    20% { left: 150%; }
    100% { left: 150%; }
}

@keyframes shine {
    0% { left: -150%; }
    100% { left: 150%; }
}

@keyframes pulseIcon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes pulseIcon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Power Badge */
.power-badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary), #ff6600);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.9rem;
    margin-top: 15px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
    animation: pulseBadge 2s infinite;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes pulseBadge {
    0% { transform: scale(1); box-shadow: 0 0 20px rgba(255, 0, 0, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 35px rgba(255, 0, 0, 0.6); }
    100% { transform: scale(1); box-shadow: 0 0 20px rgba(255, 0, 0, 0.4); }
}

/* Hero Section Épico */
.hero-section-epic {
    position: relative;
    min-height: 100vh;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: -80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('assets/hero_bg_epic.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    overflow: hidden;
    border-bottom: 2px solid var(--primary);
    z-index: 2;
}

/* Overlay de Elite: Escurece a imagem para destacar o conteúdo e adiciona vinheta */
.hero-section-epic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.4) 0%, 
        rgba(0, 0, 0, 0.7) 50%, 
        rgba(0, 0, 0, 0.9) 100%),
        radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

/* Luzes Neon Dinâmicas sobre a imagem */
.hero-section-epic::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(255, 0, 0, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(255, 0, 0, 0.15) 0%, transparent 40%);
    z-index: 2;
    pointer-events: none;
    animation: neonFlicker 8s infinite alternate ease-in-out;
}

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

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.9) 30%, rgba(255,0,0,0.1) 100%);
    z-index: 1;
}

.hero-content-epic {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    padding: 60px;
    align-items: center;
    width: 100%;
    max-width: 1300px;
}

@media (max-width: 900px) {
    .hero-content-epic { grid-template-columns: 1fr; text-align: center; padding: 30px; }
    .hero-overlay { background: rgba(0,0,0,0.8); }
}

.logo-epic {
    width: 100%;
    max-width: 400px;
    filter: drop-shadow(0 0 30px var(--primary));
    animation: logoFloatEpic 4s ease-in-out infinite;
}

@keyframes logoFloatEpic {
    0%, 100% { transform: translateY(0) scale(1) rotate(0deg); filter: drop-shadow(0 0 20px var(--primary-glow)); }
    50% { transform: translateY(-20px) scale(1.05) rotate(2deg); filter: drop-shadow(0 0 40px var(--primary)); }
}

.hero-title-epic {
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(to bottom, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 20px rgba(255,0,0,0.5));
}

.hero-subtitle-epic {
    font-size: 1.2rem;
    letter-spacing: 5px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 30px;
}

.power-badge-epic {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 900;
    margin-bottom: 40px;
    box-shadow: 0 0 20px var(--primary-glow);
    animation: pulseBadge 2s infinite;
}

.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
}

.feature-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

.hero-stats-epic {
    display: flex;
    gap: 40px;
}

@media (max-width: 600px) {
    .hero-stats-epic { justify-content: center; gap: 20px; }
}

.stat-box-epic {
    border-left: 3px solid var(--primary);
    padding-left: 20px;
}

.stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.stat-desc {
    font-size: 0.7rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animação para a Vitrine de Jogos */
.games-showcase img {
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.games-showcase img:hover {
    transform: scale(1.03);
    box-shadow: 0 0 50px var(--primary);
}

/* Seção de Jogos Épica */
.games-showcase-epic {
    position: relative;
    padding: 100px 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: #050505;
    overflow: hidden;
    text-align: center;
}

.games-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(255,0,0,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.section-title-epic {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.section-title-epic span {
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary-glow);
}

.section-subtitle-epic {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.games-grid-epic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 0 50px;
    position: relative;
    z-index: 2;
}

.game-card-epic {
    position: relative;
    transition: all 0.4s ease;
}

.char-container {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.char-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
    z-index: 2;
}

.game-name-epic {
    margin-top: 20px;
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255,0,0,0.5);
}

/* Animações de Flutuação */
.char-float {
    animation: charFloat 4s ease-in-out infinite;
}

.char-float-alt {
    animation: charFloat 4s ease-in-out infinite reverse;
}

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

/* Efeitos de Aura e Fogo */
.char-effect {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
    mix-blend-mode: screen;
}

.fire-effect { background: radial-gradient(circle, rgba(255,68,0,0.4) 0%, transparent 70%); animation: pulseEffect 2s infinite; }
.lightning-effect { background: radial-gradient(circle, rgba(0,170,255,0.3) 0%, transparent 70%); animation: pulseEffect 1.5s infinite; }
.aura-effect { background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%); animation: pulseEffect 3s infinite; }
.smoke-effect { background: radial-gradient(circle, rgba(255,0,0,0.3) 0%, transparent 70%); animation: pulseEffect 2.5s infinite; }

@keyframes pulseEffect {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.7; }
}

/* Contador de Posts Épico */
.post-counter-epic {
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

.counter-box {
    display: inline-block;
    background: linear-gradient(135deg, #111, #222);
    padding: 30px 60px;
    border-radius: 100px;
    border: 2px solid var(--primary);
    box-shadow: 0 0 40px var(--primary-glow);
}

.counter-num {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    text-shadow: 0 0 20px var(--primary-glow);
}

.counter-text {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #fff;
}

/* Hover Effects */
.game-card-epic:hover .char-img {
    transform: scale(1.1) translateY(-10px);
    filter: drop-shadow(0 0 30px var(--primary));
}

.game-card-epic:hover .game-name-epic {
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary-glow);
}

/* Seção de Dominação Global Criativa */
.global-domination-section {
    padding: 100px 0;
    background: #000;
    text-align: center;
    overflow: hidden;
    position: relative;
}

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

.hud-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(255, 0, 0, 0.2);
    transition: transform 0.5s ease;
}

.hud-frame:hover {
    transform: rotateX(5deg) rotateY(-5deg) scale(1.02);
}

.main-showcase-img {
    width: 100%;
    display: block;
    filter: brightness(1.1) contrast(1.1);
}

.hud-overlay-elements {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 3;
}

.hud-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid var(--primary);
}

.hud-tl { top: 20px; left: 20px; border-right: 0; border-bottom: 0; }
.hud-tr { top: 20px; right: 20px; border-left: 0; border-bottom: 0; }
.hud-bl { bottom: 20px; left: 20px; border-right: 0; border-top: 0; }
.hud-br { bottom: 20px; right: 20px; border-left: 0; border-top: 0; }

.hud-line {
    position: absolute;
    background: rgba(255, 0, 0, 0.3);
    box-shadow: 0 0 10px var(--primary-glow);
}

.hud-line-1 { top: 50%; left: 0; width: 100%; height: 1px; animation: scanLine 4s infinite linear; }
.hud-line-2 { top: 0; left: 50%; width: 1px; height: 100%; }

@keyframes scanLine {
    0% { top: 0; opacity: 0; }
    50% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* Seção de Servidores Full-Width (Restaurada V8) */
.servers-full-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: #000;
    padding: 80px 0 0 0;
    text-align: center;
    overflow: hidden;
}

.section-header-clean {
    padding: 0 20px 40px 20px;
}

.panorama-container {
    width: 100%;
    line-height: 0;
}

.panorama-img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(1.1);
    transition: filter 0.5s ease;
}

.panorama-img:hover {
    filter: brightness(1.25);
}

/* --- Animações de Imagens Hypebund --- */

/* Animação de Brilho (Shine) */
@keyframes shineEffect {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

/* Efeito para as imagens do portfólio e panorama */
.plan-card div img, .panorama-img {
    transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1), filter 0.5s ease !important;
}

/* Container das imagens do portfólio para o efeito de brilho */
.plan-card div {
    position: relative;
    overflow: hidden;
}

.plan-card div::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: none;
    pointer-events: none;
}

/* Gatilho da animação ao passar o mouse no CARD */
.plan-card:hover div::after {
    animation: shineEffect 1.5s infinite;
}

.plan-card:hover div img {
    transform: scale(1.1);
    filter: brightness(1.2) contrast(1.1);
}

/* Ajuste específico para a imagem panorama da home */
.panorama-container {
    position: relative;
    overflow: hidden;
}

.panorama-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 30%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    pointer-events: none;
}

.panorama-container:hover::after {
    animation: shineEffect 2s infinite;
}

.panorama-container:hover .panorama-img {
    transform: scale(1.02);
    filter: brightness(1.2);
}

/* ============================================================
   ESTILO PORTFÓLIO ÉPICO (V13 SHINE + ACENSION STYLE)
   ============================================================ */

.portfolio-page {
    background: transparent;
}

.portfolio-page .container {
    position: relative;
    z-index: 10;
}

.epic-portfolio-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 40px 0 100px;
}

.epic-banner-card {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 0, 0, 0.2);
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: zoom-in;
}

.epic-banner-card:hover {
    transform: scale(1.01);
    border-color: var(--primary);
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.3);
}

.banner-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.6) 20%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.05) 100%);
    transition: all 0.5s ease;
    z-index: 1;
}

.epic-banner-card:hover .banner-overlay {
    background: linear-gradient(to right, rgba(0,0,0,0.8) 30%, rgba(0,0,0,0.3) 70%, rgba(0,0,0,0.1) 100%);
}

/* Modal Lightbox Styles */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    border: 2px solid var(--primary);
    border-radius: 10px;
    box-shadow: 0 0 50px var(--primary-glow);
    animation: modalZoom 0.3s ease-out;
}

@keyframes modalZoom {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.close-modal {
    position: absolute;
    top: 30px; right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.banner-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
}

.banner-header {
    margin-bottom: 30px;
}

.game-tag {
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 15px;
    box-shadow: 0 0 15px var(--primary-glow);
}

.game-title {
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 0 20px rgba(0,0,0,0.5);
    line-height: 1;
}

.game-stats-hud {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--primary);
    backdrop-filter: blur(5px);
    border-radius: 0 15px 15px 0;
}

.hud-item {
    display: flex;
    flex-direction: column;
}

.hud-label {
    font-size: 0.65rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.hud-value {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
}

.btn-epic-action {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    color: #000;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.btn-epic-action:hover {
    background: var(--primary);
    color: #fff;
    transform: translateX(10px);
    box-shadow: 0 0 30px var(--primary-glow);
}

.btn-epic-action i {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.btn-epic-action:hover i {
    transform: translateX(5px);
}

/* Efeito de Scanline no Banner */
.epic-banner-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), 
                linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
    z-index: 3;
    opacity: 0.3;
}

/* Responsividade para Banners */
@media (max-width: 768px) {
    .epic-banner-card {
        height: 400px;
    }
    .game-title {
        font-size: 2.2rem;
    }
    .banner-content {
        padding: 30px;
    }
    .game-stats-hud {
        flex-direction: column;
        gap: 15px;
    }
}

/* ============================================================
   MARKETING SLIDER (METODOLOGIA)
   ============================================================ */

.marketing-slider-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 650px;
    margin: 40px auto 100px;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 0, 0, 0.3);
    box-shadow: 0 30px 60px rgba(0,0,0,0.9);
}

.marketing-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.m-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: center;
    padding: 80px;
    transform: scale(1.1);
}

.m-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.m-slide-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.95) 20%, rgba(0,0,0,0.4) 60%, transparent 100%);
    z-index: 1;
}

.m-slide-content {
    position: relative;
    z-index: 2;
    max-width: 550px;
    color: #fff;
    animation: slideUpContent 0.8s ease-out forwards;
}

@keyframes slideUpContent {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.m-slide-tag {
    background: var(--primary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    display: inline-block;
    box-shadow: 0 0 20px var(--primary-glow);
}

.m-slide-title {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.m-slide-desc {
    font-size: 1.15rem;
    color: var(--text-dim);
    margin-bottom: 35px;
    line-height: 1.6;
}

.m-slide-features {
    display: flex;
    gap: 25px;
    margin-bottom: 45px;
}

.m-slide-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
}

.m-slide-features i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 80px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 30px;
}

.control-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.control-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--primary);
    width: 35px;
    border-radius: 10px;
    box-shadow: 0 0 15px var(--primary-glow);
}

/* Responsividade Slider */
@media (max-width: 768px) {
    .marketing-slider-container {
        height: 750px;
        margin: 20px 10px;
    }
    .m-slide {
        padding: 40px;
        align-items: flex-start;
        padding-top: 80px;
    }
    .m-slide-title {
        font-size: 2.5rem;
    }
    .slider-controls {
        left: 40px;
        bottom: 30px;
    }
}


/* ============================================================
   METHODOLOGY PAGE V2 - DOSSIÊ DE MARKETING
   ============================================================ */

.methodology-hero-v2 {
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(255,0,0,0.1) 100%);
    padding: 120px 0;
    text-align: center;
    border-bottom: 2px solid rgba(255, 0, 0, 0.3);
    margin-bottom: 80px;
}

.methodology-content-v2 {
    max-width: 1000px;
    margin: 0 auto;
}

.chapter-section {
    margin-bottom: 100px;
    padding: 60px 40px;
    background: rgba(255, 0, 0, 0.02);
    border-left: 4px solid var(--primary);
    border-radius: 10px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chapter-header {
    margin-bottom: 40px;
}

.chapter-number {
    display: inline-block;
    background: var(--primary);
    color: #000;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    box-shadow: 0 0 20px var(--primary-glow);
}

.chapter-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-top: 15px;
}

.chapter-

body {
    background: #000000 !important;
    background-image: radial-gradient(circle at 50% 50%, rgba(220, 20, 20, 0.25) 0%, rgba(0, 0, 0, 0) 70%) !important;
    background-attachment: fixed !important;
    background-size: cover !important;
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    padding-top: 80px;
}



.chapter-body.reverse {
    direction: rtl;
}

.chapter-body.reverse > * {
    direction: ltr;
}

.chapter-image {
    width: 100%;
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 0, 0.2);
    box-shadow: 0 20px 50px rgba(255, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.chapter-image:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(255, 0, 0, 0.2);
}

.chapter-image.right {
    order: 2;
}

.chapter-image.left {
    order: 1;
}

.chapter-body p {
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.chapter-body p strong {
    color: var(--primary);
    font-weight: 700;
}

.cta-section-method-v2 {
    background: linear-gradient(135deg, rgba(255,0,0,0.1) 0%, rgba(0,0,0,0.9) 100%);
    padding: 80px 60px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 0, 0, 0.3);
    margin: 100px 0;
}

.cta-section-method-v2 h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
}

.cta-section-method-v2 p {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 40px;
}

/* Responsividade */
@media (max-width: 900px) {
    .chapter-

body {
    background: #000000 !important;
    background-image: radial-gradient(circle at 50% 50%, rgba(220, 20, 20, 0.25) 0%, rgba(0, 0, 0, 0) 70%) !important;
    background-attachment: fixed !important;
    background-size: cover !important;
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    padding-top: 80px;
}


    
    .chapter-image.right,
    .chapter-image.left {
        order: 0 !important;
    }
    
    .chapter-title {
        font-size: 1.8rem;
    }
    
    .chapter-section {
        padding: 30px 20px;
    }
    
    .cta-section-method-v2 {
        padding: 50px 30px;
    }
    
    .cta-section-method-v2 h2 {
        font-size: 2rem;
    }
}

/* Background Animado de Partículas */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1; /* Fica atrás de tudo */
    background-color: #050505;
    background-image: radial-gradient(circle at center, rgba(255, 0, 0, 0.05) 0%, transparent 70%);
}

/* EFEITOS ATMOSFÉRICOS: FUMAÇA E BRASAS */
.smoke-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    opacity: 0.4;
}

.smoke-layer {
    position: absolute;
    width: 200%;
    height: 200%;
    background: url('https://www.transparenttextures.com/patterns/asfalt-dark.png'); /* Textura base para simular fumaça */
    filter: blur(50px) contrast(150%);
    opacity: 0.3;
}

.smoke-1 {
    background: radial-gradient(circle at 30% 50%, rgba(255, 0, 0, 0.2), transparent 50%);
    animation: smokeMove1 30s linear infinite;
}

.smoke-2 {
    background: radial-gradient(circle at 70% 30%, rgba(100, 0, 0, 0.15), transparent 60%);
    animation: smokeMove2 45s linear infinite;
}

.smoke-3 {
    background: radial-gradient(circle at 50% 80%, rgba(255, 0, 0, 0.1), transparent 40%);
    animation: smokeMove1 60s linear infinite reverse;
}

@keyframes smokeMove1 {
    0% { transform: translate(-25%, -25%) rotate(0deg); }
    100% { transform: translate(0%, 0%) rotate(360deg); }
}

@keyframes smokeMove2 {
    0% { transform: translate(0%, 0%) scale(1); }
    50% { transform: translate(-15%, -10%) scale(1.2); }
    100% { transform: translate(0%, 0%) scale(1); }
}

/* BRASAS (EMBERS) */
.embers-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.ember {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #ff4d00;
    border-radius: 50%;
    filter: blur(1px);
    box-shadow: 0 0 10px #ff0000, 0 0 20px #ff4d00;
    animation: emberRise var(--duration) linear infinite;
    opacity: 0;
}

@keyframes emberRise {
    0% { transform: translateY(110vh) translateX(0) scale(1); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translateY(-10vh) translateX(var(--drift)) scale(0); opacity: 0; }
}

/* RESTAURAÇÃO DOS CHATS COM DESIGN DE COMANDO */
.testimonials-section {
    padding: 120px 0;
    position: relative;
}

.chats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.chat-card {
    background: rgba(20, 20, 20, 0.8) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 0, 0, 0.2) !important;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    position: relative;
}

.chat-card::before {
    content: 'COMMUNICATION LINK: ACTIVE';
    position: absolute;
    top: 5px;
    right: 15px;
    font-size: 0.6rem;
    color: var(--primary);
    letter-spacing: 1px;
    font-weight: 900;
    opacity: 0.6;
}

.chat-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary) !important;
    box-shadow: 0 20px 50px rgba(255, 0, 0, 0.2);
}

.chat-header {
    background: rgba(255, 0, 0, 0.05);
    padding: 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 0, 0, 0.1);
}

.chat-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: white;
    margin-right: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.chat-user-name {
    display: block;
    font-weight: 800;
    color: #fff;
    font-size: 1rem;
}

.chat-status {
    font-size: 0.75rem;
    color: #4caf50;
    display: flex;
    align-items: center;
}

.chat-status::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #4caf50;
    border-radius: 50%;
    margin-right: 6px;
    box-shadow: 0 0 10px #4caf50;
}

.chat-

body {
    background: #000000 !important;
    background-image: radial-gradient(circle at 50% 50%, rgba(220, 20, 20, 0.25) 0%, rgba(0, 0, 0, 0) 70%) !important;
    background-attachment: fixed !important;
    background-size: cover !important;
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    padding-top: 80px;
}



.message {
    padding: 12px 18px;
    border-radius: 15px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
}

.message.sent {
    background: rgba(255, 0, 0, 0.15);
    color: #fff;
    border-bottom-left-radius: 2px;
    margin-right: 20%;
    border-left: 3px solid var(--primary);
}

.message.received {
    background: rgba(255, 255, 255, 0.05);
    color: #e0e0e0;
    border-bottom-right-radius: 2px;
    margin-left: 20%;
    text-align: right;
    border-right: 3px solid #fff;
}

.message-time {
    display: block;
    font-size: 0.7rem;
    opacity: 0.5;
    margin-top: 5px;
}

/* Estilos para o gradiente animado */
.animated-gradient-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, #0d0d0d, #1a1a1a, #0d0d0d);
    background-size: 600% 600%;
    animation: gradientAnimation 15s ease infinite;
    z-index: -2;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


/* Seção de Garantia Blindada - LUXO SUTIL */
.guarantee-section {
    position: relative;
    padding: 80px 60px;
    margin: 100px 0;
    background: #000000;
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 20px;
    overflow: hidden;
}

.guarantee-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 0, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.guarantee-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 900px) {
    .guarantee-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.guarantee-seal {
    display: flex;
    justify-content: center;
    align-items: center;
}

.seal-badge {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 3px solid var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.25), inset 0 0 20px rgba(255, 0, 0, 0.05);
    animation: sealPulse 3s ease-in-out infinite;
}

@keyframes sealPulse {
    0%, 100% {
        box-shadow: 0 0 40px rgba(255, 0, 0, 0.25), inset 0 0 20px rgba(255, 0, 0, 0.05);
    }
    50% {
        box-shadow: 0 0 50px rgba(255, 0, 0, 0.35), inset 0 0 25px rgba(255, 0, 0, 0.1);
    }
}

.seal-icon {
    font-size: 90px;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: bold;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.08);
        opacity: 0.9;
    }
}

@keyframes sealBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.seal-text {
    text-align: center;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.seal-days {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 5px;
    font-weight: 900;
    letter-spacing: 2px;
}

.seal-label {
    font-size: 12px;
    color: #fff;
}

.guarantee-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.guarantee-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(to right, #fff 0%, #ff4d4d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.guarantee-subtitle {
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.8;
}

.guarantee-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 0, 0, 0.05);
    border-left: 3px solid var(--primary);
    border-radius: 10px;
    transition: all 0.3s;
}

.guarantee-item:hover {
    background: rgba(255, 0, 0, 0.1);
    transform: translateX(10px);
}

.guarantee-item-icon {
    font-size: 24px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.guarantee-item-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.guarantee-item-title {
    font-weight: 800;
    color: #fff;
    font-size: 0.95rem;
}

.guarantee-item-desc {
    color: #fff;
    font-size: 0.85rem;
    line-height: 1.5;
}

.guarantee-cta {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary), #ff3333);
    color: white;
    padding: 18px 40px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: 2px solid var(--primary);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
    margin-top: 10px;
}

.guarantee-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.5);
    background: linear-gradient(90deg, #ff3333, var(--primary));
}



.hero-section, .hero-section::before, .hero-section::after { background: transparent !important; }

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
