/* 1. IMPORTAÇÃO CORRETA */
@import url('https://googleapis.com');

:root {
    --bg-main: #f1f5f9;
    --sidebar-bg: #1e293b;
    --text-main: #0f172a;
    --primary: #2563eb;
}

/* 2. BASE */
body { 
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif; 
    background-color: var(--bg-main);
    color: var(--text-main);
    overflow-x: hidden;
    overflow-y: auto;
}

/* 3. SIDEBAR (Corrigi o fundo que estava quase invisível com 0.05) */
aside, .sidebar {
    background-color: var(--sidebar-bg) !important;
    color: white !important;
    padding: 30px 20px;
}

aside a, .sidebar a {
    color: #94a3b8 !important;
    font-weight: 700;
    padding: 12px 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
}

aside a:hover, aside a.active {
    background: rgba(255,255,255,0.1) !important;
    color: white !important;
}

/* 4. FORMULÁRIOS */
label {
    color: #334155;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

input, select, textarea {
    background: #ffffff;
    border: 2px solid #cbd5e1;
    color: #0f172a;
    font-weight: 600;
    padding: 15px;
    border-radius: 14px;
    width: 100%;
}

input:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1) !important;
    outline: none;
}

/* 5. BUSCA (Estilo Arredondado) */
form input[name="q"] {
    border-radius: 25px 0 0 25px !important;
    border: none;
}

form button[type="submit"] {
    border-radius: 0 25px 25px 0 !important;
    border: none;
    background-color: white;
    border-left: 1px solid #f1f5f9;
}

/* 6. SLIDES E ANIMAÇÕES */

.slide {
    transition: opacity 0.7s ease-in-out;
}

/* Limpeza TinyMCE */
.tox-notification--warning, .tox-statusbar__branding { 
    display: none !important; 
}
