:root { --vila-red: #e11d48; }

/* Cursor */
@media (pointer: fine) { body, a, button, input, textarea, select { cursor: none !important; } }
#custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    background-color: var(--vila-red);
    border-radius: 50%;
    z-index: 99999;
    pointer-events: none; /* ISTO É O QUE PERMITE O CLIQUE PASSAR POR DENTRO DO CURSOR */
    transition: width 0.3s, height 0.3s, opacity 0.3s, background-color 0.3s;
    transform: translate(-50%, -50%); /* Centraliza o ponto na ponta do mouse real */
}

/* No mobile, force o cursor padrão se o script falhar */
@media (max-width: 768px) {
    #custom-cursor { display: none !important; }
    * { cursor: auto !important; }
}

/* Background */
.gradient-bg { width: 100vw; height: 100vh; position: fixed; top: 0; left: 0; z-index: -2; background: #000; overflow: hidden; }
.gradients-container { filter: blur(50px); width: 100%; height: 100%; }
.g1, .g2 { position: absolute; width: 80%; height: 80%; mix-blend-mode: screen; opacity: 0.4; animation: move 20s infinite alternate; }
.g1 { background: radial-gradient(circle, rgba(225, 29, 72, 0.4) 0, transparent 50%); top: -10%; left: -10%; }
.g2 { background: radial-gradient(circle, rgba(147, 51, 234, 0.15) 0, transparent 50%); bottom: -10%; right: -10%; }
@keyframes move { from { transform: translate(-10%, -10%); } to { transform: translate(10%, 10%); } }

/* Formulário Elite */
.input-field { display: flex; flex-direction: column; gap: 8px; }
.input-field label { font-[900] text-[9px] tracking-[0.2em] text-white/30 uppercase; }
.input-field input, .input-field textarea, .input-field select {
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
    padding: 18px; color: white; font-size: 13px; outline: none; transition: 0.4s;
}
.input-field input:focus, .input-field textarea:focus, .input-field select:focus { border-color: var(--vila-red); background: rgba(225, 29, 72, 0.03); }
.input-field select option { background: #0a0a0a; color: white; }

.scenario-box { background: rgba(255,255,255,0.01); padding: 30px; border-left: 2px solid var(--vila-red); }

/* Botões */
.btn-minimal, .btn-minimal-xl { 
    padding: 15px 40px; border: 1px solid rgba(255,255,255,0.08); 
    font-size: 10px; font-weight: 900; letter-spacing: 0.3em; transition: 0.4s;
    display: inline-block; text-transform: uppercase; text-align: center;
}
.btn-minimal-xl { padding: 25px 60px; border-color: var(--vila-red); color: white; background: var(--vila-red); }
.btn-minimal:hover { background: white; color: black; border-color: white; }

.noise-bg { position: fixed; inset: 0; background: url('https://grainy-gradients.vercel.app/noise.svg'); opacity: 0.03; pointer-events: none; z-index: 1000; }
/* Bloqueia seleção de texto e arrastar imagens */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

img {
    pointer-events: none;
    -webkit-user-drag: none;
}