:root {
    --bg-color: #05080a;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --primary: #00C2FF;
    --primary-hover: #00a0d6;
    --gradient-start: #00C2FF;
    --gradient-end: #10B981;
    --input-bg: #050505;
    --input-border: #00C2FF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 120vh;
    overflow-x: hidden;
}

.container {
    position: relative;
    width: 100%;
    padding-top: 0; /* Espaço extra removido conforme solicitado */
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 20; /* Fica por cima do header */
}

.glow {
    position: absolute;
    top: 150vh; /* Movido mais para baixo para brilhar atrás do conteúdo */
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    max-width: 600px;
    max-height: 600px;
    background: radial-gradient(circle, rgba(0, 194, 255, 0.15) 0%, rgba(5, 8, 10, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem; /* Reduzido de 1.5rem para aproximar todos os elementos (título, texto, botões) */
    background: var(--bg-color);
    width: 100%;
    padding: 6rem 2rem 10rem;
    border-top: 1px solid rgba(0, 194, 255, 0.2);
    box-shadow: 0 -20px 50px rgba(0,0,0,0.8); /* Sombra projetada para cima */
    animation: fadeIn 1s ease-out forwards;
}

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px; /* Ícone mais próximo */
    background: rgba(0, 194, 255, 0.1);
    color: var(--primary);
    padding: 0.4rem 0.8rem; /* Botão menor */
    border-radius: 50px;
    font-size: 0.7rem; /* Fonte menor para caber em 1 linha */
    font-weight: 700;
    border: 1px solid rgba(0, 194, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.02em; /* Menos espaçamento de letra para ajudar a caber */
    text-align: left; /* Alinhamento à esquerda evita que o ícone fique longe quando quebra linha */
    line-height: 1.2;
    max-width: 95%; /* Evita vazar da tela no mobile */
}

.badge svg {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
}

.site-header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh; /* Restaura PC */
    padding: 3rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: linear-gradient(90deg, rgba(0, 194, 255, 0.15) 0%, rgba(5, 8, 10, 0.85) 15%, rgba(5, 8, 10, 0.85) 85%, rgba(0, 194, 255, 0.15) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0, 194, 255, 0.1);
}

.site-header.scrolled {
    background: linear-gradient(90deg, rgba(0, 194, 255, 0.02) 0%, rgba(2, 4, 5, 0.98) 5%, rgba(2, 4, 5, 0.98) 95%, rgba(0, 194, 255, 0.02) 100%);
}

.header-logo {
    width: 100%;
    max-width: 450px; /* Restaura PC */
    height: auto;
    transition: max-width 0.5s ease-out, transform 0.5s ease-out, filter 0.5s ease-out;
    animation: floatingGlow 3s ease-in-out infinite alternate;
}

.site-header.scrolled .header-logo {
    max-width: 250px; /* Restaura PC */
    transform: translateY(-50px); /* Sobe um pouquinho */
    animation: none;
    filter: drop-shadow(0 0 10px rgba(0, 194, 255, 0.3));
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    opacity: 0.8;
    animation: bounce 2s infinite;
    transition: opacity 0.4s ease;
}


.site-header.scrolled .scroll-indicator {
    opacity: 0;
    pointer-events: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes floatingGlow {
    0% {
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 0 15px rgba(0, 194, 255, 0.4));
    }
    100% {
        transform: translateY(-5px) scale(1.08);
        filter: drop-shadow(0 25px 50px rgba(16, 185, 129, 0.9));
    }
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1; /* Restaura PC */
    margin-top: 1.5rem; /* Restaura PC */
    margin-bottom: 0.5rem;
    animation: fadeIn 1s ease-out forwards;
    color: var(--text-main);
}

#typewriter {
    color: var(--primary); /* Azul cyan super dev */
    text-shadow: 0 0 10px rgba(0, 194, 255, 0.4);
}

.cursor {
    color: var(--primary);
    font-weight: 400;
    animation: blink 1s step-end infinite;
}

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

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    max-width: 800px;
    width: 90%;
    line-height: 1.15;
    margin: 0 auto 0.5rem auto;
    padding: 0;
    text-align: center;
}

