.hero {
    background: var(--ink);
    background-image: radial-gradient(circle at 15% 30%, rgba(147,58,255,0.15) 0%, transparent 40%),
                      radial-gradient(circle at 85% 70%, rgba(147,58,255,0.1) 0%, transparent 40%);
    padding: 200px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #fff;
}
/* Transição reta, sem gradiente para o branco */
.hero h1 { font-size: 64px; font-weight: 800; letter-spacing: -.03em; line-height: 1.1; max-width: 950px; margin: 0 auto 24px; position: relative; z-index: 2; }
.hero h1 span { color: var(--accent); position: relative; display: inline-block; }
.hero h1 span::after {
    content: ''; position: absolute; bottom: 6px; left: 0; width: 0%; height: 10px;
    background: rgba(147,58,255,0.4); z-index: -1; border-radius: 6px;
    animation: drawLine 1s cubic-bezier(0.16,1,0.3,1) forwards; animation-delay: 0.3s;
}
@keyframes drawLine { to { width: 100%; } }
.hero p { font-size: 19px; color: rgba(255,255,255,0.7); max-width: 700px; margin: 0 auto 48px; font-weight: 400; line-height: 1.6; position: relative; z-index: 2; }

.hero-ctas { display: flex; justify-content: center; gap: 16px; position: relative; z-index: 2; margin-bottom: 20px; }
.hero-btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: #fff; font-weight: 700; font-size: 16px; padding: 18px 40px; border-radius: 100px; text-decoration: none; transition: all .3s; box-shadow: 0 12px 32px rgba(147,58,255,0.3); }
.hero-btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 16px 40px rgba(147,58,255,0.4); }
.hero-btn-primary svg { width: 20px; height: 20px; transition: transform .3s; }
.hero-btn-primary:hover svg { transform: translateX(4px); }

.hero-btn-secondary { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.05); border: 1.5px solid rgba(255,255,255,0.2); color: #fff; font-weight: 600; font-size: 16px; padding: 18px 40px; border-radius: 100px; text-decoration: none; transition: all .3s; backdrop-filter: blur(8px); }
.hero-btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-1px); }
.hero-btn-secondary svg { width: 20px; height: 20px; }

@media(max-width: 768px) { 
    .hero { padding: 140px 20px 60px; }
    .hero h1 { font-size: 42px; } 
    .hero-ctas { flex-direction: column; }
    .hero-btn-primary, .hero-btn-secondary { width: 100%; justify-content: center; }
}
