/* ===============================
   ENCUESTA DE SATISFACCION ISO
   =============================== */

.contact form {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid #e5e5e5;
}

/* T赤tulos */
.contact h2 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact p {
    font-weight: 500;
    margin-bottom: 6px;
    color: #34495e;
}

/* Inputs y selects */
.contact input.text,
.contact select.text,
.contact textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    background-color: #fafafa;
    transition: all 0.2s ease-in-out;
}

/* Hover / focus */
.contact input.text:focus,
.contact select.text:focus,
.contact textarea:focus {
    border-color: #2980b9;
    background-color: #ffffff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(41,128,185,0.15);
}

/* Separaci車n entre campos */
.contact .to {
    margin-bottom: 25px;
}

/* Textarea */
.contact textarea {
    min-height: 120px;
    resize: vertical;
}

/* Bot車n */
.form-submit input[type="submit"] {
    background: #2980b9;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

/* Hover bot車n */
.form-submit input[type="submit"]:hover {
    background: #1f6391;
}

/* Alineaci車n bot車n */
.form-submit {
    margin-top: 20px;
    text-align: right;
}

/* Responsive */
@media (max-width: 768px) {
    .contact form {
        padding: 20px;
    }

    .form-submit {
        text-align: center;
    }
}
