    /* ========== MOBILE CAROUSEL - SIMPLIFICADO: INDEX Y HOMOLOGACIONES ========== */

    @media (max-width: 767.98px) {
        /* OCULTAR SOLO CARRUSELES DE INDEX Y HOMOLOGACIONES EN MÓVILES */
        .project-carousel,
        .homologacion-carousel {
            display: none !important;
        }

        /* CONTENEDOR PRINCIPAL SIMPLIFICADO */
        .simple-mobile-carousel {
            width: 100%;
            position: relative;
            margin: 20px 0;
            padding: 10px;
            box-sizing: border-box;
            min-height: 320px;
            clear: both;
        }

        /* CONTENEDOR DE SLIDES SIMPLIFICADO */
        .simple-mobile-container {
            width: 100%;
            position: relative;
            min-height: 300px;
            clear: both;
        }

        /* SLIDE INDIVIDUAL SIMPLIFICADO */
        .simple-mobile-slide {
            width: 100%;
            display: none;
            padding: 10px;
            box-sizing: border-box;
            min-height: 280px;
            opacity: 0;
            transition: opacity 0.3s ease;
            clear: both;
        }

        .simple-mobile-slide.active {
            display: block;
            opacity: 1;
        }

        /* BOTONES DE NAVEGACIÓN MEJORADOS */
        .simple-nav-buttons {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 20px 0 10px 0;
            padding: 0 15px;
            gap: 15px;
            clear: both;
            position: relative;
        }

        .simple-nav-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
            border: 3px solid rgba(255, 255, 255, 0.9);
            color: white;
            font-size: 20px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            box-sizing: border-box;
            box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
            position: relative;
            z-index: 10;
        }

        .simple-nav-btn:hover:not(:disabled) {
            background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
            transform: scale(1.1) translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
        }

        .simple-nav-btn:active:not(:disabled) {
            transform: scale(0.95) translateY(0);
            box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
        }

        .simple-nav-btn:disabled {
            background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
            border-color: #dee2e6;
            color: #6c757d;
            cursor: not-allowed;
            transform: none;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
            opacity: 0.6;
        }

        /* INDICADOR DE POSICIÓN ULTRA MEJORADO Y CENTRADO */
        .simple-position {
            font-size: 18px !important;
            font-weight: 900 !important;
            color: #2c3e50 !important;
            text-align: center !important;
            margin: 0 25px !important;
            padding: 15px 25px !important;
            background: linear-gradient(135deg, #ffffff 0%, #f1f3f4 100%) !important;
            border-radius: 30px !important;
            border: 3px solid #007bff !important;
            min-width: 80px !important;
            max-width: 120px !important;
            box-shadow: 0 6px 20px rgba(0, 123, 255, 0.25) !important;
            position: relative !important;
            z-index: 5 !important;
            letter-spacing: 1px !important;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15) !important;
            transition: all 0.3s ease !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            height: 50px !important;
            box-sizing: border-box !important;
        }

        .simple-position:hover {
            transform: translateY(-2px) scale(1.05) !important;
            box-shadow: 0 8px 25px rgba(0, 123, 255, 0.35) !important;
            border-color: #0056b3 !important;
        }

        .simple-position::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(135deg, #007bff, #0056b3);
            border-radius: 30px;
            z-index: -1;
            opacity: 0.1;
        }

        /* TARJETA DE SERVICIO CON ALTURA DINÁMICA BASADA EN CONTENIDO */
        .simple-mobile-slide .service-item {
            width: 100%;
            max-width: 100%;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 15px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            border: 2px solid rgba(0, 123, 255, 0.1);
            cursor: pointer;
            transition: all 0.3s ease;
            min-height: 280px; /* ALTURA MÍNIMA PARA CONSISTENCIA */
            position: relative;
            overflow: visible; /* PERMITIR QUE EL CONTENIDO SE MUESTRE COMPLETO */
            clear: both;
            padding: 20px 15px;
            box-sizing: border-box;
            justify-content: flex-start;
        }

        .simple-mobile-slide .service-item:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 8px 30px rgba(0, 123, 255, 0.2);
            border-color: rgba(0, 123, 255, 0.3);
        }

        /* CONTENIDO DE TEXTO CON ALTURA DINÁMICA */
        .simple-mobile-slide .service-text {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            text-align: center;
            clear: both;
            overflow: visible; /* PERMITIR QUE TODO EL TEXTO SE MUESTRE */
            box-sizing: border-box;
            min-height: 120px; /* ALTURA MÍNIMA PARA CONSISTENCIA */
            padding: 15px 0 10px 0;
            margin-top: 10px;
        }

        .simple-mobile-slide .service-text h5 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: #2c3e50;
            line-height: 1.3;
            flex-shrink: 0;
            box-sizing: border-box;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
            min-height: 35px; /* ALTURA MÍNIMA PARA TÍTULOS */
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .simple-mobile-slide .service-text p {
            font-size: 0.9rem;
            line-height: 1.4;
            color: #5a6c7d;
            margin-bottom: 0;
            text-align: justify;
            flex: 1;
            overflow: visible; /* PERMITIR QUE TODO EL TEXTO SE MUESTRE */
            display: block; /* CAMBIAR DE LINE-CLAMP A BLOCK PARA MOSTRAR TODO */
            box-sizing: border-box;
            min-height: 60px; /* ALTURA MÍNIMA PARA DESCRIPCIONES */
        }

        /* IMAGEN RECTANGULAR UNIFORME - MÁS PEQUEÑA PARA MÓVILES */
        .simple-mobile-slide .btn-square {
            width: 100%;
            height: 120px; /* ALTURA REDUCIDA PARA MEJOR PROPORCIÓN */
            margin: 0 auto 12px auto;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 10px; /* ESQUINAS MÁS SUAVES */
            border: 2px solid rgba(0, 123, 255, 0.2);
            overflow: hidden;
            flex-shrink: 0;
            box-sizing: border-box;
            box-shadow: 0 3px 12px rgba(0, 123, 255, 0.15);
            transition: all 0.3s ease;
            position: relative;
            max-width: 240px; /* ANCHO MÁXIMO REDUCIDO PARA MEJOR AJUSTE */
        }

        .simple-mobile-slide .btn-square:hover {
            transform: scale(1.02);
            box-shadow: 0 6px 20px rgba(0, 123, 255, 0.25);
            border-color: rgba(0, 123, 255, 0.4);
        }

        .simple-mobile-slide .btn-square img {
            width: 100%;
            height: 100%;
            object-fit: contain; /* MUESTRA TODA LA IMAGEN SIN RECORTES */
            border-radius: 8px; /* ESQUINAS REDONDEADAS PARA COINCIDIR CON EL CONTENEDOR */
            transition: all 0.3s ease;
            position: absolute;
            top: 0;
            left: 0;
            background-color: white; /* FONDO BLANCO PARA ESPACIOS VACÍOS */
        }

        /* VISIBILIDAD SIMPLIFICADA */
        .simple-mobile-slide .service-item * {
            display: block !important;
            visibility: visible !important;
            opacity: 1 !important;
            clear: both;
            box-sizing: border-box;
        }

        .simple-mobile-slide .service-btn {
            display: none !important;
        }

        /* RESPONSIVE PARA TABLETS MEDIANAS */
        @media (max-width: 767px) and (min-width: 601px) {
            .simple-mobile-slide .btn-square {
                height: 130px !important; /* ALTURA REDUCIDA PARA TABLETS MEDIANAS */
                max-width: 260px !important;
                border-radius: 10px !important;
            }

            .simple-mobile-slide .btn-square img {
                border-radius: 8px !important;
                object-fit: contain !important; /* MUESTRA TODA LA IMAGEN SIN RECORTES */
                background-color: white !important;
            }

            .simple-mobile-slide .service-item {
                padding: 18px 15px !important;
            }
        }

        /* RESPONSIVE PARA TABLETS PEQUEÑAS */
        @media (max-width: 600px) and (min-width: 481px) {
            .simple-mobile-slide .btn-square {
                height: 110px !important; /* ALTURA REDUCIDA PARA TABLETS PEQUEÑAS */
                max-width: 220px !important;
                border-radius: 8px !important;
            }

            .simple-mobile-slide .btn-square img {
                border-radius: 6px !important;
                object-fit: contain !important; /* MUESTRA TODA LA IMAGEN SIN RECORTES */
                background-color: white !important;
            }
        }

        /* RESPONSIVE PARA PANTALLAS MUY PEQUEÑAS - CONSISTENCIA ABSOLUTA */
        @media (max-width: 480px) {
            .simple-mobile-slide {
                padding: 5px !important;
            }

            .simple-mobile-slide .service-item {
                border-radius: 12px !important;
                height: 300px !important; /* ALTURA CONSISTENTE EN MÓVILES PEQUEÑOS */
                padding: 15px 12px !important;
            }

            .simple-mobile-slide .service-text {
                height: 170px !important; /* ALTURA CONSISTENTE PARA TEXTO EN MÓVILES */
                padding: 10px 0 8px 0 !important;
                margin-top: 8px !important;
            }

            .simple-mobile-slide .service-text h5 {
                font-size: 1.1rem !important;
                margin-bottom: 10px !important;
                min-height: 35px !important;
            }

            .simple-mobile-slide .service-text p {
                font-size: 0.85rem !important;
                -webkit-line-clamp: 3 !important;
                line-clamp: 3 !important;
                min-height: 65px !important;
            }

            .simple-mobile-slide .btn-square {
                width: 100% !important;
                height: 100px !important; /* ALTURA MÁS PEQUEÑA PARA MÓVILES MUY PEQUEÑOS */
                margin: 0 auto 10px auto !important;
                border-radius: 6px !important;
                border-width: 2px !important;
                max-width: 200px !important; /* ANCHO MÁXIMO REDUCIDO PARA PANTALLAS PEQUEÑAS */
            }

            .simple-mobile-slide .btn-square img {
                border-radius: 4px !important;
                object-fit: contain !important; /* MUESTRA TODA LA IMAGEN SIN RECORTES */
                background-color: white !important;
            }

            .simple-nav-btn {
                width: 45px !important;
                height: 45px !important;
                font-size: 18px !important;
            }

            .simple-position {
                font-size: 16px !important;
                margin: 0 20px !important;
                padding: 12px 20px !important;
                min-width: 70px !important;
                max-width: 100px !important;
                font-weight: 800 !important;
                height: 45px !important;
            }

            .simple-nav-buttons {
                gap: 10px !important;
                padding: 0 8px !important;
            }
        }

        /* OPTIMIZACIONES DE PERFORMANCE */
        .simple-mobile-carousel,
        .simple-mobile-slide,
        .simple-nav-btn,
        .simple-mobile-slide .service-item {
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
            box-sizing: border-box;
        }

        /* PREVENIR SELECCIÓN DE TEXTO DURANTE SWIPE */
        .simple-mobile-container {
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            -webkit-touch-callout: none;
        }

        /* ESPACIADO ADECUADO */
        .simple-mobile-carousel {
            margin-bottom: 30px;
        }

        /* MODAL PARA MOSTRAR DETALLES DE CARTA EN MÓVIL */
        .mobile-card-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: none;
            z-index: 10000;
            animation: fadeIn 0.3s ease;
        }

        .mobile-card-modal.show {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mobile-card-modal-content {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 15px;
            width: 90%;
            max-width: 400px;
            max-height: 80vh;
            overflow-y: auto;
            box-shadow: 0 10px 40px rgba(0, 123, 255, 0.3);
            border: 2px solid rgba(0, 123, 255, 0.2);
            animation: slideUp 0.3s ease;
            position: relative;
        }

        .mobile-card-modal-header {
            padding: 20px 20px 15px 20px;
            border-bottom: 1px solid rgba(0, 123, 255, 0.1);
            position: relative;
        }

        .mobile-card-modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
            border: none;
            color: white;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 3px 10px rgba(220, 53, 69, 0.3);
            transition: all 0.3s ease;
        }

        .mobile-card-modal-close:hover {
            transform: scale(1.1);
            box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
        }

        .mobile-card-modal-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #2c3e50;
            margin: 0;
            padding-right: 50px;
            line-height: 1.3;
        }

        .mobile-card-modal-body {
            padding: 20px;
        }

        .mobile-card-modal-image {
            width: 100%;
            height: 150px;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 15px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border: 2px solid rgba(0, 123, 255, 0.1);
        }

        .mobile-card-modal-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .mobile-card-modal-description {
            font-size: 0.95rem;
            line-height: 1.5;
            color: #5a6c7d;
            margin-bottom: 20px;
            text-align: justify;
        }

        .mobile-card-modal-documents {
            border-top: 1px solid rgba(0, 123, 255, 0.1);
            padding-top: 15px;
        }

        .mobile-card-modal-documents h6 {
            font-size: 1rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .mobile-card-modal-document-link {
            display: block;
            padding: 10px 15px;
            margin-bottom: 8px;
            background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 123, 255, 0.2);
        }

        .mobile-card-modal-document-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
            background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
        }

        .mobile-card-modal-no-documents {
            color: #6c757d;
            font-style: italic;
            text-align: center;
            padding: 20px;
        }

        /* ANIMACIONES PARA EL MODAL */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
    }