/* ==========================================================================
   CONFIGURAÇÕES DO ORGANIZADOR
   ========================================================================== */

   .a3-premium-wrap { 
    font-family: 'Inter', sans-serif; 
    background: #f8f9fa !important; 
    padding: 30px; 
    border-radius: 12px; 
    border: 1px solid #eaeaea; 
    color: #111; 
    max-width: 900px; 
    margin: 0 auto; 
}

/* Navegação das Abas */
.a3-tabs-nav { 
    display: flex; 
    gap: 10px; 
    border-bottom: 2px solid #ddd; 
    margin-bottom: 30px; 
    overflow-x: auto; 
    scrollbar-width: none; 
}
.a3-tabs-nav::-webkit-scrollbar { 
    display: none; 
}
.a3-tab-btn { 
    background: #111 !important; 
    border: none; 
    padding: 12px 20px; 
    font-size: 15px; 
    font-weight: 600; 
    color: #777 !important; 
    cursor: pointer; 
    border-bottom: 3px solid transparent; 
    margin-bottom: -2px; 
    transition: all 0.3s; 
    white-space: nowrap; 
}
.a3-tab-btn:hover { color: #f8f9fa !important; }
.a3-tab-btn.active { color: #199618 !important; border-bottom-color: #199618; }

/* Conteúdo das Abas */
.a3-tab-content { 
    display: none; 
    animation: fadeIn 0.4s; 
}
.a3-tab-content.active { display: block; }

@keyframes fadeIn { 
    from { opacity: 0; transform: translateY(5px); } 
    to { opacity: 1; transform: translateY(0); } 
}

/* Grid e Formulários */
.a3-form-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 20px; 
}
.a3-form-group { 
    display: flex; 
    flex-direction: column; 
    gap: 8px; 
}
.a3-form-group.full { grid-column: 1 / -1; }
.a3-form-group label { 
    font-weight: 600; 
    font-size: 13px; 
    color: #444; 
    text-transform: uppercase; 
    letter-spacing: 0.5px; 
}
.a3-form-group input[type="text"], 
.a3-form-group input[type="file"] { 
    width: 100%; 
    padding: 12px; 
    border: 1px solid #d1d1d1; 
    border-radius: 8px; 
    font-size: 15px; 
    background: #fff; 
    transition: border 0.3s; 
    box-sizing: border-box; 
}
.a3-form-group input:focus { 
    border-color: #199618; 
    outline: none; 
    box-shadow: 0 0 0 3px rgba(25,150,24,0.1); 
}

/* Imagens de Preview */
.a3-preview-img { 
    width: 80px; 
    height: 80px; 
    border-radius: 8px; 
    object-fit: cover; 
    border: 1px solid #ccc; 
    margin-top: 5px; 
}
.a3-preview-banner { 
    width: 100%; 
    height: 120px; 
    border-radius: 8px; 
    object-fit: cover; 
    border: 1px solid #ccc; 
    margin-top: 5px; 
}

/* Botão de Salvar */
.a3-btn-save { 
    background: #199618 !important; 
    color: #fff; 
    border: none; 
    padding: 15px 30px; 
    font-size: 16px; 
    font-weight: bold; 
    border-radius: 8px; 
    cursor: pointer; 
    transition: 0.3s; 
    margin-top: 30px; 
    width: 100%; 
    text-transform: uppercase; 
    letter-spacing: 1px;
}
.a3-btn-save:hover { 
    background: #127a11; 
    transform: translateY(-2px); 
    box-shadow: 0 5px 15px rgba(25,150,24,0.3); 
}

/* Avisos */
.a3-notice { 
    padding: 15px; 
    border-radius: 8px; 
    margin-bottom: 25px; 
    font-weight: 500; 
}
.a3-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.a3-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* Mobile Responsivo */
@media (max-width: 600px) { 
    .a3-form-grid { grid-template-columns: 1fr; } 
}