/* global.css */

/* ── FORÇAR OCULTAÇÃO DO CURSOR PADRÃO EM TUDO ── */
*,
a,
button,
select,
input,
textarea,
label {
    cursor: none !important;
}

/* ── ESTILOS BASE ── */
body {
    cursor: none;
    scroll-behavior: smooth;
    background-color: #202020;
    color: #d6d6d6;
}

/* Textura Grain Sutil */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
    background-repeat: repeat;
    opacity: 0.8;
}

.hero-gradient-text,
.static-gradient-text {
    color: #FF9F1C;
}

.solid-panel {
    background: #333533;
    border: 1px solid rgba(214, 214, 214, 0.1);
    transition: all 0.3s ease-in-out;
}

/* ── CUSTOM CURSOR (VISUAL) ── */
.cursor {
    width: 8px;
    height: 8px;
    background: #FF9F1C;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.08s ease-out, width 0.25s ease-out, height 0.25s ease-out, background 0.25s;
}

.cursor-ring {
    width: 32px;
    height: 32px;
    border: 2px solid rgba(255, 159, 28, 0.4);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease-out, width 0.3s ease-out, height 0.3s ease-out, border-color 0.3s;
}

/* Animação de Hover do Cursor */
body:has(a:hover) .cursor,
body:has(button:hover) .cursor {
    width: 6px;
    height: 6px;
    background: #F77F00;
}

body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
    width: 54px;
    height: 54px;
    border-color: #FF9F1C;
    background: rgba(255, 159, 28, 0.05);
}

/* ── NAVEGAÇÃO ── */
nav {
    transition: background-color 0.4s ease, border-color 0.4s ease, color 0.4s ease;
}

.nav-light-mode {
    color: #202020;
}

.nav-dark-mode {
    color: #F4F4F5;
}

/* ── ESTILOS ESPECÍFICOS: PÁGINA DE POLÍTICAS ── */
.legal-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #FF9F1C;
    margin-top: 48px;
    margin-bottom: 16px;
    border-bottom: 2px solid #333533;
    padding-bottom: 8px;
}

.legal-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
}

.legal-content ul {
    list-style-type: square;
    padding-left: 24px;
    margin-bottom: 24px;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-content strong {
    color: #F4F4F5;
    font-weight: 600;
}