.action-dock {
    display: grid;
    grid-template-columns: auto auto;
    gap: 1rem;
    padding: 1.2rem;
    margin-top: 2rem;
    background: rgba(0, 0, 0, 0.15); /* Fundo com mais transparência (15% preto) */
    border: 1px solid rgba(255, 255, 255, 0.08); /* Borda fina clara para efeito de relevo */
    border-radius: 24px; /* Mais arredondado como um card/dashboard */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.action-dock .dock-btn:nth-child(3) {
    grid-column: 1 / -1; /* Ocupa as duas colunas */
    justify-self: center; /* Centraliza no meio da linha de baixo */
}

@media (max-width: 768px) {
    .action-dock {
        grid-template-columns: 1fr; /* Em telas menores, um em cima do outro */
        border-radius: 16px;
    }
    .action-dock .dock-btn:nth-child(3) {
        grid-column: auto;
    }
}

/* --- SEÇÃO: O ARSENAL (DETALHES DO PACOTE) --- */
.arsenal-section {
    width: 100%;
    max-width: 1200px;
    padding: 6rem 2rem;
    margin: 0 auto;
    position: relative;
    z-index: 20;
}

.arsenal-header {
    text-align: center;
    margin-bottom: 4rem;
}

.arsenal-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.arsenal-header .highlight {
    color: var(--primary);
    text-shadow: 0 0 20px rgba(0, 194, 255, 0.4);
}

.arsenal-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.arsenal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.arsenal-card {
    background: rgba(5, 8, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    
    /* Efeito System Boot (Invisível no início) */
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

/* Estado ligado via Javascript */
.arsenal-card.boot-active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Atrasos em Cascata para os 6 Cards */
.arsenal-card:nth-child(1) { transition-delay: 0.1s; }
.arsenal-card:nth-child(2) { transition-delay: 0.3s; }
.arsenal-card:nth-child(3) { transition-delay: 0.5s; }
.arsenal-card:nth-child(4) { transition-delay: 0.7s; }
.arsenal-card:nth-child(5) { transition-delay: 0.9s; }
.arsenal-card:nth-child(6) { transition-delay: 1.1s; }

.arsenal-card:hover {
    transition-delay: 0s !important; /* Reseta o delay no hover para ser instantâneo */
    transform: translateY(-10px) scale(1);
    border-color: rgba(0, 194, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 194, 255, 0.15) inset;
    background: rgba(10, 15, 20, 0.8);
}

.card-header-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-header-row h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
    color: var(--text-main);
    line-height: 1.2;
}

.card-header-row .card-icon {
    width: 45px;
    height: 45px;
    background: rgba(0, 194, 255, 0.1);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    margin-bottom: 0; /* Margem removida pois agora está no flex */
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.arsenal-card:hover .card-icon {
    background: var(--primary);
    color: #05080a;
    box-shadow: 0 0 15px rgba(0, 194, 255, 0.5);
}

.arsenal-card > p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1; /* Empurra o link para baixo, se houver */
}

.card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.card-content p {
    color: var(--text-muted);
    line-height: 1.5;
    font-size: 0.9rem;
}

.card-content p strong {
    color: var(--text-main);
    font-weight: 600;
}

.custom-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 1rem; /* Espaço garantido antes do botão */
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.custom-list li {
    position: relative;
    padding-left: 1.2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

.custom-list li::before {
    content: "▹"; /* Símbolo moderno tipo terminal */
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 1.2rem;
    line-height: 1.1;
    top: -2px;
}

.custom-list li strong {
    color: var(--text-main);
    font-weight: 600;
}

.btn-youtube {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: rgba(255, 51, 68, 0.1);
    color: #ff3344;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    border: 1px solid rgba(255, 51, 68, 0.3);
    transition: all 0.3s ease;
    margin-top: auto; /* Mantém o botão sempre no fundo do card */
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-youtube:hover {
    background: rgba(255, 51, 68, 0.2);
    border-color: #ff3344;
    box-shadow: 0 0 15px rgba(255, 51, 68, 0.4);
    transform: translateY(-3px);
    color: #ffffff;
}

.btn-youtube svg polygon {
    fill: transparent;
    transition: all 0.3s ease;
}

.btn-youtube:hover svg polygon {
    fill: currentColor;
}

.tag-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 194, 255, 0.1);
    color: var(--primary) !important;
    padding: 0.3rem 0.8rem;
    border-radius: 50px; /* Formato de pílula arredondada (círculo) */
    font-size: 0.75rem !important;
    font-weight: 600;
    border: 1px solid rgba(0, 194, 255, 0.2);
}

/* --- CARD BÔNUS (DESTAQUE DOURADO) --- */
.arsenal-card.bonus-card {
    border-color: rgba(255, 215, 0, 0.3);
    background: linear-gradient(160deg, rgba(255, 215, 0, 0.05) 0%, rgba(5, 8, 10, 0.8) 100%);
    animation: pulse-gold-card 2.5s infinite;
}

.arsenal-card.bonus-card:hover {
    border-color: rgba(255, 215, 0, 0.8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.2) inset !important;
    animation: none; /* Para a pulsação no hover para focar no destaque estático */
}

.arsenal-card.bonus-card .card-icon {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.arsenal-card.bonus-card:hover .card-icon {
    background: #ffd700;
    color: #05080a;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.arsenal-card.bonus-card h3 {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.bonus-tag {
    color: #ffd700 !important;
    background: rgba(255, 215, 0, 0.1) !important;
    border-color: rgba(255, 215, 0, 0.3) !important;
}

.btn-youtube.btn-bonus {
    background: rgba(255, 215, 0, 0.15);
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.5);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.btn-youtube.btn-bonus:hover {
    background: rgba(255, 215, 0, 0.3);
    border-color: #ffd700;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
    color: #ffffff;
    transform: translateY(-3px) scale(1.02);
}

@keyframes pulse-gold-card {
    0% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.05) inset, 0 0 0 0 rgba(255, 215, 0, 0.15);
    }
    70% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.05) inset, 0 0 0 20px rgba(255, 215, 0, 0);
    }
    100% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.05) inset, 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

