:root {
    --bg-dark: #03040b;
    --card-bg: rgba(15, 20, 35, 0.6);
    --primary: #06b6d4;
    --accent: #a855f7;
    --text-main: #f8fafc;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    margin: 0; padding: 0; 
    overflow: hidden; /* Remove barras de rolagem */
}

.ambient-glow {
    position: absolute; inset: 0; overflow: hidden; z-index: 0; pointer-events: none;
}
.glow-1 {
    position: absolute; top: 15%; left: 50%; width: 600px; height: 600px;
    background: rgba(168, 85, 247, 0.1); filter: blur(120px); border-radius: 50%; transform: translate(-50%, -10%);
}
.glow-2 {
    position: absolute; bottom: 10%; right: 10%; width: 400px; height: 400px;
    background: rgba(6, 182, 212, 0.08); filter: blur(100px); border-radius: 50%;
}

.container {
    max-width: 1300px; margin: 0 auto; padding: 1rem 2rem; position: relative; z-index: 10;
    display: flex; flex-direction: column; align-items: center; 
    height: 100vh; box-sizing: border-box; justify-content: center; gap: 1rem;
}

/* HEADER / OBJETIVO */
.objective-card {
    background: rgba(10, 15, 30, 0.4); border: 2px solid rgba(168, 85, 247, 0.25);
    border-radius: 20px; padding: 1.5rem 2rem; text-align: center; max-width: 850px; width: 100%;
    backdrop-filter: blur(16px);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.05);
    position: relative;
    /* Reduz um pouco o tamanho para caber em 100vh */
}
.objective-title {
    font-family: 'Orbitron', sans-serif; font-size: 0.8rem; color: #a855f7;
    text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.6rem; font-weight: 700;
}
.objective-goal {
    font-family: 'Orbitron', sans-serif; font-size: 2rem; font-weight: 900;
    background: linear-gradient(to right, #67e8f9, #06b6d4);
    -webkit-background-clip: text;
    background-clip: text; /* Compatibilidade Padrão */
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(6, 182, 212, 0.15);
    line-height: 1.2;
}

/* GRIDS DOS KRS */
.krs-grid {
    display: flex; justify-content: space-evenly; gap: 15px;
    width: 100%; margin-bottom: 1rem; flex-wrap: nowrap; /* Garante que fiquem na mesma linha */
}

.kr-card {
    background: #090a10; 
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 12px; padding: 1.2rem; text-align: center;
    transition: all 0.3s ease; position: relative;
    display: flex; flex-direction: column; justify-content: space-between; gap: 5px;
    height: 155px; flex: 1; max-width: 220px;
}
.kr-card:hover {
    transform: translateY(-4px); border-color: var(--primary);
    box-shadow: 0 5px 20px rgba(6, 182, 212, 0.15);
}

.kr-head {
    font-family: 'Orbitron', sans-serif; font-size: 0.65rem; color: #c084fc;
    text-transform: uppercase; letter-spacing: 1px; font-weight: 700;
}
.kr-percent {
    font-family: 'Orbitron', sans-serif; font-size: 2.1rem; font-weight: 800;
    color: #22d3ee; text-shadow: 0 0 12px rgba(6, 182, 212, 0.3);
    margin: 5px 0;
}
.kr-details {
    font-size: 0.73rem; color: #cbd5e1; line-height: 1.4;
    display: flex; align-items: center; justify-content: center;
    font-weight: 500; min-height: 38px;
}

/* BOTÃO IR PARA DETALHES */
.btn-link {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.12) 0%, rgba(168, 85, 247, 0.12) 100%);
    border: 1px solid rgba(168, 85, 247, 0.35);
    border-radius: 12px; color: #e2e8f0; text-decoration: none;
    font-family: 'Orbitron', sans-serif; font-size: 0.8rem; font-weight: 700;
    padding: 12px 24px; transition: all 0.3s ease;
    display: flex; align-items: center; gap: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    margin-top: 10px;
}
.btn-link:hover {
    border-color: var(--primary); background: rgba(6, 182, 212, 0.18);
    color: var(--primary); transform: scale(1.02);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.25);
}
