
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #2c3e50;
            line-height: 1.6;
            background: #f8f9fa;
        }

        header {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo h2 {
            color: #2c3e50;
            font-size: 1.5rem;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        nav a {
            text-decoration: none;
            color: #2c3e50;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #f39c12;
        }

        .hero-process {
            margin-top: 80px;
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            padding: 6rem 2rem;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero-process::before {
            content: '';
            position: absolute;
            top: -20%;
            right: -15%;
            width: 600px;
            height: 600px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .hero-process::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -15%;
            width: 500px;
            height: 500px;
            background: rgba(255,255,255,0.08);
            border-radius: 50%;
            animation: float 8s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .hero-process-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-process h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .hero-process p {
            font-size: 1.3rem;
            opacity: 0.95;
        }

        .intro-section {
            max-width: 900px;
            margin: 4rem auto;
            padding: 0 2rem;
            text-align: center;
        }

        .intro-section h2 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 1rem;
        }

        .intro-section p {
            font-size: 1.2rem;
            color: #7f8c8d;
            line-height: 1.8;
        }

        .steps-timeline {
            max-width: 1200px;
            margin: 4rem auto;
            padding: 0 2rem;
            position: relative;
        }

        .timeline-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(180deg, #f39c12, #e67e22);
            transform: translateX(-50%);
        }

        .step {
            display: grid;
            grid-template-columns: 1fr 100px 1fr;
            gap: 2rem;
            margin-bottom: 4rem;
            align-items: center;
        }

        .step:nth-child(even) .step-content {
            order: 3;
        }

        .step:nth-child(even) .step-empty {
            order: 1;
        }

        .step-content {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .step-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .step-number-container {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #f39c12, #e67e22);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: bold;
            color: white;
            box-shadow: 0 5px 20px rgba(243, 156, 18, 0.4);
        }

        .step-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .step-content h3 {
            font-size: 1.8rem;
            color: #2c3e50;
            margin-bottom: 1rem;
        }

        .step-content p {
            color: #7f8c8d;
            margin-bottom: 1rem;
            line-height: 1.8;
        }

        .step-details {
            list-style: none;
            margin-top: 1rem;
        }

        .step-details li {
            padding: 0.5rem 0;
            color: #34495e;
            position: relative;
            padding-left: 1.5rem;
        }

        .step-details li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: #f39c12;
            font-weight: bold;
        }

        .step-empty {
            /* Espacio vacío para el diseño alternado */
        }

        .requirements-section {
            background: white;
            padding: 4rem 2rem;
            margin: 4rem 0;
        }

        .requirements-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 3rem;
        }

        .requirements-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
        }

        .requirement-card {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 20px;
            border-left: 5px solid #f39c12;
            transition: transform 0.3s;
        }

        .requirement-card:hover {
            transform: translateX(10px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .requirement-card h3 {
            color: #2c3e50;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .requirement-card h3::before {
            content: '📋';
            font-size: 1.8rem;
        }

        .requirement-card ul {
            list-style: none;
        }

        .requirement-card li {
            padding: 0.5rem 0;
            color: #34495e;
            position: relative;
            padding-left: 1.5rem;
        }

        .requirement-card li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #f39c12;
            font-weight: bold;
        }

        .timeline-visual {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 4rem 2rem;
            color: white;
        }

        .timeline-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .timeline-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .timeline-item {
            text-align: center;
        }

        .timeline-day {
            width: 80px;
            height: 80px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 1.5rem;
            font-weight: bold;
            backdrop-filter: blur(10px);
        }

        .timeline-item h4 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .timeline-item p {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .faq-section {
            max-width: 900px;
            margin: 4rem auto;
            padding: 0 2rem;
        }

        .faq-item {
            background: white;
            margin-bottom: 1rem;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .faq-question {
            padding: 1.5rem;
            background: white;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: #2c3e50;
            transition: background 0.3s;
        }

        .faq-question:hover {
            background: #f8f9fa;
        }

        .faq-icon {
            font-size: 1.5rem;
            color: #f39c12;
            transition: transform 0.3s;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            background: #f8f9fa;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-answer-content {
            padding: 1.5rem;
            color: #7f8c8d;
            line-height: 1.8;
        }

        .cta-section {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            padding: 4rem 2rem;
            text-align: center;
            color: white;
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .CTA {
            display: inline-block;
            background: #f39c12;
            color: white;
            padding: 1rem 3rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
        }

        .CTA:hover {
            background: #e67e22;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(243, 156, 18, 0.6);
        }

        .mobile-menu {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #2c3e50;
            cursor: pointer;
        }

        @media (max-width: 968px) {
            .hero-process h1 {
                font-size: 2rem;
            }

            .hero-process p {
                font-size: 1rem;
            }

            .timeline-line {
                left: 30px;
            }

            .step {
                grid-template-columns: 60px 1fr;
                gap: 1rem;
            }

            .step:nth-child(even) .step-content {
                order: 2;
            }

            .step:nth-child(even) .step-empty {
                display: none;
            }

            .step-empty {
                display: none;
            }

            .step-number {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .requirements-grid {
                grid-template-columns: 1fr;
            }

            .timeline-grid {
                grid-template-columns: 1fr;
            }

            nav ul {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                gap: 0;
                padding: 1rem 0;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
                display: none;
            }

            nav ul.show {
                display: flex;
            }

            nav li {
                padding: 0.5rem 2rem;
            }

            .mobile-menu {
                display: block;
            }
        }
