body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

h2 {
    font-weight: 700;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 1px;
}
h4 {
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 20px;
    color: #000;
}

.form-section {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: all 0.3s ease-in-out;
}

.form-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.form-section h4 {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 20px;
    color: #CF2E2E;
    border-left: 4px solid #CF2E2E;
    padding-left: 10px;
}

.form-control {
    border-radius: 10px;
    border: 1px solid #ced4da;
    transition: border 0.3s;
}

.form-control:focus {
    border-color: #CF2E2E;
    box-shadow: 0 0 0 0.25rem rgba(22, 160, 133, 0.25);
}

label {
    font-weight: 500;
    margin-bottom: 5px;
    color: #34495e;
}

.checkbox-group {
    display: flex;
    gap: 15px;
    margin-top: 5px;
}

.checkbox-item {
    font-weight: 500;
    color: #2c3e50;
}

#imagenes-container img {
    max-width: 200px;
    border-radius: 10px;
    margin: 10px auto;
    display: block;
    border: 2px solid #e0e0e0;
    padding: 5px;
    background: #fafafa;
}

/* Botones */
.btn {
    border-radius: 5px;
    font-weight: 600;
    padding: 5px 10px;
    transition: all 0.3s ease-in-out;
}

.btn:hover {
    transform: scale(1.02);
}

.btn-success {
    background: linear-gradient(135deg, #CF2E2E, #1abc9c);
    border: none;
}

.btn-secondary {
    background: linear-gradient(135deg, #95a5a6, #7f8c8d);
    border: none;
}

.modalGeneralesLabel, .modalDatos {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 20px;
    color: #CF2E2E;
    border-left: 4px solid #CF2E2E;
    padding-left: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .form-section {
        padding: 15px;
    }
}