/* ===== NAVBAR ===== */
.navbar-hydra {
    background: var(--primary-gradient) !important;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
    padding: 0.75rem 0;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    background: linear-gradient(to right, #ffffff, #e0e0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== CARDS ===== */
.card-hydra {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.card-hydra:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card-hydra .card-header {
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px 15px 0 0 !important;
    padding: 1.25rem 1.5rem;
}

/* ===== STAT CARDS ===== */
.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-card.bg-success::before {
    background: var(--secondary-gradient);
}

.stat-card.bg-warning::before {
    background: var(--warning-gradient);
}

.stat-card.bg-danger::before {
    background: var(--danger-gradient);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* ===== BOTÕES ===== */
.btn-hydra {
    background: var(--primary-gradient) !important;
    border: none !important;
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    color: #ffffff !important;
    transition: all 0.3s ease;
    display: inline-block !important;
    visibility: visible !important;
}

.btn-hydra:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    color: #ffffff !important;
}

/* ===== TABELAS ===== */
.table-hydra {
    --bs-table-bg: transparent;
    --bs-table-border-color: rgba(255, 255, 255, 0.1);
}

.table-hydra thead th {
    border-bottom: 2px solid #667eea;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    color: #a0a0c0;
}

.table-hydra tbody tr {
    transition: background-color 0.3s ease;
}

.table-hydra tbody tr:hover {
    background: rgba(102, 126, 234, 0.05);
}

/* ===== BADGES ===== */
.badge-hydra {
    padding: 0.35em 0.65em;
    border-radius: 10px;
    font-weight: 500;
}

.badge.bg-primary {
    background: var(--primary-gradient) !important;
}

.badge.bg-success {
    background: var(--secondary-gradient) !important;
}

.badge.bg-warning {
    background: var(--warning-gradient) !important;
}

.badge.bg-danger {
    background: var(--danger-gradient) !important;
}

/* ===== FORMULÁRIOS ===== */
.form-control-hydra {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #e0e0e0;
    padding: 0.75rem 1rem;
}

.form-control-hydra:focus {
    background: rgba(255, 255, 255, 0.07);
    border-color: #667eea;
    box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.25);
    color: #ffffff;
}

/* ===== FOOTER ===== */
.footer-hydra {
    margin-top: auto;
}

/* ===== FLASH MESSAGES ===== */
.flash-message {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ===== LICENSE TYPE CARDS ===== */
.license-type-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.license-type-card:hover {
    border-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}

.license-type-card.selected {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

/* ===== PREVIEW SECTIONS ===== */
.preview-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}