.card-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.card-link span {
    transition: transform 0.3s ease;
}

.card-link:hover {
    text-shadow: 0 0 10px rgba(0, 194, 255, 0.6);
}

.card-link:hover span {
    transform: translateX(5px);
}

/* ======================== */
/* ACTION HUD (BOTOES HERO) */
/* ======================== */
.action-hud {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 800px;
    margin-top: 3rem; /* Restaura PC */
    position: relative;
    padding: 2rem 0;
}

.hud-secondary-nodes {
    display: flex;
    justify-content: center;
    gap: 2rem;
    width: 100%;
}

.hud-power-line {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 1.5rem 0;
}

.hud-energy-core {
    display: none; /* Escondendo o ponto brilhante */
}

.hud-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.secondary-btn {
    padding: 1rem 2rem; /* Restaura PC */
    font-size: 0.95rem; /* Restaura PC */
    font-weight: 700;
    color: white;
    background: linear-gradient(90deg, #1e40af, #0d9488);
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 194, 255, 0.15), 0 0 20px rgba(0, 194, 255, 0.4); /* Efeito de luz do título */
}

.secondary-btn:hover {
    background: linear-gradient(90deg, #2563eb, #14b8a6);
    box-shadow: 0 6px 25px rgba(0, 194, 255, 0.3), 0 0 30px rgba(0, 194, 255, 0.6);
    transform: translateY(-2px);
}

.gold-btn {
    padding: 1.2rem 3rem; /* Restaura PC */
    font-size: 1.1rem; /* Restaura PC */
    font-weight: 800;
    color: #111;
    background: linear-gradient(90deg, #d4af37, #f3e5ab, #d4af37);
    background-size: 200% auto;
    border: none;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4), 0 0 10px rgba(255, 255, 255, 0.5) inset;
    animation: gold-shine 3s linear infinite;
}

@keyframes gold-shine {
    to { background-position: 200% center; }
}

.gold-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.6), 0 0 20px rgba(255, 255, 255, 0.8) inset;
}

