.bcm-widget,
.bcm-widget * {
    font-family: 'Lato', sans-serif !important;
    box-sizing: border-box;
}

.bcm-widget {
    width: 1440px;
    display: flex;
    align-items: stretch;
    margin: 0 auto;
}

.bcm-panel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    width: 570px;
    max-width: 100%;
    flex: none;
    padding: 70px;
    background: #f4f4f4;
}

.bcm-titulo {
    margin: 0;
    font-size: 31.25px;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
}

.bcm-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 420px;
    max-width: 100%;
}

.bcm-select-wrap {
    position: relative;
    width: 100%;
}

.bcm-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    height: 52px;
    padding: 10px 50px 10px 20px;
    background: #fff;
    border: 1px solid #dde2e6;
    border-radius: 10px;
    font-size: 16px;
    color: #1a1a1a;
    cursor: pointer;
}

.bcm-select:invalid,
.bcm-select option[value=""] {
    color: #6b6b6b;
}

.bcm-chevron {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    pointer-events: none;
}

.bcm-btn-buscar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 230px;
    max-width: 100%;
    height: 52px;
    padding: 10px 25px;
    background: #ffb800;
    border: none;
    border-radius: 100px;
    font-size: 16px;
    color: #1a1a1a;
    cursor: pointer;
}

.bcm-imagen {
    flex: 1 0 0;
    min-width: 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

.bcm-imagen::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

@media (max-width: 900px) {
    .bcm-widget {
        flex-direction: column;
    }

    .bcm-panel {
        width: 100%;
        padding: 40px 20px;
    }

    .bcm-form {
        width: 100%;
    }

    .bcm-imagen {
        min-height: 260px;
    }
}