:root {
    --verde-escuro: #0f4c43;
    --verde-folha: #2e7d32;
    --verde-medio: #1a6b5e;
    --verde-claro: #e8f5e9;
    --verde-borda: #b2dfdb;
    --fundo: #f7f9f8;
    --fundo-card: #ffffff;
    --texto-principal: #1f2937;
    --texto-secundario: #6b7280;
    --texto-branco: #ffffff;
    --sombra: 0 2px 12px rgba(15, 76, 67, 0.09);
    --sombra-hover: 0 6px 24px rgba(15, 76, 67, 0.16);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Sora', sans-serif;
    background: var(--fundo);
    color: var(--texto-principal);
    font-size: 12px;
}

/* ─── HEADER ─── */
header {
    padding: 0 2rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
    border-bottom: 2px solid #056b28;
}

.menu-vale {
    font-size: 10px;
    font-weight: 700;
    color: var(--texto-sec);
    text-transform: uppercase;
    letter-spacing: 0.09em;
    line-height: 14px;
}

.menu-vale.ativo {
    color: #056b28;
}

.bg-vale {
    background: #056b28;
}

.text-vale {
    color: #056b28;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.01em;
}

.header-logo-icon {
    max-width: 98px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-badge {
    background: rgba(255, 255, 255, 0.12);
    color: #056b28;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.btn-login {
    color: #056b28;
    border: 2px solid #056b28;
    border-radius: 8px;
    padding: 6px 16px;
    font-family: 'Sora', sans-serif;
    font-size: 9px;
    cursor: pointer;
    letter-spacing: 0.05em;
    transition: background 0.2s, transform 0.1s;
    white-space: nowrap;
    text-transform: uppercase;
}

.btn-login:hover {
    background: #056b28;
    color: #fff;
    transform: translateY(-1px);
}

/* ─── SEPARADOR VISUAL ENTRE DASHBOARD E FICHA ─── */
.section-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 40px 0 28px;
}

.section-divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, var(--verde-borda), transparent);
}

.section-divider-line-r {
    flex: 1;
    height: 2px;
    background: linear-gradient(to left, var(--verde-borda), transparent);
}

.section-divider-title {
    background: var(--verde-escuro);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 20px;
    white-space: nowrap;
}


/* ─── ANIMAÇÃO SUAVE ─── */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.35s ease forwards;
}




#buttonwhatsapp {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    border-radius: 30px 8px 30px 30px;
    background-color: #066b29;
    box-shadow: none;
    color: #fff;
    z-index: 2147483647;
    cursor: pointer;
    padding: 4px 12px;
    -webkit-font-smoothing: antialiased;
    position: fixed;
    bottom: 100px;
    right: 10px;
}

#buttonwhatsapp h5 {
font-size: 10px;
    font-weight: 400;
    color: #fff;
    padding: 0;
    margin: 0;
    line-height: 24px;
    text-transform: uppercase;
}

#buttonwhatsapp svg {
    display: block;
    width: 18px;
}

.fa,
.fa-brands,
.fa-regular,
.fa-solid,
.fab,
.far,
.fas {
    font-size: 14px;
}

footer {
    background: #056b28;
    color: white;
    padding: 2rem 0;
}

footer .content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
    width: 80%;
}

footer img {
    max-height: 20px;
}

footer p {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin: 3px 0;
}

.box-cards {
    border: 2px solid #ccc;
    border-radius: 32px;
    padding: 1rem 2rem;
    color: #575757;
}

#lineback {
    border-bottom: thin solid #ccc;
    margin: 0 0 28px;
}

#lineback .voltar a {
    font-size: 10px;
    font-weight: 600;
    color: #edb930;
    line-height: 20px;
    padding: 6px 0;
}

#lineback .logoprosas {
    text-align: right;
}

#lineback .logoprosas a {
    display: inline-block;
}