@media (max-width: 600px) {
    .hud-secondary-nodes {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .secondary-btn {
        width: 100%;
        max-width: 300px;
    }
    .gold-btn {
        width: 100%;
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }
}

.dock-btn.ghost {
    background: transparent;
    color: #94a3b8;
}

.dock-btn.ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    color: white;
}

.dock-btn svg {
    transition: transform 0.3s ease;
}

.dock-btn.primary:hover svg {
    transform: translateY(2px);
}

/* ======================== */
/* MODAL: CENTRAL DE DOWNLOAD */
/* ======================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    position: relative;
    background: linear-gradient(160deg, rgba(15, 23, 42, 0.95) 0%, rgba(5, 8, 10, 0.98) 100%);
    border: 1px solid rgba(0, 194, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 700px;
    width: 90%;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 194, 255, 0.08) inset;
    transform: scale(0.9) translateY(30px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 70, 70, 0.15);
    border-color: rgba(255, 70, 70, 0.4);
    color: #ff4646;
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-badge {
    display: inline-block;
    background: rgba(0, 194, 255, 0.1);
    color: var(--primary);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border: 1px solid rgba(0, 194, 255, 0.2);
    margin-bottom: 1rem;
}

.modal-header h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.4rem;
}

.modal-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.modal-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.35s ease;
    cursor: pointer;
    gap: 0.8rem;
}

.modal-option:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 194, 255, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.modal-option-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
}

.modal-option-icon.video-icon {
    background: rgba(255, 51, 68, 0.12);
    color: #ff3344;
    border: 1px solid rgba(255, 51, 68, 0.25);
}

.modal-option:hover .video-icon {
    background: #ff3344;
    color: white;
    box-shadow: 0 0 25px rgba(255, 51, 68, 0.5);
}

.modal-option-icon.doc-icon {
    background: rgba(0, 194, 255, 0.12);
    color: var(--primary);
    border: 1px solid rgba(0, 194, 255, 0.25);
}

.modal-option:hover .doc-icon {
    background: var(--primary);
    color: var(--bg-color);
    box-shadow: 0 0 25px rgba(0, 194, 255, 0.5);
}

.modal-option-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #ff3344;
    background: rgba(255, 51, 68, 0.1);
    padding: 0.2rem 0.7rem;
    border-radius: 50px;
}

.modal-option-label.doc-label {
    color: var(--primary);
    background: rgba(0, 194, 255, 0.1);
}

.modal-option h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.modal-option p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.modal-option-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.3s ease;
    padding-top: 0.5rem;
}

.modal-option:hover .modal-option-cta {
    color: var(--primary);
}

.modal-option-cta svg {
    transition: transform 0.3s ease;
}

.modal-option:hover .modal-option-cta svg {
    transform: translate(3px, -3px);
}

/* Responsividade do Modal */
@media (max-width: 600px) {
    .modal-grid {
        grid-template-columns: 1fr;
    }
    .modal-container {
        padding: 1.5rem;
    }
    .modal-header h2 {
        font-size: 1.3rem;
    }
}

/* Estilo do botão dock quando é um button (modal trigger) */
button.dock-btn {
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

/* ======================== */
/* SEÇÃO: POR DENTRO DO CÓDIGO */
/* ======================== */
.gallery-section {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.gallery-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.gallery-header h2 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.1; /* Reduz o espaçamento entre as linhas */
    margin-bottom: 0.5rem;
}

.gallery-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.gallery-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-tab:hover {
    background: rgba(0, 194, 255, 0.08);
    border-color: rgba(0, 194, 255, 0.3);
    color: var(--text-main);
}

.gallery-tab.active {
    background: rgba(0, 194, 255, 0.15);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 194, 255, 0.15);
}

.gallery-viewer {
    display: flex;
    justify-content: center;
}

.gallery-frame {
    width: 100%;
    max-width: 960px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 194, 255, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 194, 255, 0.05) inset;
}

