* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, sans-serif;
}

body {
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f36 50%, #0a0e1a 100%);
    color: #e2e8f0;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.header {
    background: rgba(26, 31, 54, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 25px 30px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo i {
    -webkit-text-fill-color: #60a5fa;
}

.badge {
    background: rgba(96, 165, 250, 0.15);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    color: #60a5fa;
    border: 1px solid rgba(96, 165, 250, 0.2);
    font-weight: 600;
}

.btn {
    padding: 10px 25px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.4);
}

.btn-gold {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.btn-gold:hover {
    box-shadow: 0 5px 20px rgba(245, 158, 11, 0.4);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.card {
    background: rgba(26, 31, 54, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s, border-color 0.3s;
}

.card:hover {
    transform: translateY(-3px);
    border-color: rgba(96, 165, 250, 0.2);
}

.card-title {
    font-size: 13px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-value {
    font-size: 28px;
    font-weight: 700;
    color: #f1f5f9;
}

.card-sub {
    font-size: 13px;
    color: #94a3b8;
    margin-top: 5px;
}

.table-container {
    background: rgba(26, 31, 54, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.table-container h2 {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

/* ===== FORMULÁRIOS ===== */
.form-container {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #94a3b8;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #60a5fa;
}

.form-group input::placeholder {
    color: #64748b;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        text-align: center;
    }
    .header-left {
        justify-content: center;
    }
    .grid {
        grid-template-columns: 1fr;
    }
    .table-container {
        padding: 20px;
    }
}