/* ============================
   COMPONENTES VISUAIS
   CheckinGuard UI Kit
============================ */

/* Títulos */
.titulo-principal {
    color: #FCFC30;
    font-size: 1.75rem;
    font-weight: bold;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.4);
    margin-bottom: 1rem;
}

.titulo-secundario {
    color: #FCFC30;
    font-size: 1.25rem;
    font-weight: bold;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.75rem;
}

/* Botões de ação em tabelas */
.btn-acao {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-weight: 500;
    color: #fff;
    border: none;
    transition: background 0.2s ease, transform 0.1s ease;
}

.btn-acao:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.btn-acao:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.btn-acao i {
    font-size: 16px;
    margin-right: 4px;
    margin-left: 4px;
    vertical-align: middle;
}

/* Cores específicas */
.btn-ver {
    background-color: #3498db;
}
.btn-ver:hover {
    background-color: #2980b9;
}

.btn-editar {
    background-color: #735CC6;
}
.btn-editar:hover {
    background-color: #5e4aa5;
}

.btn-remover {
    background-color: #e74c3c;
}
.btn-remover:hover {
    background-color: #c0392b;
}



/* Cartões */
.card-custom {
    background-color: #1f1f8f;
    border: 1px solid #BDB6FF;
    border-radius: 6px;
    padding: 1.5rem;
    color: #FFFFFF;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem;
}

/* Alertas */
.alerta-sucesso {
    background-color: #00EBD0;
    color: #3333BD;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    font-weight: bold;
}

.alerta-erro {
    background-color: #FF6E91;
    color: #FFFFFF;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    font-weight: bold;
}

/* Separador visual */
.separador {
    border-top: 2px solid #BDB6FF;
    opacity: 0.5;
    margin: 1.5rem 0;
}