.frame-topbar {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 1rem;
    background: rgba(15, 23, 42, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.frame-dots {
    display: flex;
    gap: 6px;
}

.frame-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.frame-dots span:nth-child(1) { background: #ff5f57; }
.frame-dots span:nth-child(2) { background: #ffbd2e; }
.frame-dots span:nth-child(3) { background: #28c840; }

.frame-title {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.gallery-image-container {
    background: #0a0e12;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.gallery-image {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

/* ======================== */
/* SEÇÃO: CONTROLE TOTAL */
/* ======================== */
.control-section {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 2rem 5rem;
}

.control-header {
    text-align: center;
    margin-bottom: 3rem;
}

.control-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
}

.control-header .highlight {
    color: var(--primary);
    font-size: inherit;
}

.control-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.control-card {
    background: linear-gradient(160deg, rgba(0, 194, 255, 0.08) 0%, rgba(10, 15, 25, 0.9) 100%);
    border: 1px solid rgba(0, 194, 255, 0.35);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 25px rgba(0, 194, 255, 0.08) inset;
}

.control-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(0, 194, 255, 0.18);
    border: 1px solid rgba(0, 194, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    color: var(--primary);
    box-shadow: 0 0 12px rgba(0, 194, 255, 0.15);
}

.control-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text-main);
}

.control-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .control-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ======================== */
/* SEÇÃO: OFERTA PARA MEMBROS */
/* ======================== */
.pricing-section {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.pricing-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
}

.pricing-card-wrapper {
    width: 100%;
    position: relative;
    padding: 2px;
    border-radius: 22px;
    background: conic-gradient(from var(--angle, 0deg), #ffffff, #00C2FF, #ffffff, #00C2FF);
    animation: rotate-border 4s linear infinite;
}

@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes rotate-border {
    to {
        --angle: 360deg;
    }
}

.pricing-card {
    width: 100%;
    background: linear-gradient(160deg, rgba(8, 15, 30, 0.98) 0%, rgba(5, 8, 10, 1) 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
}

.pricing-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: #10b981;
    margin-bottom: 1.2rem;
}

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

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.pricing-plan-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.3rem;
}

.pricing-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.pricing-value {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-currency {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 0.5rem;
}

.pricing-amount {
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-main);
    line-height: 1;
}

.pricing-cents {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-top: 0.4rem;
}

.pricing-period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
    align-self: flex-end;
    margin-bottom: 0.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-features li svg {
    color: #10b981;
    flex-shrink: 0;
}

.pricing-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 1.1rem;
    border-radius: 12px;
    background: linear-gradient(90deg, #1e40af, #0d9488);
    color: white;
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(30, 64, 175, 0.4);
}

.pricing-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(30, 64, 175, 0.6);
    background: linear-gradient(90deg, #2563eb, #14b8a6);
}

.pricing-cta svg {
    transition: transform 0.3s ease;
}

.pricing-cta:hover svg {
    transform: translateX(4px);
}

/* Aviso / Regra de Ouro */
.pricing-warning {
    width: 100%;
    margin-top: 1.5rem;
    background: rgba(255, 60, 60, 0.06);
    border: 1px solid rgba(255, 60, 60, 0.25);
    border-radius: 12px;
    padding: 1.5rem;
}

.warning-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 800;
    color: #ff4444;
    letter-spacing: 0.08em;
    margin-bottom: 0.8rem;
}

.warning-header svg {
    color: #ff4444;
}

.pricing-warning p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.pricing-warning p strong {
    color: #ff4444;
}

.warning-note {
    margin-top: 0.8rem;
    font-size: 0.75rem !important;
    color: rgba(148, 163, 184, 0.6) !important;
    font-style: italic;
}

/* ======================== */
/* FOOTER */
/* ======================== */
.site-footer {
    width: 100%;
    padding: 0 2rem 3rem;
}

.footer-divider {
    width: 100%;
    max-width: 800px;
    height: 1px;
    margin: 0 auto 2.5rem;
    background: linear-gradient(90deg, transparent, rgba(0, 194, 255, 0.3), transparent);
}

.footer-content {
    text-align: center;
}

.footer-brand {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.4rem;
}

.footer-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.footer-social-btn {
    width: auto;
    height: auto;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.footer-social-btn:hover {
    transform: translateY(-3px);
}

#footer-whatsapp:hover {
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.4);
    color: #25d366;
}

#footer-youtube:hover {
    background: rgba(255, 0, 0, 0.12);
    border-color: rgba(255, 0, 0, 0.35);
    color: #ff0000;
}

.footer-copy {
    font-size: 0.7rem;
    color: rgba(148, 163, 184, 0.4);
    letter-spacing: 0.05em;
}

/* ======================== */
/* BOTÃO FLUTUANTE WHATSAPP */
/* ======================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9000;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

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

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.3);
    }
    70% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4), 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ======================== */
/* MODAL: CENTRAL DE DOWNLOAD */
/* ======================== */

/* ======================== */
/* OTIMIZAÇÕES MOBILE EXCLUSIVAS */
/* ======================== */
@media (max-width: 768px) {
    /* Header & Logo */
    .site-header {
        min-height: 55vh; /* Aumentado um pouco para dar mais respiro */
        padding: 2rem 1rem;
    }
    .header-logo {
        max-width: 240px; /* Logo um pouco maior */
    }
    
    /* Hero Section */
    .content {
        padding: 2rem 1rem 2rem; /* Reduzido padding superior também para colar no header */
    }
    .hero-title {
        font-size: clamp(1.4rem, 7vw, 1.8rem); /* Forçando a caber na tela do celular numa única linha */
        line-height: 1.05; /* Um pequeno respiro entre as linhas */
    }
    .hero-subtitle {
        font-size: 0.85rem; /* Fonte menor para gerar menos quebras de linha */
        line-height: 1.2;
        padding: 0;
        width: 95%; /* Estica o texto para caber mais palavras por linha */
    }
    
    /* Action HUD - Layout Harmonioso (Estilo App) */
    .action-hud {
        padding: 0;
        margin-top: 3rem; /* Aumentado para descolar bem os botões do texto */
        margin-bottom: 1rem; /* Reduzido o espaço embaixo dos botões */
    }
    .hud-secondary-nodes {
        flex-direction: column; /* Volta a empilhar para não amassar o texto */
        align-items: center;
        gap: 0.8rem; /* Aumentado de 0.5rem para 0.8rem */
        width: 100%;
    }
    .secondary-btn {
        display: inline-flex;
        flex-direction: row; /* Ícone do lado esquerdo do texto novamente */
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 320px; /* Reduzido de 340px */
        padding: 0.7rem 1rem; /* Reduzido de 0.8rem */
        font-size: 0.8rem; /* Reduzido de 0.85rem */
        white-space: normal;
        gap: 0.5rem;
        min-height: auto;
    }
    .secondary-btn svg {
        margin: 0;
        width: 16px;
        height: 16px;
    }
    .hud-power-line {
        display: none; /* Esconde a linha no celular para ficar mais limpo */
    }
    .gold-btn {
        width: 100%;
        max-width: 340px;
        padding: 1rem;
        font-size: 0.95rem;
        margin-top: 0.8rem; /* Aumentado de 0.5rem para 0.8rem */
    }
    
    /* Arsenal & Control Cards */
    .arsenal-section {
        padding: 2rem 1rem 4rem; /* Reduzido o topo de 4rem para 2rem para colar nos botões */
    }
    .control-section, .pricing-section {
        padding: 4rem 1rem;
    }
    .arsenal-card, .control-card {
        padding: 1.5rem;
    }
    .card-header-row h3 {
        font-size: 1.1rem;
    }
    
    /* Pricing Card */
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    .pricing-amount {
        font-size: 3rem;
    }
    .pricing-features li {
        font-size: 0.85rem;
    }
    
    /* Galeria / Tabs */
    .gallery-tabs {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    .gallery-tab {
        flex: 1 1 calc(50% - 0.5rem);
        padding: 0.6rem;
        font-size: 0.8rem;
    }
    
    /* Footer */
    .site-footer {
        padding: 0 1rem 2rem;
    }
    
    /* WhatsApp Float */
    .whatsapp-float {
        width: 48px;
        height: 48px;
        bottom: 1.5rem;
        right: 1.5rem;
    }
}
