@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fundo e centralização */
body {
    padding: 10px;
    font-family: "Open Sans", sans-serif;
}

header{
    width:100%;
    height:auto;
    display: flex;
    text-align: center;
    
    img{
    width: 280px;
    height: auto;
    margin: 0 auto;
}
}

/* Título */
.titulo_tab{
    width: 100%;
    height: auto;
    padding: 10px 0px 10px 0px;
    display: flex;
    text-align: left;
}
.titulo_tab h2 {
    margin-bottom: 30px;
    font-size: 28px;
    color: #2c3e50;
}

/* Container de cards */
.dashboard {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* Card */
.card {
    background: #fff;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
    min-width: 200px;
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
}

/* Título do card */
.card h3 {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 10px;
}

/* Valor do card */
.card p {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
}

/* Botões */
.actions {
    text-align: center;
    margin-top: 20px;
}

.actions a {
    display: inline-block;
    margin: 5px;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.2s;
}

.actions a:first-child {
    background: #27ae60;
    color: white;
}

.actions a:last-child {
    background: #2980b9;
    color: white;
}

.actions a:hover {
    opacity: 0.8;
}

.rodape {
    width: 100%;
    height: auto;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
    padding: 40px;
    align-items: center;
    display: flex;
}

.rodape p {
    color: #C4C4C4;
    font-size: 12px;
    padding: 20px;
    margin: 0 auto;
}
