    /* ==================== ESTILOS FORMULARIO HERO ==================== */
    .search-hero-wrapper.idea-style-search {
        background: linear-gradient(135deg, rgba(241, 105, 1, 0.95) 0%, rgba(213, 90, 0, 0.95) 100%);
        padding: 60px 20px;
        width: 100%;
    }

    .search-hero-wrapper .hero-search-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .search-hero-wrapper .hero-search-title {
        color: white;
        font-size: 36px;
        font-weight: bold;
        text-align: left;
        margin: 0 0 30px 0;
        text-transform: lowercase;
    }

    /* Primera letra en mayúscula */
    .search-hero-wrapper .hero-search-title::first-letter {
        text-transform: uppercase;
    }

    .search-hero-wrapper .hero-search-form {
        background: white;
        border-radius: 0px;
        padding: 30px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 15px;
    }

    /* ==================== Pestañas y campos en la misma fila ==================== */
    .search-hero-wrapper .hero-operation-tabs {
        display: flex;
        gap: 10px;
        flex: 0 0 auto;
        align-items: center;
        margin-bottom: 0;
    }

    .search-hero-wrapper .hero-tab {
        flex: 0 0 auto;
    }

    .search-hero-wrapper .hero-tab input[type="radio"] {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

    .search-hero-wrapper .hero-tab label {
        display: block;
        padding: 15px;
        text-align: center;
        font-size: 18px;
        font-weight: 600;
        color: #666;
        cursor: pointer;
        border: 2px solid #ddd;
        border-radius: 0px;
        transition: all 0.3s ease;
        background: white;
        border-color: #ddd !important;
    }

    .search-hero-wrapper .hero-tab input[type="radio"]:checked+label {
        color: white;
        background: #F16901;
        border-color: #F16901 !important;
    }

    .search-hero-wrapper .hero-tab label:hover {
        border-color: #F16901;
    }

    /* Barra de búsqueda */
    .search-hero-wrapper .hero-search-bar {
        display: flex !important;
        gap: 15px;
        align-items: center;
        flex: 1 1 auto;
    }

    .search-hero-wrapper .hero-field {
        flex: 1 1 220px;
        min-width: 220px;
        position: relative;
    }

    .search-hero-wrapper .hero-select,
    .search-hero-wrapper .hero-input {
        width: 100%;
        height: 56px;
        padding: 0 15px;
        border: 2px solid #ddd;
        border-radius: 0px;
        font-size: 16px;
        color: #333;
        background: white;
        transition: border-color 0.3s ease;
    }

    .search-hero-wrapper .hero-select {
        cursor: pointer;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 12px center;
        background-size: 24px;
        padding-right: 40px;
    }

    .search-hero-wrapper .hero-location {
        position: relative;
    }

    .search-hero-wrapper .hero-location .location-icon {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        fill: #F16901;
        z-index: 2;
        pointer-events: none;
    }

    .search-hero-wrapper .hero-location .hero-input {
        padding-left: 45px;
    }

    .search-hero-wrapper .hero-select:focus,
    .search-hero-wrapper .hero-input:focus {
        outline: none;
        border-color: #F16901;
    }

    .search-hero-wrapper .hero-search-btn {
        height: 56px;
        padding: 0 40px;
        background: #222;
        color: white;
        border: none;
        border-radius: 0px;
        font-size: 18px;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s ease;
        white-space: nowrap;
        flex: 0 0 auto;
    }

    .search-hero-wrapper .hero-search-btn:hover {
        background: #000;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .search-hero-wrapper .hero-search-btn svg {
        fill: white;
    }

    /* ==================== Responsive ==================== */
    @media (max-width: 1024px) {
        .search-hero-wrapper .hero-search-bar {
            flex-wrap: wrap;
        }
    }

    /* Para móviles específicamente */
    @media (max-width: 768px) {
        #bloque_buscador_hero {
            border-radius: 5px;
        }

        #form-hero-search {
            width: 100% !important;
        }

        .search-hero-wrapper.idea-style-search {
            background: linear-gradient(135deg, rgba(241, 105, 1, 0.95) 0%, rgba(213, 90, 0, 0.95) 100%);
            width: 100%;
            box-sizing: border-box;
            overflow: hidden;
            margin-top: 50px;
            padding: 40px 15px;
        }

        .search-hero-wrapper .hero-search-container {
            width: 100%;
        }

        .hero-search-container h2 {
            font-size: 13px !important;
            text-align: center !important;
        }

        .hero-search-title {
            color: white;
            font-weight: bold;
            text-align: center;
            margin: 0 0 25px 0;
            text-transform: lowercase;
            word-break: break-word;
        }

        .search-hero-wrapper .hero-search-form {
            flex-direction: column;
            gap: 12px;
            padding: 15px;
            align-items: stretch;
        }

        .search-hero-wrapper .hero-operation-tabs {
            flex-direction: row;
            justify-content: center;
            gap: 8px;
            width: 100%;
            margin-bottom: 12px;
        }

        .search-hero-wrapper .hero-tab {
            flex: 1 1 auto;
            max-width: 48%;
        }

        .search-hero-wrapper .hero-tab label {
            padding: 12px 16px;
            font-size: 15px;
            width: 100%;
        }

        .search-hero-wrapper .hero-search-bar {
            flex-direction: column;
            gap: 12px;
            align-items: stretch;
            width: 100%;
        }

        .search-hero-wrapper .hero-field {
            width: 100%;
            min-width: unset;
            flex: 1 1 auto;
            margin-bottom: 0;
        }

        .search-hero-wrapper .hero-select,
        .search-hero-wrapper .hero-input {
            width: 100%;
            height: 50px;
            font-size: 15px;
        }

        .search-hero-wrapper .hero-input::placeholder {
            font-size: 14.5px !important;
            font-weight: 100 !important;
            color: #555 !important;
        }

        .search-hero-wrapper .hero-location .hero-input {
            padding-left: 15px;
        }

        .location-icon {
            display: none;
        }

        .search-hero-wrapper .hero-search-btn {
            width: 100%;
            font-size: 20px !important;
            font-weight: 100 !important;
            height: 55px !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            gap: 10px !important;
            padding: 0 20px;
        }

        .search-hero-wrapper .hero-search-btn svg {
            width: 22px !important;
            height: 22px !important;
            fill: white !important;
        }

        /* Arreglo para margen entre video e informacion inferior */
        .vc_row.vc_row-o-full-height {
            height: auto !important;
            min-height: 0 !important;
            padding: 0 !important;
            margin-bottom: 0 !important;
        }
    }

    /* Estilos para el select */
    .hero-select,
    #hero_tipo_select {
        font-size: 16px !important;
        line-height: 1.5 !important;
        padding: 12px !important;
        text-align: left !important;
    }

    /* Estilos para las opciones del select */
    .hero-select option,
    #hero_tipo_select option {
        font-size: 16px !important;
        line-height: 1.5 !important;
        padding: 8px 12px !important;
        text-align: left !important;
    }

    /* Para móviles - texto más grande */
    @media (max-width: 768px) {

        .hero-select,
        #hero_tipo_select {
            font-size: 16px !important;
            /* Mantener 16px mínimo para móviles */
        }

        .hero-select option,
        #hero_tipo_select option {
            font-size: 16px !important;
            padding: 10px !important;
        }
    }