:root {
    --color-bg: #050505;
    --color-text: #EAEAEA;
    --color-primary: #FF4D00; /* Orange */
    --color-secondary: #00FF41; /* Neon Green */
    --color-secondary-dark: #00c734;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
}

#canvas-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.5;
}

main, header, footer {
    position: relative;
    z-index: 2;
}

.font-teko { font-family: 'Teko', sans-serif; }

.section-title {
    font-family: 'Teko', sans-serif;
    font-size: 3rem;
    line-height: 1;
    text-transform: uppercase;
    color: white;
}
@media (min-width: 768px) { .section-title { font-size: 5rem; } }

.primary-banner {
    background-color: var(--color-primary);
    color: black;
    font-family: 'Teko', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
}

.cta-button {
    background-color: var(--color-secondary);
    color: #000;
    font-weight: 900;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.4), 0 0 5px rgba(0, 255, 65, 0.6);
    border: 2px solid rgba(0, 255, 65, 0.8);
}
.cta-button:hover {
    transform: scale(1.05) translateY(-3px);
    background-color: var(--color-secondary-dark);
    box-shadow: 0 0 35px rgba(0, 255, 65, 0.7), 0 0 10px rgba(0, 255, 65, 0.9);
}

.content-box {
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 2rem;
}

/* Animações Ajustadas */
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-slide-down {
    animation: slideDown 1s ease-out .5s forwards;
    opacity: 0;
}

.scroll-animate {
    opacity: 0;
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}
.scroll-animate.fade-in { transform: translateY(50px); }
.scroll-animate.slide-in-left { transform: translateX(-80px); }
.scroll-animate.slide-in-right { transform: translateX(80px); }
.scroll-animate.zoom-in { transform: scale(0.9); }

.scroll-animate.is-visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Estilos do Modal */
.modal-overlay {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    z-index: 999;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: all 0.3s ease;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content {
    background: #111;
    border: 2px solid var(--color-primary);
    border-radius: 0.5rem; padding: 2rem;
    max-width: 500px; width: 90%;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}
.modal-overlay.active .modal-content { transform: scale(1); }

/* Estilos do FAQ */
.faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}
.faq-item .faq-arrow { transition: transform 0.3s ease; }
.hero-rafa { padding-top: 10rem; padding-bottom: 13rem; }