
        /* .container {
            max-width: 1200px;
            margin: 0 auto;
        } */

        /* Breadcrumb */
        .breadcrumb {
            margin-bottom: 40px;
            animation: slideDown 0.8s ease-out;
        }

        .breadcrumb a {
            color: #0052a3;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .breadcrumb a:hover {
            color: #003d7a;
            text-decoration: underline;
        }

        .breadcrumb span {
            color: #64748b;
            margin: 0 8px;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #0052a3 0%, #003d7a 100%);
            border-radius: 20px;
            padding: 60px 40px;
            color: white;
            margin-bottom: 80px;
            animation: fadeInUp 0.8s ease-out;
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .hero-image {
            flex: 0 0 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-content h1 {
            /* font-family: 'Sora', sans-serif; */
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 16px;
            margin-bottom: 20px;
            line-height: 1.8;
            opacity: 0.95;
        }

        .hero-content .price {
            /* font-family: 'Sora', sans-serif; */
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 30px;
        }

        .hero-content .price span {
            font-size: 16px;
            opacity: 0.9;
        }

        .cta-button {
            padding: 16px 40px;
            background: white;
            color: #0052a3;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            display: inline-block;
        }

        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .cta-button:active {
            transform: translateY(-2px);
        }

        /* Secciones de contenido */
        .content-section {
            background: white;
            border-radius: 20px;
            padding: 60px 40px;
            margin-bottom: 40px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            animation: fadeInUp 0.8s ease-out;
        }

        .content-section:nth-child(2) {
            animation-delay: 0.1s;
        }

        .content-section:nth-child(3) {
            animation-delay: 0.2s;
        }

        .content-section:nth-child(4) {
            animation-delay: 0.3s;
        }

        .content-section:nth-child(5) {
            animation-delay: 0.4s;
        }

        .section-title {
            /* font-family: 'Sora', sans-serif; */
            font-size: 32px;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 3px solid #0052a3;
        }

        .section-content {
            font-size: 15px;
            color: #64748b;
            line-height: 1.8;
        }

        .section-content p {
            margin-bottom: 20px;
        }

        /* Listas */
        .feature-list {
            list-style: none;
            margin: 20px 0;
        }

        .feature-list li {
            font-size: 15px;
            color: #64748b;
            margin-bottom: 16px;
            padding-left: 32px;
            position: relative;
            transition: all 0.3s ease;
        }

        .feature-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            width: 24px;
            height: 24px;
            background: rgba(0, 82, 163, 0.1);
            border: 2px solid #0052a3;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0052a3;
            font-weight: 700;
            font-size: 14px;
        }

        .feature-list li:hover {
            color: #0f172a;
            transform: translateX(5px);
        }

        /* Grid de características */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .feature-card {
            background: linear-gradient(135deg, rgba(0, 82, 163, 0.05) 0%, rgba(0, 82, 163, 0.02) 100%);
            border: 2px solid #e2e8f0;
            border-radius: 16px;
            padding: 30px;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            border-color: #0052a3;
            background: linear-gradient(135deg, rgba(0, 82, 163, 0.1) 0%, rgba(0, 82, 163, 0.05) 100%);
            transform: translateY(-5px);
        }

        .feature-card h4 {
            /* font-family: 'Sora', sans-serif; */
            font-size: 18px;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 12px;
        }

        .feature-card p {
            font-size: 14px;
            color: #64748b;
            line-height: 1.6;
        }

        /* Sección de proceso */
        .process-section {
            margin-top: 30px;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .step {
            text-align: center;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #0052a3 0%, #003d7a 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            /* font-family: 'Sora', sans-serif; */
            font-size: 28px;
            font-weight: 800;
            margin: 0 auto 20px;
            transition: all 0.3s ease;
        }

        .step:hover .step-number {
            transform: scale(1.1);
            box-shadow: 0 10px 25px rgba(0, 82, 163, 0.3);
        }

        .step h4 {
            /* font-family: 'Sora', sans-serif; */
            font-size: 18px;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 12px;
        }

        .step p {
            font-size: 14px;
            color: #64748b;
            line-height: 1.6;
        }

        /* Sección de preguntas frecuentes */
        .faq-item {
            margin-bottom: 20px;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: #0052a3;
            box-shadow: 0 5px 15px rgba(0, 82, 163, 0.1);
        }

        .faq-question {
            padding: 20px;
            background: #f8fafc;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: #0f172a;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: #f1f5f9;
        }

        .faq-toggle {
            font-size: 20px;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            color: #64748b;
            font-size: 14px;
            line-height: 1.8;
        }

        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 500px;
        }

        /* CTA Final */
        .final-cta {
            background: linear-gradient(135deg, #0052a3 0%, #003d7a 100%);
            border-radius: 20px;
            padding: 60px 40px;
            text-align: center;
            color: white;
            margin-top: 80px;
            animation: fadeInUp 0.8s ease-out 0.5s both;
        }

        .final-cta h2 {
            /* font-family: 'Sora', sans-serif; */
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .final-cta p {
            font-size: 16px;
            margin-bottom: 30px;
            opacity: 0.95;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-section {
                gap: 40px;
            }

            .hero-image {
                flex: 0 0 250px;
                height: 250px;
            }

            .hero-content h1 {
                font-size: 36px;
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                flex-direction: column;
                gap: 30px;
                padding: 40px 30px;
            }

            .hero-image {
                flex: 0 0 100%;
                height: 250px;
            }

            .hero-content h1 {
                font-size: 28px;
            }

            .hero-content p {
                font-size: 15px;
            }

            .content-section {
                padding: 40px 30px;
            }

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

            .features-grid {
                grid-template-columns: 1fr;
            }

            .process-steps {
                grid-template-columns: 1fr;
            }

            .final-cta {
                padding: 40px 30px;
            }

            .final-cta h2 {
                font-size: 28px;
            }
        }

        @media (max-width: 480px) {
           

            .breadcrumb {
                font-size: 12px;
            }

            .hero-section {
                padding: 30px 20px;
            }

            .hero-image {
                height: 200px;
            }

            .hero-content h1 {
                font-size: 24px;
            }

            .hero-content p {
                font-size: 14px;
            }

            .hero-content .price {
                font-size: 28px;
            }

            .content-section {
                padding: 30px 20px;
            }

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

            .section-content {
                font-size: 14px;
            }

            .feature-card {
                padding: 20px;
            }

            .feature-card h4 {
                font-size: 16px;
            }

            .step-number {
                width: 50px;
                height: 50px;
                font-size: 24px;
            }

            .step h4 {
                font-size: 16px;
            }

            .faq-question {
                padding: 16px;
                font-size: 14px;
            }

            .final-cta {
                padding: 30px 20px;
            }

            .final-cta h2 {
                font-size: 24px;
            }

            .final-cta p {
                font-size: 14px;
            }

            .cta-button {
                padding: 14px 30px;
                font-size: 14px;
            }
        }

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

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