.elementor-119 .elementor-element.elementor-element-4114a8c3{--display:flex;}/* Start custom CSS *//* =========================================
   CONTENEDOR PRINCIPAL
========================================= */
.site-main.page {
    max-width: 850px;
    margin: 0 auto;
    padding: 40px 16px;
    font-family: 'Inter', sans-serif;
    color: #333;
}

/* Título */
.page-header .entry-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #222;
}

/* =========================================
   FORMULARIO DE BÚSQUEDA - MotoPress
========================================= */

.mphb_sc_search-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px 25px;
    padding: 25px;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 14px;
}

/* Label */
.mphb_sc_search-form label {
    font-weight: 600;
    font-size: 15px;
    color: #333;
    margin-bottom: 6px;
    display: block;
}

/* Inputs generales */
.mphb_sc_search-form input[type="text"],
.mphb_sc_search-form select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    background: #fff;
    transition: border .2s ease, box-shadow .2s ease;
}

/* Hover / Focus */
.mphb_sc_search-form input[type="text"]:focus,
.mphb_sc_search-form select:focus {
    border-color: #00a18c;
    box-shadow: 0 0 0 2px rgba(0, 161, 140, 0.15);
    outline: none;
}

/* Placeholder */
.mphb_sc_search-form input::placeholder {
    color: #999;
}

/* Texto de campos obligatorios */
.mphb-required-fields-tip small {
    color: #777;
    font-size: 13px;
    margin-bottom: 10px;
    display: inline-block;
}

/* =========================================
   BOTÓN SUBMIT
========================================= */

.mphb_sc_search-submit-button-wrapper input[type="submit"] {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    background: #00897b;
    color: white;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background .25s ease;
}

.mphb_sc_search-submit-button-wrapper input[type="submit"]:hover {
    background: #006f63;
}

/* Asegura que el botón ocupe fila completa */
.mphb_sc_search-submit-button-wrapper {
    grid-column: 1/-1;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 480px) {
    .mphb_sc_search-form {
        grid-template-columns: 1fr;
        padding: 20px;
    }
}/* End custom CSS */