:root {
    --primary: #10B981;
    --bg: #050a30;
    --text: #ffffff;
    --subtext: #94a3b8;
}

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

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow: hidden;
}

.container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
    position: relative;
    z-index: 10;
}

header .logo-img {
    width: 140px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

main {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--primary);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

p {
    font-size: 1.2rem;
    color: var(--subtext);
    margin-bottom: 40px;
}

.cta-container {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    position: relative; /* Garante que fique acima de elementos absolutos */
    z-index: 20;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg);
}

.btn-primary:hover {
    background-color: #059669;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
}

.btn-secondary:hover {
    background-color: rgba(255,255,255,0.05);
}

footer {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.4);
    position: relative;
    z-index: 20;
}

.bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    filter: blur(100px);
    pointer-events: none; /* ESSENCIAL: Faz o fundo ser ignorado pelo mouse */
}

.blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    left: -200px;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: #3b82f6;
    bottom: -150px;
    right: -150px;
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .cta-container { flex-direction: column; }
    .container { padding: 20px; }
}
