        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Metropolis', sans-serif;
            background: linear-gradient(135deg, #7557C1 0%, #0C53A1 100%);
            min-height: 100vh;
            color: #333;
            overflow-x: hidden;
        }

        #root {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* PARTÍCULAS DE FONDO */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .particle {
            position: absolute;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            animation: float linear infinite;
        }

        @keyframes float {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }

        /* HEADER */
        .header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 0 40px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
            height: 10vh;
            display: flex;
            align-items: center;
            animation: slideDown 0.6s ease;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .header-content {
            display: flex;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            position: relative;
        }

        .logo {
            height: 150px;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05) rotate(5deg);
        }

        .header-title {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            font-size: 28px;
            background: linear-gradient(135deg, #7557C1 0%, #0C53A1 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        /* CONTROLES */
        .controls {
            max-width: 1400px;
            margin: 30px auto 20px;
            padding: 0 40px;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            position: relative;
            z-index: 10;
        }

        .search-box {
            flex: 1;
            min-width: 300px;
            position: relative;
        }

        .search-input {
            width: 100%;
            padding: 14px 20px 14px 50px;
            border-radius: 15px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            font-size: 15px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .search-input:focus {
            outline: none;
            border-color: white;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            transform: translateY(-2px);
        }

        .search-icon {
            position: absolute;
            left: 18px;
            top: 50%;
            transform: translateY(-50%);
            color: #7557C1;
            font-size: 20px;
        }

        .filter-buttons {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 12px 24px;
            border-radius: 12px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .filter-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .filter-btn.active {
            background: white;
            color: #7557C1;
            border-color: white;
            box-shadow: 0 4px 15px rgba(255,255,255,0.3);
        }

        /* TITULO SECCION */
        .section-title {
            text-align: center;
            font-size: 48px;
            margin: 20px 0 30px;
            color: #ffffff;
            font-weight: 700;
            text-shadow: 0 4px 12px rgba(0,0,0,0.2);
            animation: fadeInScale 0.8s ease;
            position: relative;
            z-index: 10;
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* CONTADOR */
        .job-counter {
            text-align: center;
            color: rgba(255, 255, 255, 0.9);
            font-size: 18px;
            margin-bottom: 20px;
            font-weight: 500;
            position: relative;
            z-index: 10;
        }

        /* CONTENEDOR */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px 60px;
            flex: 1;
            position: relative;
            z-index: 10;
        }

        /* GRID */
        .job-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: flex-start;
        }

        .job-card {
            flex: 0 0 calc(33.333% - 20px);
            min-width: 280px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 30px;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
            animation: cardEntrance 0.6s ease backwards;
        }

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

        .job-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #7557C1 0%, #0C53A1 100%);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .job-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .job-card:hover::before {
            transform: scaleX(1);
        }

        .job-card:hover::after {
            opacity: 1;
        }

        .job-card:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: 0 25px 50px rgba(102, 126, 234, 0.5);
            border-color: #667eea;
        }

        .job-title {
            font-size: 24px;
            font-weight: 700;
            background: linear-gradient(135deg, #7557C1 0%, #0C53A1 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .job-info {
            margin: 12px 0;
            font-size: 15px;
            color: #555;
            display: flex;
            align-items: center;
            gap: 10px;
            position: relative;
            z-index: 1;
        }

        .job-info::before {
            content: '●';
            color: #667eea;
            font-size: 10px;
            animation: pulse 2s ease infinite;
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }

        /* MODAL */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.8);
            backdrop-filter: blur(10px);
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            z-index: 1000;
            animation: fadeIn 0.3s ease;
        }

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

        .modal-content {
            background: white;
            width: 100%;
            height: auto;
            max-width: 1000px;
            border-radius: 24px;
            display: flex;
            padding: 40px;
            gap: 40px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            position: relative;
            animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 45px;
            height: 45px;
            font-size: 24px;
            color: #7557C1;
            cursor: pointer;
            background: rgba(102, 126, 234, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
            border: none;
        }

        .close-modal:hover {
            background: #7557C1;
            color: white;
            transform: rotate(90deg) scale(1.1);
        }

        .left-info {
            width: 50%;
            padding-right: 20px;
        }

        .left-info h2 {
            margin-top: 0;
            background: linear-gradient(135deg, #7557C1 0%, #0C53A1 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .left-info p {
            margin: 15px 0;
            color: #555;
            font-size: 16px;
            line-height: 1.6;
        }

        .left-info p strong {
            color: #7557C1;
            font-weight: 600;
        }

        .right-form {
            width: 50%;
            padding-left: 20px;
            border-left: 2px solid rgba(102, 126, 234, 0.2);
        }

        .right-form h3 {
            margin-top: 0;
            font-size: 24px;
            color: #333;
            font-weight: 700;
            margin-bottom: 25px;
        }

        .right-form label {
            display: block;
            margin: 18px 0 8px;
            font-size: 13px;
            font-weight: 600;
            color: #7557C1;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .right-form input {
            width: 100%;
            padding: 14px 16px;
            border-radius: 12px;
            border: 2px solid #e0e7ff;
            background: #f9fafb;
            transition: all 0.3s ease;
            font-size: 15px;
        }

        .right-form input:focus {
            outline: none;
            border-color: #7557C1;
            background: white;
            box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
            transform: translateY(-2px);
        }

        .submit-btn {
            width: 100%;
            padding: 16px;
            border: none;
            border-radius: 12px;
            background: linear-gradient(135deg, #7557C1 0%, #0C53A1 100%);
            color: white;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
        }

        .submit-btn:active {
            transform: translateY(-1px);
        }

        /* TOAST NOTIFICATION */
        .toast {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: white;
            padding: 20px 30px;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
            gap: 15px;
            z-index: 2000;
            animation: slideInRight 0.4s ease;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .toast-icon {
            width: 30px;
            height: 30px;
            background: linear-gradient(135deg, #7557C1 0%, #0C53A1 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
        }

        .toast-message {
            color: #333;
            font-weight: 600;
        }

        /* FOOTER */
        .footer {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            text-align: center;
            font-size: 14px;
            color: #7557C1;
            box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
            font-weight: 500;
            height: 10vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 100;
        }

        /* RESPONSIVE */
        @media (max-width: 1200px) {
            .job-card {
                flex: 0 0 calc(50% - 15px);
            }
        }

        @media (max-width: 768px) {
            .header-title {
                position: static;
                transform: none;
                margin-left: auto;
                font-size: 20px;
            }

            .controls {
                flex-direction: column;
            }

            .job-card {
                flex: 0 0 100%;
            }

            .modal-content {
                flex-direction: column;
                padding: 30px;
            }

            .left-info, .right-form {
                width: 100%;
                padding: 0;
                border: none;
            }

            .right-form {
                margin-top: 30px;
                padding-top: 30px;
                border-top: 2px solid rgba(102, 126, 234, 0.2);
            }

            .section-title {
                font-size: 36px;
            }
        }

        /* NO RESULTS */
        .no-results {
            text-align: center;
            padding: 60px 20px;
            color: white;
        }

        .no-results-icon {
            font-size: 64px;
            margin-bottom: 20px;
            opacity: 0.5;
        }

        .no-results-text {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .no-results-subtext {
            font-size: 16px;
            opacity: 0.8;
        }