/* style.css - O Design Global do Help CLT */
:root {
    --primary: #0284c7; /* Azul CLT */
    --secondary: #7c3aed; /* Roxo PJ */
    --accent: #f97316;  /* Laranja Ação */
    --bg: #f8fafc;
    --card: #ffffff;
    --text: #334155;
    --border: #e2e8f0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background-color: var(--card);
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    padding-bottom: 20px;
}

h1, h2 { margin: 0; }

/* Estilos de Formulário Padrão */
.form-group { margin-bottom: 18px; padding: 0 20px; }
label { display: block; margin-bottom: 6px; font-weight: 600; font-size: 13px; color: #475569; }
input, select { width: 100%; padding: 14px; border: 2px solid var(--border); border-radius: 8px; font-size: 16px; box-sizing: border-box; transition: 0.3s; }
input:focus, select:focus { outline: none; border-color: var(--primary); }

/* Botões Padrão */
.btn-calc { width: calc(100% - 40px); margin-left: 20px; padding: 16px; color: white; border: none; border-radius: 8px; font-size: 18px; font-weight: bold; cursor: pointer; transition: 0.3s; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
.btn-clt { background-color: var(--primary); }
.btn-clt:hover { background-color: #0369a1; }
.btn-pj { background-color: var(--secondary); }
.btn-pj:hover { background-color: #6d28d9; }

/* Resultados e Rodapé */
.result-box { display: none; margin: 20px; padding: 20px; border-radius: 12px; background-color: #f8fafc; border: 1px solid var(--border); }
.result-row { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 14px; color: #334155; }
.result-total { margin-top: 15px; padding-top: 15px; border-top: 1px dashed #cbd5e1; display: flex; justify-content: space-between; font-weight: 800; font-size: 18px; }
.total-clt { color: var(--primary); }
.footer-note { font-size: 11px; color: #94a3b8; text-align: center; margin-top: 20px; line-height: 1.4; padding: 0 20px;}