/* ================= BASE ================= */
body {
    background: #eef2f7;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #2c3e50;
    font-size: 15px;
    margin: 0;
}

/* ================= CONTAINER ================= */
.container {
    max-width: 900px;
    margin: auto;
    padding: 12px;
}

/* ================= TÍTULO ================= */
h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

/* ================= SEÇÕES ================= */
.section {
    background: #ffffff;
    padding: 18px;
    margin-bottom: 16px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: 0.2s;
}

.section:hover {
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

/* ================= TÍTULOS DAS SEÇÕES ================= */
.section h3 {
    margin: 0 0 12px 0;
    font-size: 17px;
    font-weight: 600;
    color: #34495e;
    border-bottom: 1px solid #f1f1f1;
    padding-bottom: 6px;
}

/* ================= CAMPOS ================= */
.field {
    margin-bottom: 15px;
}

/* ================= LABELS ================= */
label {
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 5px;
    display: block;
}

/* ================= INPUTS ================= */
.easyui-textbox input,
.easyui-combobox input {
    border-radius: 8px !important;
    border: 1px solid #dcdfe6 !important;
    font-size: 15px !important;
    height: 38px !important;
    padding: 0 10px !important;
    transition: 0.2s;
}

/* FOCO */
.easyui-textbox input:focus,
.easyui-combobox input:focus {
    border-color: #4a90e2 !important;
    box-shadow: 0 0 0 2px rgba(74,144,226,0.15);
}

/* ================= ERROS ================= */
.error {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 4px;
}

/* ================= TELEFONE ================= */
.telefone-container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* ================= CHECKBOX ================= */
input[type="checkbox"] {
    transform: scale(1.1);
    cursor: pointer;
}

/* ================= EXPERIÊNCIAS ================= */
.exp-card {
    background: #f9fbfd;
    border-left: 4px solid #4a90e2;
    padding: 14px;
    margin-bottom: 10px;
    border-radius: 8px;
    font-size: 15px;
    color: #374151;
    transition: 0.2s;
}
 
.exp-card:hover {
    background: #f1f6fb;
}

.exp-card b {
    display: block;
    margin-bottom: 6px;
    color: #2c3e50;
    font-size: 15px;
}

.exp-card .linha {
    margin-top: 4px;
}

/* ================= BOTÕES ================= */
.easyui-linkbutton {
    border-radius: 8px !important;
}

.easyui-linkbutton.c6 {
    background: #4a90e2 !important;
    border: none !important;
    color: #fff !important;
    font-size: 15px !important;
    transition: 0.2s;
}

.easyui-linkbutton.c6:hover {
    background: #357abd !important;
}

/* BOTÃO PRINCIPAL */
.easyui-linkbutton[onclick="salvar()"] {
    height: 48px !important;
    font-size: 16px !important;
}

/* ================= FILEBOX ================= */
.easyui-filebox input {
    font-size: 14px !important;
}

/* ================= MOBILE ================= */
@media (max-width: 600px) {

    body {
        font-size: 17px;
    }

    h2 {
        font-size: 20px;
    }

    .section {
        padding: 16px;
    }

    .section h3 {
        font-size: 18px;
    }

    label {
        font-size: 15px;
    }

    .easyui-textbox input,
    .easyui-combobox input {
        font-size: 17px !important;
        height: 44px !important;
    }

    .exp-card {
        font-size: 16px;
        padding: 14px;
    }

    .exp-card b {
        font-size: 16px;
    }

    .easyui-linkbutton.c6 {
        font-size: 17px !important;
    }

    .easyui-linkbutton[onclick="salvar()"] {
        height: 54px !important;
    }

    /* TELEFONE */
    .telefone-container input#telefone {
        flex: 1 1 100%;
    }

    .telefone-container label {
        flex: 1 1 100%;
        margin-top: 6px;
    }
}
