/*
Theme Name: isaias-branco
Theme URI: https://wordpress.org/
Author: Isaias da Silva
Description: Tema minimalista e totalmente em branco para uso exclusivo com o Elementor. Conta com barreiras de segurança estritas para isolamento de arquivos HTML externos e uma central interna e blindada de autenticação para membros.
Version: 1.0.2
Text Domain: isaias-branco
*/

/* Força fundo branco real na estrutura do site contra Dark Mode forçado de navegadores */
html, body, #page, .site, .site-content {
    background-color: #ffffff !important;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* =========================================================================
   ASSINATURA VISUAL DINÂMICA (GRADIENTE E NEON)
   ========================================================================= */
.isaias-assinatura-neon {
    background: linear-gradient(45deg, #ff00ff, #00ffff, #ff00ff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.4);
    animation: movimento-gradiente 3s linear infinite;
}

@keyframes movimento-gradiente {
    0% { background-position: 0% center; filter: hue-rotate(0deg); }
    100% { background-position: 200% center; filter: hue-rotate(45deg); }
}

/* =========================================================================
   INTERFACE DA CENTRAL DE AUTENTICAÇÃO (GLASSMORPHISM & NEON GLOW)
   ========================================================================= */
.isaias-auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    padding: 20px;
    background: #0b0f19; /* Fundo escuro focado apenas na tela de login para destacar o neon */
    border-radius: 16px;
    box-shadow: inset 0 0 40px rgba(0,0,0,0.8);
}

.isaias-auth-form {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    padding: 40px;
    border-radius: 16px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.1), inset 0 0 15px rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.isaias-auth-form:hover {
    border-color: rgba(255, 0, 255, 0.4);
    box-shadow: 0 0 35px rgba(255, 0, 255, 0.2), inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.isaias-auth-form h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
    font-family: sans-serif;
    letter-spacing: 1px;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.auth-field {
    margin-bottom: 20px;
    position: relative;
}

.auth-field input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 15px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.auth-field input:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.5);
}

.auth-extra {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #a0aec0;
    font-size: 13px;
    margin-bottom: 25px;
    font-family: sans-serif;
}

.auth-extra a {
    color: #00ffff;
    text-decoration: none;
    transition: color 0.2s;
}

.auth-extra a:hover {
    color: #ff00ff;
    text-shadow: 0 0 5px #ff00ff;
}

.auth-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    background-size: 200% auto;
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.auth-btn:hover {
    background-position: right center;
    box-shadow: 0 6px 20px rgba(255, 0, 255, 0.5);
    transform: translateY(-2px);
}

.auth-btn:active {
    transform: translateY(1px);
}

.auth-nav {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    font-family: sans-serif;
}

.auth-nav a {
    color: #a0aec0;
    text-decoration: none;
    transition: all 0.2s;
}

.auth-nav a:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255,255,255,0.6);
}

/* Alertas de Retorno */
.auth-error, .auth-success {
    width: 100%;
    max-width: 420px;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 14px;
    font-family: sans-serif;
    box-sizing: border-box;
}

.auth-error {
    background: rgba(255, 0, 0, 0.15);
    border: 1px solid #ff0033;
    color: #ffcccb;
    box-shadow: 0 0 10px rgba(255, 0, 51, 0.3);
}

.auth-success {
    background: rgba(0, 255, 0, 0.15);
    border: 1px solid #00ff66;
    color: #d4edda;
    box-shadow: 0 0 10px rgba(0, 255, 102, 0.3);
}

.isaias-auth-msg {
    color: #ffffff;
    font-family: sans-serif;
}
.isaias-auth-msg a {
    color: #00ffff;
}