        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        }

        body {
            background-color: #fff7f5;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 1rem;
            width: 100%;
        }

        /* =========================================
           ENCABEZADO Y ANIMACIONES
           ========================================= */

        .busqueda-header {
            margin-bottom: 2rem;
            position: relative;
            z-index: 100;
        }

        .titulo-pagina {
            font-size: 2rem;
            font-weight: 700;
            color: #222;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .titulo-pagina::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background-color: #ff6600;
            border-radius: 2px;
        }

        /* =========================================
           BARRA DE BÚSQUEDA HORIZONTAL (PILL)
           ========================================= */

        .search-bar-container {
            display: flex;
            gap: 0.5rem;
            align-items: center;
            flex-wrap: wrap;
            margin-bottom: 1.5rem;
            background: #fff;
            padding: 0.6rem;
            border-radius: 100px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            position: relative;
            z-index: 1100;
        }

        /* 1. Input de Texto */
        .search-input-wrap {
            flex: 2;
            position: relative;
            min-width: 200px;
        }

        .search-input {
            width: 100%;
            padding: 0.8rem 1rem 0.8rem 2.8rem;
            border: 1px solid #e5e7eb;
            border-radius: 100px;
            background-color: #f9fafb;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            outline: none;
        }

        .search-input:focus {
            border-color: #ff6600;
            background-color: #fff;
            box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
        }

        .search-icon {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: #ff6600;
            font-size: 1.1rem;
        }

        .clear-search-icon {
            position: absolute;
            right: 0.8rem;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #9ca3af;
            cursor: pointer;
            padding: 5px;
            font-size: 0.9rem;
            transition: color 0.2s;
        }
        .clear-search-icon:hover { color: #ff6600; }

        /* 2. Dropdowns */
        .location-dropdown {
            flex: 1;
            position: relative;
            min-width: 120px;
        }

        .custom-dropdown {
            position: relative;
            width: 100%;
        }

        .dropdown-selected {
            width: 100%;
            padding: 0.8rem 1.2rem;
            border: 1px solid #e5e7eb;
            border-radius: 100px;
            background-color: #f9fafb;
            font-size: 0.95rem;
            color: #4b5563;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
        }

        .dropdown-selected span {
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 110px;
            display: block;
        }

        .dropdown-selected:hover,
        .dropdown-menu.show ~ .dropdown-selected {
            border-color: #ff6600;
            background-color: #fff;
        }

        .dropdown-icon {
            transition: transform 0.3s ease;
            color: #6b7280;
            flex-shrink: 0;
            font-size: 0.8rem;
            margin-left: 5px;
        }

        /* Menú Desplegable MEJORADO (Transiciones) */
        .dropdown-menu {
            position: absolute;
            top: calc(100% + 15px);
            left: 0;
            right: 0;
            background: white;
            border-radius: 1.2rem;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
            z-index: 9999 !important;
            
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: block; 
            
            overflow: hidden;
            border: 1px solid rgba(255, 102, 0, 0.1);
            min-width: 180px;
        }

        .dropdown-menu.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-search {
            padding: 0.8rem;
            border-bottom: 1px solid #eee;
            position: sticky;
            top: 0;
            background: white;
            z-index: 1;
        }

        .dropdown-search input {
            width: 100%;
            padding: 0.6rem 0.6rem 0.6rem 2.2rem;
            border: 1px solid #eee;
            border-radius: 0.5rem;
            font-size: 0.9rem;
            outline: none;
            background: #f9f9f9;
        }

        .dropdown-search i {
            position: absolute;
            left: 1.2rem;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
            font-size: 0.8rem;
        }

        .dropdown-list {
            max-height: 250px;
            overflow-y: auto;
            padding: 0.5rem;
        }

        .dropdown-item {
            padding: 0.7rem 1rem;
            cursor: pointer;
            border-radius: 0.5rem;
            transition: all 0.2s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
            color: #333;
        }

        .dropdown-item:hover { background-color: #fff7ed; color: #ff6600; }
        .dropdown-item.selected { background-color: #ffe8e0; color: #ff6600; font-weight: 500; }
        .no-results { padding: 1rem; text-align: center; color: #999; font-size: 0.9rem; }

        /* 3. Botones */
        .botones-accion {
            display: flex;
            gap: 8px;
            flex-shrink: 0;
        }

        /* Botón Limpiar */
        .limpiar-btn {
            background-color: #fff;
            color: #555;
            border: 1px solid #d1d5db;
            border-radius: 100px;
            padding: 0 1rem;
            font-weight: 500;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            height: 44px;
            white-space: nowrap;
        }

        .limpiar-btn:hover {
            background-color: #f9fafb;
            border-color: #9ca3af;
            color: #111827;
        }

        /* Botón Buscar */
        .buscar-btn {
            background-color: #ff6600;
            color: white;
            border: none;
            border-radius: 100px;
            padding: 0 2rem;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 44px;
            white-space: nowrap;
        }

        .buscar-btn:hover {
            background-color: #e65500;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
        }

        .results-count {
            font-size: 1.1rem;
            color: #374151;
            font-weight: 500;
            margin-top: 1rem;
        }

        /* =========================================
           LAYOUT PRINCIPAL
           ========================================= */

        .content-container {
            display: flex;
            gap: 1.5rem;
            align-items: flex-start;
        }

        .filtros-container {
            width: 280px;
            flex-shrink: 0;
            position: sticky;
            top: 20px;
        }

        .contenido-principal {
            flex-grow: 1;
            min-width: 0;
        }

        /* =========================================
           FILTROS LATERALES (Desktop)
           ========================================= */

        .filtro-card {
            background-color: white;
            border-radius: 1rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(255, 102, 0, 0.1);
            overflow: hidden;
        }

        .filtro-header {
            padding: 1rem;
            font-weight: 600;
            font-size: 1rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid #eee;
        }

        .filtro-body { padding: 1rem; }

        .filtro-titulo {
            font-size: 0.85rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 0.75rem;
            text-transform: uppercase;
        }

        .filtro-grupo { margin-bottom: 1rem; }
        .filtro-grupo:last-child { margin-bottom: 0; }

        .filtro-check {
            display: flex;
            align-items: center;
            margin-bottom: 0.5rem;
            cursor: pointer;
        }

        .filtro-check input[type="checkbox"] {
            appearance: none;
            width: 16px;
            height: 16px;
            border: 2px solid #d1d5db;
            border-radius: 4px;
            margin-right: 0.75rem;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .filtro-check input[type="checkbox"]:checked {
            background-color: #ff6600; border-color: #ff6600;
        }

        .filtro-check input[type="checkbox"]:checked::after {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: white;
            font-size: 10px;
        }

        .filtro-check label { font-size: 0.9rem; color: #4b5563; cursor: pointer; transition: color 0.2s; }
        .filtro-check:hover label { color: #1f2937; }
        .filtro-separador { height: 1px; background-color: #eee; margin: 1rem 0; }

        .btn-limpiar-filtros {
            background: none; border: none; color: #999; cursor: pointer; padding: 5px; transition: color 0.2s; font-size: 0.9rem;
        }
        .btn-limpiar-filtros:hover { color: #dc3545; }

        /* Mobile Filters */
        .mobile-filters { display: none; margin-bottom: 1rem; }
        .filtro-btn {
            width: 100%; padding: 0.8rem; border: 1px solid #e5e7eb; border-radius: 100px;
            background-color: white; font-size: 1rem; color: #4b5563; cursor: pointer;
            display: flex; align-items: center; box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        .filtro-btn i { color: #ff6600; margin-right: 0.5rem; }

        .mobile-filtro-dropdown {
            display: none; background-color: white; border-radius: 1rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); overflow: hidden; margin-top: 0.5rem; border: 1px solid rgba(255, 102, 0, 0.1);
        }
        .mobile-filtro-dropdown.open { display: block; }
        .btn-limpiar-texto { background: none; border: none; color: #ff6600; font-size: 0.9rem; font-weight: 500; cursor: pointer; text-decoration: underline; }

        /* Ordenar Superior */
        .ordenar-container { display: flex; justify-content: flex-end; margin-bottom: 1rem; position: relative; z-index: 10; }
        .ordenar-select {
            appearance: none; padding: 0.6rem 2.5rem 0.6rem 1rem;
            background: white; border: 1px solid #d1d5db; border-radius: 0.5rem;
            font-size: 0.9rem; color: #374151; cursor: pointer;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
            transition: border-color 0.3s;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 10px center;
        }
        .ordenar-select:focus { border-color: #ff6600; outline: none; }

        /* =========================================
           TARJETAS DE VACANTES Y ANIMACIONES
           ========================================= */

        .vacante-card {
            background-color: white;
            border-radius: 1rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            margin-bottom: 1rem;
            overflow: hidden;
            border: 1px solid rgba(255, 102, 0, 0.1);
            position: relative;
            z-index: 1; 
            
            display: flex;
            flex-direction: column;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
        }

        .vacante-card.hidden {
            display: none !important;
        }

        .vacante-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .vacante-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
        }

        .vacante-body { padding: 1.5rem; display: flex; gap: 1.5rem; flex-grow: 1; }

        .empresa-logo-container {
            width: 80px; flex-shrink: 0; display: flex; flex-direction: column; align-items: center;
        }
        .empresa-logo {
            width: 80px; height: 80px; border-radius: 50%; background-color: #f3f4f6;
            display: flex; justify-content: center; align-items: center; overflow: hidden;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); margin-bottom: 0.5rem; transition: transform 0.3s ease;
        }
        .vacante-card:hover .empresa-logo { transform: scale(1.1); }

        @keyframes fadeInImage {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        .empresa-logo img { 
            max-width: 80%; 
            max-height: 80%; 
            object-fit: contain; 
            animation: fadeInImage 0.5s ease forwards;
        }

        .empresa-logo-placeholder { font-size: 1.5rem; font-weight: bold; color: white; background-color: #ff6600; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
        .empresa-nombre { font-size: 0.8rem; font-weight: 600; color: #374151; text-align: center; }

        .vacante-contenido { flex-grow: 1; }
        .vacante-titulo { font-size: 1.25rem; font-weight: 600; color: #111827; margin-bottom: 0.5rem; }
        .vacante-descripcion {
            color: #6b7280; font-size: 0.9rem; line-height: 1.5; margin-bottom: 0.75rem;
            display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
        }

        .vacante-etiquetas { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.5rem; }

        .vacante-etiqueta {
            display: flex; align-items: center; gap: 0.3rem; padding: 0.4rem 0.75rem;
            border-radius: 9999px; font-size: 0.75rem; font-weight: 500;
            transition: transform 0.2s ease, background-color 0.2s ease;
            cursor: default;
        }

        .vacante-etiqueta:hover {
            transform: scale(1.05);
        }

        .etiqueta-ubicacion { background-color: #ffe5db; color: #4f46e5; }
        .etiqueta-contrato { background-color: #d1fae5; color: #059669; }
        .etiqueta-categoria { background-color: #e0f2fe; color: #0284c7; }
        .etiqueta-tipo { background-color: #f3e8ff; color: #9333ea; }
        .etiqueta-salario { background-color: #fef3c7; color: #d97706; }
        .etiqueta-cierre { background-color: #fee2e2; color: #dc2626; }

        .vacante-meta { font-size: 0.75rem; color: #6b7280; display: flex; align-items: center; gap: 0.5rem; }

        .vacante-acciones {
            display: flex; flex-direction: column; justify-content: space-between; align-items: flex-end; width: 120px; flex-shrink: 0;
        }
        .favorito-btn {
            background: transparent; border: none; cursor: pointer; font-size: 1.25rem; color: #d1d5db;
            transition: color 0.2s, transform 0.2s; display: flex; align-items: center; justify-content: center;
            width: 36px; height: 36px; border-radius: 50%;
        }
        .favorito-btn:hover { color: #f59e0b; transform: scale(1.1); background-color: #fff8e6; }
        .favorito-btn.activo { color: #f59e0b; }

        .ver-mas-btn {
            padding: 0.5rem 1.25rem; background-color: #ff6600; color: white; border: none;
            border-radius: 0.5rem; font-size: 0.875rem; font-weight: 500; cursor: pointer;
            transition: all 0.3s ease; text-decoration: none; display: inline-block;
        }
        .ver-mas-btn:hover { background-color: #e65500; transform: translateY(-2px); box-shadow: 0 4px 8px rgba(255, 102, 0, 0.25); }

        /* Sin Resultados & Paginación */
        .sin-resultados {
            text-align: center; padding: 3rem 2rem; color: #6b7280; background-color: white;
            border-radius: 1rem; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .sin-resultados.visible { opacity: 1; transform: translateY(0); }

        .sin-resultados i { font-size: 4rem; margin-bottom: 1.5rem; color: #d1d5db; }
        .sin-resultados h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 1rem; color: #374151; }

        .paginacion { margin-top: 2rem; display: flex; justify-content: center; align-items: center; }
        .paginacion-lista { display: flex; justify-content: center; list-style: none; gap: 0.75rem; }
        .paginacion-item a {
            display: flex; align-items: center; justify-content: center; min-width: 40px; height: 40px;
            padding: 0 0.75rem; border-radius: 0.5rem; background-color: white; color: #4b5563;
            text-decoration: none; transition: all 0.2s ease; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }
        .paginacion-item a:hover { background-color: #f3f4f6; color: #111827; }
        .paginacion-item.activo a { background-color: #ff6600; color: white; font-weight: 600; }
        .paginacion-item.disabled a { opacity: 0.5; pointer-events: none; }

        /* Clases de utilidad */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .fade-in.visible { opacity: 1; transform: translateY(0); }

        /* =========================================
           MODAL DE MOVILIDAD (HERMOSILLO)
           ========================================= */

        .movilidad-modal {
            display: none;
            position: fixed;
            z-index: 10000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
            animation: fadeIn 0.3s ease;
        }

        .movilidad-modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .movilidad-content {
            background: white;
            border-radius: 16px;
            padding: 32px;
            max-width: 650px;
            width: 90%;
            max-height: 85vh;
            overflow-y: auto;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            animation: slideUp 0.3s ease;
        }

        .movilidad-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
        }

        .movilidad-header h3 {
            font-size: 24px;
            font-weight: 700;
            color: #1a1a1a;
            margin: 0;
        }

        .movilidad-close {
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: #666;
            transition: color 0.2s;
            padding: 0;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .movilidad-close:hover {
            color: #ff6b35;
        }

        .movilidad-subtitle {
            color: #666;
            font-size: 14px;
            margin-bottom: 24px;
        }

        .cuadrantes-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin-bottom: 24px;
        }

        .cuadrante-item {
            position: relative;
            aspect-ratio: 1;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            background: #f8f9fa;
        }

        .cuadrante-item:hover {
            border-color: #ff6b35;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
        }

        .cuadrante-item.selected {
            border-color: #ff6b35;
            border-width: 3px;
            background: #fff5f2;
        }

        .cuadrante-item input[type="checkbox"] {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }

        .cuadrante-label {
            position: absolute;
            top: 12px;
            left: 12px;
            background: white;
            border-radius: 8px;
            padding: 6px 12px;
            font-weight: 700;
            font-size: 14px;
            color: #1a1a1a;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            z-index: 2;
        }

        .cuadrante-item.selected .cuadrante-label {
            background: #ff6b35;
            color: white;
        }

        .cuadrante-check {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: white;
            border: 2px solid #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
            transition: all 0.3s ease;
        }

        .cuadrante-item.selected .cuadrante-check {
            background: #ff6b35;
            border-color: #ff6b35;
        }

        .cuadrante-check i {
            color: white;
            font-size: 12px;
            opacity: 0;
            transition: opacity 0.2s;
        }

        .cuadrante-item.selected .cuadrante-check i {
            opacity: 1;
        }

        .cuadrante-map {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(0.3);
            transition: filter 0.3s;
        }

        .cuadrante-item:hover .cuadrante-map {
            filter: grayscale(0);
        }

        .cuadrante-item.selected .cuadrante-map {
            filter: grayscale(0) brightness(1.1);
        }

        .movilidad-actions {
            display: flex;
            gap: 12px;
            justify-content: flex-end;
            margin-top: 24px;
            padding-top: 24px;
            border-top: 1px solid #e0e0e0;
        }

        .movilidad-btn {
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }

        .movilidad-btn-secondary {
            background: #f0f0f0;
            color: #666;
        }

        .movilidad-btn-secondary:hover {
            background: #e0e0e0;
        }

        .movilidad-btn-primary {
            background: #ff6b35;
            color: white;
        }

        .movilidad-btn-primary:hover {
            background: #e85a2a;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from { 
                opacity: 0;
                transform: translateY(30px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }

        .filtro-movilidad-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 16px;
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            margin-bottom: 16px;
        }

        .filtro-movilidad-btn:hover {
            border-color: #ff6b35;
            background: #fff5f2;
        }

        .filtro-movilidad-btn i {
            color: #ff6b35;
            font-size: 18px;
        }

        .filtro-movilidad-text {
            flex: 1;
        }

        .filtro-movilidad-text strong {
            display: block;
            color: #1a1a1a;
            font-size: 14px;
            margin-bottom: 2px;
        }

        .filtro-movilidad-text span {
            display: block;
            color: #666;
            font-size: 12px;
        }

        .filtro-movilidad-badge {
            background: #ff6b35;
            color: white;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 600;
        }

        /* RESPONSIVE */
        @media (max-width: 1100px) {
            .content-container { flex-direction: column; }
            .filtros-container { display: none; }
            .mobile-filters { display: block; }
            
            .search-bar-container { padding: 1rem; border-radius: 20px; }
            .search-input-wrap { flex: 100%; min-width: 100%; }
            .location-dropdown { flex: 1; min-width: 30%; }
            .botones-accion { flex: 100%; justify-content: flex-end; margin-top: 0.5rem; }
        }

        @media (max-width: 768px) {
            .container { padding: 0.75rem; }
            
            .search-bar-container { 
                flex-direction: column; 
                align-items: stretch; 
                gap: 0.8rem; 
                border-radius: 24px; 
                padding: 1.2rem; 
            }
            .search-input { 
                padding: 0.8rem 1rem 0.8rem 3rem; 
            }
            
            .location-dropdown { width: 100%; }
            .botones-accion { flex-direction: row; margin-top: 10px; width: 100%; }
            .limpiar-btn, .buscar-btn { flex: 1; justify-content: center; }
            
            .vacante-body { flex-direction: column; align-items: center; text-align: center; }
            .vacante-acciones { flex-direction: row; width: 100%; margin-top: 0.75rem; }
            .vacante-etiquetas { justify-content: center; }
            .empresa-logo-container { width: auto; }

            .cuadrantes-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .movilidad-content {
                padding: 24px 16px;
                max-height: 90vh;
            }

            .movilidad-header h3 {
                font-size: 20px;
            }
        }

        @media (min-width: 769px) {
            #limpiar-filtros-desktop { display: none !important; }
            .mobile-filters { display: none !important; }
        }