﻿:root {
    --azul-primario: #5fbcee;
    --azul-escuro: #0b72b3;
    --branco: #FFFFFF;
    --fundo: #F8FBFF;
    --texto: #333333;
}
body {
    font-family: 'Open Sans', sans-serif;
    background: var(--fundo);
    color: var(--texto);
    margin: 0;
    padding: 0;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
header {
    background: var(--branco);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.reputacao {
    width: 100px;
    height: 10px;
    background: #e0e0e0;
    border-radius: 5px;
    margin-top: 5px;
}
.reputacao::after {
    content: '';
    display: block;
    width: 80%;
    height: 100%;
    background: var(--azul-primario);
    border-radius: 5px;
}
.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}
.card {
    background: var(--branco);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}
.card h3 {
    color: var(--azul-escuro);
    margin-top: 0;
}
.card p {
    font-size: 2rem;
    font-weight: bold;
    color: var(--azul-primario);
    margin: 10px 0;
}
.nav-btn {
    display: block;
    background: var(--azul-primario);
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    margin: 10px 0;
    transition: all 0.3s;
}
.nav-btn:hover {
    background: var(--azul-escuro);
    transform: translateY(-3px);
}
.nav-btn i {
    margin-right: 10px;
}
