/* GDL — Estilos customizados */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --gdl-blue: #05192D;
    --gdl-blue-hover: #08294a;
    --gdl-green: #03EF62;
    --gdl-green-hover: #02c34f;
    --gdl-yellow: #FFD166;
}

body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    background-color: #F8FAFC !important;
}

/* Base Component Overrides */
.btn-primary {
    background-color: var(--gdl-green) !important;
    border-color: var(--gdl-green) !important;
    color: #1a1a1a !important;
    font-weight: 600 !important;
    transition: all 0.2s ease !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--gdl-green-hover) !important;
    border-color: var(--gdl-green-hover) !important;
    color: white !important;
}

.btn-outline-primary {
    color: var(--gdl-blue) !important;
    border-color: var(--gdl-blue) !important;
    font-weight: 600 !important;
    transition: all 0.2s ease !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    background-color: var(--gdl-blue) !important;
    border-color: var(--gdl-blue) !important;
    color: white !important;
}

.text-gdl-blue {
    color: var(--gdl-blue);
}

.bg-gdl-blue {
    background-color: var(--gdl-blue);
}

.text-gdl-green {
    color: var(--gdl-green);
}

.card-painel {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    background-color: white;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.titulo-cabecalho {
    color: #00bcd4;
    font-size: 1.55rem;
    transition: color 0.3s ease;
}

.titulo-cabecalho:hover {
    color: #0097a7;
}

.texto-pequeno-cabecalho {
    font-size: 1.1rem;
    color: #888;
    display: block;
    margin-top: -5px;
}

.texto-logo-container {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}

/* Login */
.login-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}

.logo-login {
    display: block;
    margin: 80px auto 32px;
    width: 95px;
    height: auto;
}

@media (max-width: 576px) {
    .logo-login {
        margin-top: 40px;
        margin-bottom: 24px;
    }
}

/* Tabelas Clicáveis */
.clickable-row {
    cursor: pointer;
    transition: background-color 0.15s ease-in-out;
}

.clickable-row:hover {
    background-color: rgba(0, 0, 0, 0.04) !important;
}