/* Rolagem suave */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Efeito de iluminação abstrata ajustado */
.efeito-luz-fundo {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,107,0,0.4) 0%, rgba(47,164,231,0) 70%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

/* O Botão "Brabo" - Design moderno de conversão */
.botao-brabo {
    background: linear-gradient(135deg, #FF6B00 0%, #E65C00 100%);
    color: white;
    font-size: 1.25rem;
    font-weight: 900;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    box-shadow: 0 10px 25px -5px rgba(255, 107, 0, 0.5), 0 8px 10px -6px rgba(255, 107, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.botao-brabo::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
    transform: skewX(-20deg);
    transition: all 0.7s ease;
}

.botao-brabo:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 35px -5px rgba(255, 107, 0, 0.6), 0 10px 15px -5px rgba(255, 107, 0, 0.4);
}

.botao-brabo:hover::after {
    left: 150%;
}