body {
    display: grid;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #faf6ea;
    color: #23160f;
}

.header {
    background: #2c180f;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 1.5rem 2px 1.5rem;
}

#img-arremata {
    margin-right: 24px;
    width: 200px;
    height: 70px;
}

.nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 12px;
    font-size: 1rem;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.nav a:hover {
    opacity: 1;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.icon-img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: 8px;
    background: #fff;
    border: 2px solid #2c180f;
    transition: box-shadow 0.2s;
}

.icon-img:hover {
    box-shadow: 0 0 0 2px #f9c22e;
}

.icon-img-branca {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: 8px;
    background: #2c180f;
    border: 2px solid #2c180f;
    transition: box-shadow 0.2s;
}

.icon-img-branca:hover {
    box-shadow: 0 0 0 2px #f9c22e;
}

.saldo-barra {
    background: linear-gradient(to right, #ff9800, #ffc107); /* Gradiente de amarelo */
    padding: 3rem;  /* Espaçamento interno */
    display: flex;
    box-shadow: 0px 2px 6px #77675e;
    justify-content: center;  /* Alinha o texto à esquerda e direita */
    align-items: center;  /* Alinha o texto verticalmente no meio */
}

.fundo-saldo {
    background-color: #fff9f3; /* 0.6 = 60% opacidade */
    border-radius: 10px;
    color: #251109;  /* Cor do texto */
    font-size: 20px;  /* Tamanho do texto */
    font-weight: bold;  /* Deixa o texto em negrito */
    align-items: center;  /* Alinha o texto verticalmente no meio */
    display: flex;
    justify-content: space-between; /* esquerda x direita */
    align-items: center;              /* vertical */
    padding: 1rem 2rem;               /*melhora espaçamento */
}

.card-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 2rem;
}

.card {
    background-color: #f8f7f2;
    border: 2px solid #251109;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 6px 6px rgba(27, 17, 13, 0.1);
    text-align: center;
}

.pagamento {
    padding: 1rem 0px 1rem;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin-right: auto;
    margin-left: auto;
}

button {
    display: block;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    background-color: #d3d3d3;
    border: none;
    padding: 10px;
    border-radius: 15px;
    font-size: 20px;
    cursor: pointer;
    margin-bottom: 10px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #c0c0c0;
}

span {
    font-size: 60px;
    margin-left: auto;
    margin-right: auto;
}
