.resumo-intro {
margin-bottom: 20px;
}

.resumo-secao {
border: 1px solid #e5e7eb;
border-radius: 12px;
padding: 16px 18px;
margin-bottom: 16px;
background: #f9fafb;
}

.resumo-secao-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 8px;
}

.resumo-secao-header h4 {
margin: 0;
font-size: 15px;
font-weight: 700;
color: #3d3d3d;
}

.link-editar {
background: none;
border: none;
color: #4f46e5;
font-size: 13px;
font-weight: 600;
cursor: pointer;
padding: 4px 8px;
margin: -4px -8px;
border-radius: 8px;
transition: background .2s ease;
}

.link-editar:hover {
background: rgba(79, 70, 229, 0.1);
}

.resumo-item {
display: flex;
align-items: baseline;
justify-content: space-between;
gap: 12px;
padding: 8px 0;
border-top: 1px solid #e5e7eb;
}

.resumo-item:first-of-type {
border-top: none;
}

.resumo-label {
font-size: 13px;
color: #6b7280;
flex-shrink: 0;
}

.resumo-valor {
font-size: 14px;
font-weight: 600;
color: #111827;
text-align: right;
word-break: break-word;
}

@media (max-width: 480px) {

.resumo-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.resumo-valor {
    text-align: left;
}

}
