/* style.css - Storm Performance */

/* Reset e Base */
html, body, :root {
    background-color: #000000 !important;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Blindagem de Links */
a, a:hover, a:focus, a:active {
    text-decoration: none !important;
    outline: none !important;
}

/* Cores da Marca Storm */
.text-storm-yellow { color: #f2c300; }
.bg-storm-yellow { background-color: #f2c300; }
.border-storm-yellow { border-color: #f2c300; }

/* Utilitários Visuais */
.gradient-overlay {
    background: radial-gradient(circle at 50% 0%, rgba(242, 195, 0, 0.08) 0%, rgba(0, 0, 0, 1) 70%);
}

.btn-hover:hover {
    box-shadow: 0 0 20px rgba(242, 195, 0, 0.3);
    transform: scale(1.02);
}

.service-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover {
    border-color: rgba(242, 195, 0, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(242, 195, 0, 0.15);
}

/* Formulário de Contato */
.form-input {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 1rem;
    color: #ffffff;
    outline: none;
    transition: all 0.3s ease;
}
.form-input:focus {
    border-color: #f2c300;
    background-color: rgba(255, 255, 255, 0.08);
}
select.form-input option {
    background-color: #111;
    color: #fff;
}

/* Reset de Details/Summary do FAQ */
details > summary { list-style: none; cursor: pointer; }
details > summary::-webkit-details-marker { display: none; }

/* Configurações Typography para Privacidade */
.prose h1, .prose h2, .prose h3 { color: #ffffff; font-weight: 800; }
.prose p { margin-bottom: 1.5rem; line-height: 1.75; }
.prose ul { list-style-type: disc; padding-left: 1.5rem; margin-bottom: 1.5rem; }
