/* =========================================
   CONFIGURAÇÕES GERAIS
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

:root {
    --neon-green: #00ff88;
    --dark-bg: #0a0a0a;
    --card-bg: #111111;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #050505; /* Cor de fundo de segurança */
    color: white;
    overflow-x: hidden; /* Evita rolagem lateral indesejada */
}

/* =========================================
   RESPONSIVIDADE MOBILE
   ========================================= */

/* Melhora o toque em dispositivos móveis */
@media (hover: none) and (pointer: coarse) {
    button, a {
        -webkit-tap-highlight-color: rgba(0, 255, 136, 0.2);
    }
}

/* Ajusta tamanho de texto em telas pequenas */
@media (max-width: 640px) {
    html {
        font-size: 14px;
    }
}

/* Garante que os cards fiquem bem em mobile */
.glass {
    min-height: fit-content;
}

/* Melhora o menu mobile */
#mobile-menu {
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
}

/* Smooth scroll para navegação */
html {
    scroll-behavior: smooth;
}

/* =========================================
   EFEITOS VISUAIS (GLOW & NEON)
   ========================================= */

/* Efeito de brilho ambiental atrás dos elementos */
.glow-effect {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0,255,136,0.15) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    pointer-events: none; /* O clique passa através do brilho */
    z-index: -1;
}

/* Bolha de desfoque para imagens */
.blur-blob {
    position: absolute;
    inset: 0;
    background-color: var(--neon-green);
    filter: blur(100px);
    opacity: 0.2;
    border-radius: 9999px;
}

/* =========================================
   COMPONENTES
   ========================================= */

/* Cartões de Diferenciais */
.feature-card {
    transition: all 0.3s ease;
    border: 1px solid #222;
    background-color: var(--card-bg);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-green);
    box-shadow: 0 10px 30px -10px rgba(0, 255, 136, 0.2);
}

/* Botão Principal com Gradiente */
.btn-primary {
    background: linear-gradient(90deg, #00cc6a 0%, #00ff88 100%);
    transition: all 0.3s ease;
    color: black;
    font-weight: bold;
}

.btn-primary:hover {
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.6);
    transform: scale(1.05);
}

/* Botão Secundário (Outline) */
.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--neon-green);
    color: var(--neon-green);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
}

/* Botão Play na imagem */
.play-button {
    width: 4rem;
    height: 4rem;
    background-color: var(--neon-green);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(0, 255, 136, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0);
    }
}