/* ================================
   Estilos principais da calculadora
   ================================ */

.pimo-calculator-wrapper {
    max-width: 480px;
    margin: 40px auto;
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    font-family: "Inter", sans-serif;
}

.pimo-title {
    text-align: center;
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 600;
}

/* Campos */
.pimo-field {
    margin-bottom: 18px;
}

.pimo-field label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
}

.pimo-field input,
.pimo-field select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #dcdcdc;
    font-size: 15px;
    transition: 0.2s;
}

.pimo-field input:focus,
.pimo-field select:focus {
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0,115,170,0.2);
}

/* Checkbox ferragens */
.pimo-checkbox {
    display: block;
    margin-bottom: 8px;
    cursor: pointer;
}

.pimo-checkbox input {
    margin-right: 6px;
}

/* Botões */
.pimo-btn {
    width: 100%;
    padding: 12px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s;
    margin-top: 10px;
}

.pimo-btn:hover {
    background: #005f8a;
}

.pimo-btn-save {
    background: #28a745;
}

.pimo-btn-save:hover {
    background: #1f8a38;
}

/* Resultado */
.pimo-result {
    margin-top: 25px;
    padding: 20px;
    background: #f7f7f7;
    border-radius: 10px;
    border: 1px solid #e1e1e1;
}

.pimo-result h3 {
    margin-top: 0;
    margin-bottom: 12px;
}

/* Responsivo */
@media (max-width: 480px) {
    .pimo-calculator-wrapper {
        padding: 18px;
    }
}
