:root {
              
            --color-bg: #ffffff;
            --color-bg-section: #f8f9fa;
            --color-border: #e0e0e0;
            --spacing-xs: 8px;
            --spacing-sm: 16px;
            --spacing-md: 24px;
            --spacing-lg: 32px;
            --spacing-xl: 48px;
            --spacing-xxl: 64px;
            --font-size-sm: 14px;
            --font-size-base: 16px;
            --font-size-lg: 18px;
            --font-size-xl: 20px;
            --font-size-2xl: 24px;
            --font-size-3xl: 32px;
            --font-size-36: 36px;
            --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
            --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
            --radius-md: 8px;
            --radius-lg: 12px;
            --radius-full: 9999px;
            --transition-fast: 150ms ease;
            --transition-base: 300ms ease; 
            


            --text-dark: #333;
            --text-light: #666;
            --white: #fff;
            --bg-light: #f8f9fa;
            --border: #E6E6E6;
            --shadow: rgba(0, 0, 0, 0.2);
            --transition: 0.3s ease;


        }

        /*benner*/
    :root {
            --colorBlue-900: #00475D;
            --colorBlue-500: #3f809C;
            --colorBlue-100: #AEC7CF;
            --colorGreen-900: #609839;
            --colorGreen-500: #89E462;
            --colorGreen-100: #F2FFE5;
            --colorYellow-900: #FFD406;
            --colorYellow-500: #FFEB01;
            --colorYellow-100: #FFFFFF;
            --colorGray-900: #4E5258;
            --colorGray-500: #A6A6A6;
            --colorGray-100: #E6E6E6;
            --colorGray-10: #f9f9f9;
            --colorText-500: #A6A6A6;
            --colorText-Gray-900: #4E5258;
            --colorWhite: #FFFFFF;
            --fuenteArial: Arial, Helvetica, sans-serif;
            --fuenteTexto: Arial, Helvetica, sans-serif;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: var(--fuenteTexto);
            line-height: 1.6;
        }
       
        /* Hero Modern Ultra Compact */
        .hero-modern {
            position: relative;
            width: 100%;
            min-height: calc(100vh - 300px);
            background: linear-gradient(135deg, #0a0f14 0%, var(--colorBlue-900) 50%, #1a2530 100%);
            overflow: hidden;
            margin-top: 76px;
        }
        .hero-modern p{padding: 8px 0;}
        .hero-modern img{border-radius: 10px;}
        
        /* Animated Background */
        .hero-modern__bg {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            opacity: 0.4;
        }
        
        .hero-modern__bg-grid {
            position: absolute;
            width: 200%;
            height: 200%;
            background-image: 
                linear-gradient(rgba(137, 228, 98, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(137, 228, 98, 0.03) 1px, transparent 1px);
            background-size: 80px 80px;
            animation: grid-move 30s linear infinite;
        }
        
        @keyframes grid-move {
            0% { transform: translate(0, 0); }
            100% { transform: translate(80px, 80px); }
        }
        
        .hero-modern__glow {
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            filter: blur(100px);
        }
        
        .hero-modern__glow--1 {
            background: var(--colorYellow-500);
            top: -150px;
            right: -150px;
            opacity: 0.15;
        }
        
        .hero-modern__glow--2 {
            background: var(--colorGreen-500);
            bottom: -150px;
            left: -150px;
            opacity: 0.1;
        }
        
        .hero-modern__container {
            position: relative;
            z-index: 1;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.5rem 2rem;
            min-height: calc(100vh - 300px);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        /* Header Tag */
        .hero-modern__header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }
        
        .hero-modern__tag {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 0.4rem 1rem;
            border-radius: 50px;
            font-size: clamp(1rem, 2vw, 0.8rem);
            color: var(--colorWhite);
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }
        
        .hero-modern__indicator {
            width: 35px;
            height: 35px;
            background: rgba(137, 228, 98, 0.2);
            backdrop-filter: blur(10px);
            border: 2px solid var(--colorGreen-500);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        
        .hero-modern__indicator::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border: 2px solid var(--colorGreen-500);
            border-radius: 50%;
            animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
        }
        
        @keyframes ping {
            75%, 100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }
        
        .hero-modern__indicator-dot {
            width: 8px;
            height: 8px;
            background: var(--colorGreen-500);
            border-radius: 50%;
            box-shadow: 0 0 15px var(--colorGreen-500);
        }
        
        /* Main Content Grid */
        .hero-modern__grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 2rem;
            align-items: center;
        }
        
        .hero-modern__content {
            position: relative;
        }
        
        /* Title */
        .hero-modern__title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            color: var(--colorWhite);
            font-weight: 800;
            line-height: 1;
            margin-bottom: 0.75rem;
            letter-spacing: -1.5px;
            display: block;
        }

         .hero-modern__title--small {
            font-size: clamp(1rem, 2.5vw, 1.4rem);
            color: var(--colorWhite);
            font-weight: 800;
            line-height: 1;
            margin-bottom: 0.75rem;
            letter-spacing: -1.5px;
        }
        
        .hero-modern__title-line {
            display: block;
        }
        
        .hero-modern__title-highlight {
            background: linear-gradient(135deg, var(--colorYellow-500) 0%, var(--colorYellow-900) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            display: inline-block;
            line-height: 1.25;
        }
        
        .hero-modern__subtitle {
            font-size: clamp(0.9rem, 2vw, 1.05rem);
            color: var(--colorBlue-100);
            line-height: 1.4;
            margin-bottom: 1.5rem;
            max-width: 500px;
        }
        
        /* Features Cards */
        .hero-modern__features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.75rem;
            margin-bottom: 1.5rem;
        }
        
        .hero-modern__feature {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 1rem;
            border-radius: 16px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .hero-modern__feature::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--colorYellow-500), var(--colorGreen-500));
            /* transform: translateX(-100%); */
            transition: transform 0.3s ease;
        }
        
        .hero-modern__feature:hover {
            transform: translateY(-3px);
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(255, 235, 1, 0.3);
        }
        
        .hero-modern__feature:hover::before {
            transform: translateX(0);
        }
        
        .hero-modern__feature-icon {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            display: block;
        }
        
        .hero-modern__feature-title {
            font-size: clamp(1rem, 2vw, 0.9rem);
            color: var(--colorWhite);
            font-weight: bold;
            margin-bottom: 0.25rem;
        }
        
        .hero-modern__feature-desc {
            font-size: clamp(0.7rem, 2vw, 0.8rem);
            color: var(--colorText-500);
            line-height: 1.3;
        }
        
        /* CTAs */
        .hero-modern__actions {
            display: flex;
            gap: 0.75rem;
            align-items: center;
        }
        
        .hero-modern__cta {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.875rem 1.75rem;
            font-size: clamp(0.9rem, 2vw, 1rem);
            font-weight: bold;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        
        .hero-modern__cta--primary {
            background: linear-gradient(135deg, var(--colorYellow-500) 0%, var(--colorYellow-900) 100%);
            color: var(--colorGray-900);
            box-shadow: 0 8px 30px rgba(255, 235, 1, 0.3);
        }
        
        .hero-modern__cta--primary::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }
        
        .hero-modern__cta--primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(255, 235, 1, 0.5);
        }
        
        .hero-modern__cta--primary:hover::before {
            width: 300px;
            height: 300px;
        }
        
        .hero-modern__cta--primary span {
            position: relative;
            z-index: 1;
        }
        
        .hero-modern__cta--secondary {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            color: var(--colorWhite);
            border: 2px solid #89e462;
        }
        
        .hero-modern__cta--secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--colorYellow-500);
            transform: translateY(-2px);
        }
        
        /* Visual Side */
        .hero-modern__visual {
            position: relative;
        }
        
        .hero-modern__card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 1.25rem;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .hero-modern__card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(137, 228, 98, 0.1) 0%, transparent 50%, rgba(255, 235, 1, 0.1) 100%);
            opacity: 0.5;
        }
        
        .hero-modern__image {
            width: 100%;
            height: auto;
            display: block;
            position: relative;
            z-index: 1;
            animation: float-smooth 6s ease-in-out infinite;
        }
        
        @keyframes float-smooth {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }
        
        /* Info Badge */
        .hero-modern__badge {
            position: absolute;
            bottom: 1.25rem;
            left: 1.25rem;
            right: 1.25rem;
            background: rgba(0, 71, 93, 0.9);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 235, 1, 0.2);
            border-radius: 16px;
            padding: 0.875rem;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.75rem;
        }
        
        .hero-modern__badge-item {
            text-align: center;
        }
        
        .hero-modern__badge-value {
            font-size: clamp(0.95rem, 2.5vw, 1.1rem);
            color: var(--colorYellow-500);
            font-weight: bold;
            margin-bottom: 0.2rem;
        }
        
        .hero-modern__badge-label {
            font-size: clamp(0.65rem, 2vw, 0.75rem);
            color: var(--colorBlue-100);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        /* Responsive */
        @media (max-width: 968px) {
            .hero-modern {
                min-height: auto;
                padding: 2rem 0;
            }
            
            .hero-modern__container {
                min-height: auto;
                padding: 1.5rem;
            }
            
            .hero-modern__grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .hero-modern__features {
                grid-template-columns: 1fr;
            }
            
            .hero-modern__badge {
                grid-template-columns: 1fr;
                gap: 0.5rem;
            }
        }
        
        @media (max-width: 480px) {
            .hero-modern__container {
                padding: 1.25rem;
            }
            
            .hero-modern__actions {
                flex-direction: column;
                width: 100%;
            }
            
            .hero-modern__cta {
                width: 100%;
                justify-content: center;
            }
            
            .hero-modern__header {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }
        }



/* Product Container */
        .product {
            max-width: 1400px;
            margin: 40px auto;
            padding: 0 20px;
        }

        .product__title {
            font-size: clamp(1.8rem, 4vw, 3rem);
            margin-bottom: 40px;
            text-align: center;
            color: var(--colorBlue-900);
        }

        .product__container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            background: var(--white);
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 4px 20px var(--shadow);
        }

        /* Gallery Section */
        .product__gallery {
            display: flex;
            flex-direction: column;
            max-height: 640px;
        }

        /* Carousel */
        .carousel {
            position: relative;
            width: 100%;
            aspect-ratio: 3/4;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 2px 10px var(--shadow);
        }

        .carousel__track {
            display: flex;
            height: 100%;
            transition: transform var(--transition);
        }

        .carousel__slide {
            min-width: 100%;
            height: 100%;
            position: relative;
        }

        .carousel__image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Navigation Arrows */
        .carousel__btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: var(--colorGreen-500);
            color: var(--white);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all var(--transition);
            z-index: 10;
        }

        .carousel__btn:hover {
            background: var(--colorGray-900);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel__btn:active {
            transform: translateY(-50%) scale(0.95);
        }

        .carousel__btn--prev {
            left: 15px;
        }

        .carousel__btn--next {
            right: 15px;
        }

        /* Counter */
        .carousel__counter {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.7);
            color: var(--white);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            z-index: 10;
        }

        /* Features Section */
        .product__features {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .features__section {
            border-bottom: 1px solid var(--border);
            padding-bottom: 25px;
        }

        .features__section:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .features__title {
            font-size: clamp(1.3rem, 3vw, 1.8rem);
            color: var(--colorBlue-900);
            margin-bottom: 15px;
        }

        .features__list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .features__item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            color: var(--text-dark);
            font-size: var(--font-size-base);
        }

        .features__item::before {
            content: "✓";
            color: var(--colorGreen-500);
            font-weight: bold;
            font-size: 18px;
            flex-shrink: 0;
        }

        .features__highlight {
           
            color: var(--colorBlue-900);
            padding: 20px;
            border-radius: 8px;
            margin-top: 10px;
        }

        .features__highlight h4 {
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .features__highlight p {
            font-size: 14px;
            line-height: 1.5;
        }

        /* Specifications Table */
        .specs__table {
            width: 100%;
            border-collapse: collapse;
            font-size: var(--font-size-base);
        }

        .specs__row {
            border-bottom: 1px solid var(--border);
        }

        .specs__label {
            padding: 12px 10px;
            font-weight: 600;
            color: var(--text-dark);
            width: 40%;
            background: var(--bg-light);
        }

        .specs__value {
            padding: 12px 10px;
            color: var(--text-light);
        }

        .specs__row:last-child {
            border-bottom: none;
        }

        /* .features__cta {
            background: var(--secondary-color);
            color: var(--white);
            padding: 15px 30px;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all var(--transition);
            margin-top: 20px;
            width: 100%;
        }

        .features__cta:hover {
            background: #e55a00;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
        } */

        /* Responsive */
        @media (max-width: 968px) {
            .product__container {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 30px 20px;
            }

            .product__title {
                font-size: 2rem;
                margin-bottom: 30px;
            }
        }

        @media (max-width: 768px) {
            .product {
                margin: 20px auto;
                padding: 0 15px;
            }

            .product__container {
                padding: 25px 15px;
            }

            .carousel {
                aspect-ratio: 2/3;
            }

            .carousel__btn {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .carousel__btn--prev {
                left: 10px;
            }

            .carousel__btn--next {
                right: 10px;
            }

            .carousel__counter {
                bottom: 15px;
                font-size: 12px;
                padding: 6px 12px;
            }

            .features__section {
                padding-bottom: 20px;
            }

            .specs__label,
            .specs__value {
                padding: 10px 8px;
                font-size: 13px;
            }
        }

        @media (max-width: 480px) {
            .carousel__btn {
                width: 35px;
                height: 35px;
                font-size: 14px;
            }

            .features__item {
                font-size: 14px;
            }

            .specs__table {
                font-size: 13px;
            }

            .specs__label {
                width: 45%;
            }
        }

        /* Loading State */
        .carousel__slide--loading {
            background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
            background-size: 200% 100%;
            animation: loading 1.5s infinite;
        }

        @keyframes loading {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }


 /* Section */
        .applications2 {
            padding: 60px 20px;
            background: linear-gradient(135deg, #001A22 0%, #002E3C 100%);
        }

        .applications2__container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Header */
        .applications2__header {
            text-align: center;
            margin-bottom: 20px;
        }

        .applications2__label {
            display: inline-block;
            color: var(--colorYellow-900);
            font-weight: bold;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }

        .applications2__title {
            font-size: 36px;
            color: var(--colorWhite);
            margin-bottom: 12px;
            font-weight: 700;
            max-width: 1200px;
            margin: auto;
        }

        .applications2__subtitle {
            font-size: 18px;
            color: var(--colorGray-100);
            max-width: none;
            margin: 0 auto;
        }
        
        .applications2__header p {
            padding: 0px;
        }
        
        /* Grid */
        .applications2__grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            align-items: stretch;
            padding: 20px;
            border-radius: 20px;
            background: rgba(0, 71, 93, 0.2);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Item */
        .applications2__item {
            display: flex;
            flex-direction: column;
        }

        /* Card */
        .applications2__card {
            background: rgba(255, 255, 255, 0.98);
            padding: 10px;
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            position: relative;
            border: 2px solid rgba(255, 255, 255, 0.1);
            display: flex;
            flex-direction: column;
            min-height: 400px;
            height: 100%;
            overflow: hidden;
        }
        
        /* Efecto de luz */
        .applications2__card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(
                circle,
                rgba(63, 128, 156, 0.15) 0%,
                rgba(137, 228, 98, 0.1) 20%,
                rgba(255, 212, 6, 0.08) 40%,
                transparent 70%
            );
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
            z-index: 1;
        }
        
        .applications2__card:hover::before {
            opacity: 1;
            animation: rotate-light 3s linear infinite;
        }
        
        @keyframes rotate-light {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }
        
        /* Asegurar que el contenido esté sobre el efecto de luz */
        .applications2__card > * {
            position: relative;
            z-index: 2;
        }
        
        .applications2__card p {
            color: var(--colorGray-900);
        }
        
        .applications2__card:hover {
            transform: translateY(-8px);
            box-shadow: 
                0 12px 40px rgba(63, 128, 156, 0.25),
                0 0 20px rgba(63, 128, 156, 0.15),
                0 0 40px rgba(137, 228, 98, 0.1),
                0 0 60px rgba(255, 212, 6, 0.08);
            border-color: var(--colorBlue-500);
            background: rgba(255, 255, 255, 1);
            animation: pulse-glow 2s ease-in-out infinite;
        }
        
        @keyframes pulse-glow {
            0%, 100% {
                box-shadow: 
                    0 12px 40px rgba(63, 128, 156, 0.25),
                    0 0 20px rgba(63, 128, 156, 0.15),
                    0 0 40px rgba(137, 228, 98, 0.1),
                    0 0 60px rgba(255, 212, 6, 0.08);
            }
            50% {
                box-shadow: 
                    0 12px 40px rgba(63, 128, 156, 0.3),
                    0 0 25px rgba(63, 128, 156, 0.2),
                    0 0 50px rgba(137, 228, 98, 0.15),
                    0 0 75px rgba(255, 212, 6, 0.12);
            }
        }

        /* Featured */
        .applications2__item--featured .applications2__card {
            border-color: var(--colorYellow-900);
            background: linear-gradient(135deg, #fff 0%, #fffbf0 100%);
        }

        .applications2__card-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background: var(--colorYellow-900);
            color: var(--colorText-Gray-900);
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 10;
        }

        /* Icon */
        .applications2__icon {
            width: 100%;
            height: 180px;
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .applications2__icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
            transition: all 0.4s ease;
        }
        
        .applications2__card:hover .applications2__icon img {
            filter: brightness(1.05) contrast(1.02);
            box-shadow: 0 0 15px rgba(63, 128, 156, 0.2);
        }

        /* Name */
        .applications2__name {
            font-size: 22px;
            color: var(--colorBlue-900);
            margin-bottom: 8px;
            font-weight: 700;
            padding: 0 24px;
            margin-top: 20px;
            border-bottom: 1px solid var(--colorGray-100);
            transition: all 0.3s ease;
        }
        
        .applications2__card:hover .applications2__name {
            color: var(--colorBlue-500);
            text-shadow: 0 0 8px rgba(63, 128, 156, 0.3);
        }

        .applications2__item--featured .applications2__name {
            color: var(--colorYellow-900);
        }

        /* Description */
        .applications2__description {
            font-size: 15px;
            color: var(--colorGray-900);
            margin-bottom: 16px;
            line-height: 1.5;
            flex-grow: 1;
            padding: 0 24px;
        }

        .applications2__description2 {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
            max-height: 50px;
            padding: 10px;
            border: solid 1px #e8e8e8;
            border-radius: 10px;
        }

        /* Button */
        .applications2__button {
            display: inline-block;
            padding: 10px 24px;
            background: var(--colorBlue-500);
            color: var(--colorWhite);
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .applications2__button::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .applications2__button:hover {
            background: var(--colorBlue-900);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(63, 128, 156, 0.3);
        }
        
        .applications2__button:hover::after {
            width: 300px;
            height: 300px;
        }
        
        .applications2__card:hover .applications2__button {
            box-shadow: 0 4px 12px rgba(63, 128, 156, 0.35);
        }

        /* Modal Checkbox - Oculto */
        .modal2__checkbox {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }

        /* Modal */
        .modal2 {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .modal2__checkbox:checked ~ .modal2 {
            opacity: 1;
            pointer-events: all;
        }

        /* Modal Overlay */
        .modal2__overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(78, 82, 88, 0.85);
            backdrop-filter: blur(4px);
            cursor: pointer;
        }

        /* Modal Content */
        .modal2__content {
            position: relative;
            background: var(--colorWhite);
            border-radius: 20px;
            max-width: 600px;
            width: 90%;
            max-height: 85vh;
            overflow-y: auto;
            overflow-x: hidden;
            box-shadow: 0 20px 60px rgba(0, 71, 93, 0.4);
            z-index: 10000;
            transform: scale(0.8) translateY(30px);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .modal2__checkbox:checked ~ .modal2 .modal2__content {
            transform: scale(1) translateY(0);
        }

        /* Modal Close */
        .modal2__close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(230, 230, 230, 0.95);
            border-radius: 50%;
            cursor: pointer;
            font-size: 24px;
            line-height: 1;
            color: var(--colorGray-500);
            transition: all 0.3s ease;
            z-index: 10;
        }

        .modal2__close:hover {
            background: var(--colorBlue-900);
            color: var(--colorWhite);
            transform: rotate(90deg);
        }

        /* Modal Header */
        .modal2__icon {
            width: 100%;
            height: 200px;
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border-radius: 20px 20px 0 0;
        }

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

        .modal2__title {
            font-size: 28px;
            color: var(--colorBlue-900);
            text-align: center;
            margin-bottom: 8px;
            font-weight: 700;
            padding: 0 60px;
            margin-top: 30px;
        }

        .modal2__subtitle {
            font-size: 16px;
            color: var(--colorGray-500);
            text-align: center;
            margin-bottom: 30px;
            padding: 0 40px;
        }

        /* Modal Body */
        .modal2__body {
            padding: 0 40px 40px;
        }

        .modal2__body h4 {
            font-size: 20px;
            color: var(--colorText-Gray-900);
            margin-bottom: 20px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .modal2__body h4::before {
            content: '';
            width: 4px;
            height: 24px;
            background: var(--colorYellow-900);
            border-radius: 4px;
        }

        .modal2__body ul {
            list-style: none;
        }

        .modal2__body li {
            font-size: 15px;
            color: var(--colorGray-500);
            padding: 12px 20px;
            margin-bottom: 8px;
            background: var(--colorGray-10);
            border-radius: 8px;
            line-height: 1.6;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }

        .modal2__body li:hover {
            background: rgba(0, 71, 93, 0.05);
            border-left-color: var(--colorBlue-900);
            transform: translateX(5px);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .applications2__grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .applications2 {
                padding: 40px 16px;
            }
            
            .applications2__title {
                font-size: 28px;
            }
            
            .applications2__subtitle {
                font-size: 16px;
            }
            
            .applications2__grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .modal2__content {
                width: 95%;
                max-height: 90vh;
            }
            
            .modal2__icon {
                height: 180px;
            }
            
            .modal2__close {
                top: 15px;
                right: 15px;
            }
            
            .modal2__title {
                font-size: 24px;
                padding: 0 50px;
                margin-top: 24px;
            }
            
            .modal2__body {
                padding: 0 24px 24px;
            }
        }

        @media (max-width: 480px) {
            .applications2__title {
                font-size: 24px;
            }
            
            .applications2__card {
                min-height: 400px;
            }
            
            .applications2__icon {
                width: 100%;
                height: 150px;
            }
            
            .applications2__name {
                font-size: 20px;
                padding: 0 20px;
                margin-top: 16px;
            }
            
            .applications2__description {
                padding: 0 20px;
            }
            
            .applications2__button {
                margin: 0 20px 20px 20px;
            }
            
            .modal2__content {
                width: 95%;
                max-height: 95vh;
            }
            
            .modal2__icon {
                width: 100%;
                height: 150px;
            }
            
            .modal2__close {
                top: 10px;
                right: 10px;
                width: 36px;
                height: 36px;
                font-size: 20px;
            }
            
            .modal2__title {
                font-size: 22px;
                margin-top: 20px;
                padding: 0 40px;
            }
            
            .modal2__subtitle {
                padding: 0 24px;
                font-size: 15px;
            }
            
            .modal2__body {
                padding: 0 20px 20px;
            }
        }


/* ============================================
           PRODUCTS SECTION 
           ============================================ */
        .products {
            padding: var(--spacing-xxl) 0;
            background-color: var(--color-bg);
        }

        .products__container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 var(--spacing-md);
            margin-top: 130px;
        }
        .products__container p{padding-top: 20px; max-width: 1200px;} 
        .products__header {
            text-align: center;
            margin-bottom: var(--spacing-xl);
        }

        /* .products__subtitle {
            font-size: var(--font-size-sm);
            font-weight: 600;
            color: var(--color-primary);
            text-transform: uppercase;
            letter-spacing: 1.2px;
            margin-bottom: var(--spacing-xs);
        } */

        .products__title {
            font-size: var(--font-size-36);
            font-weight: 700;
            margin-bottom: var(--spacing-sm);
            color: var(--colorBlue-900);
        }

        .products__description {
            font-size: var(--font-size-base);
            margin: 0 auto;
        }

        .products__grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--spacing-lg);
            margin-top: var(--spacing-xl);
        }

        /* ============================================
           PRODUCT CARD 
           ============================================ */
        .product-card {
            background: var(--color-bg);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--color-border);
            transition: all var(--transition-base);
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .product-card p{padding: 12px 0px;}
        .product-card h2{color:var(--colorBlue-900); line-height: 1.2;}
        .product-card h3{color:var(--colorGreen-500); line-height: 1.2;}

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: var(--colorGreen-500);
        }

        .product-card__image-wrapper {
            position: relative;
            width: 100%;
            padding-top: 75%;
            /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
            overflow: hidden;
        }

        .product-card__image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-base);
        }

        .product-card:hover .product-card__image {
            transform: scale(1.08);
        }

        .product-card__badge {
            position: absolute;
            top: var(--spacing-sm);
            right: var(--spacing-sm);
            background-color: var(--colorYellow-900);
            color: white;
            padding: 6px 14px;
            border-radius: var(--radius-full);
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            z-index: 2;
            box-shadow: var(--shadow-md);
        }

        .product-card__content {
            padding: var(--spacing-md);
            padding-top: var(--spacing-xs);
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            gap: var(--spacing-2);
        }

        .product-card__title {
            font-size: var(--font-size-xl);
            font-weight: 600;
            line-height: 1.2;
        }

        .product-card__description {
            font-size: var(--font-size-base);
            line-height: 1.6;
            flex-grow: 1;
        }

        .product-card__cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: var(--spacing-xs);
            padding: 14px 24px;
            background-color: var(--colorBlue-500);
            color: white;
            font-size: var(--font-size-base);
            font-weight: 600;
            border-radius: var(--radius-md);
            transition: all var(--transition-fast);
            cursor: pointer;
        }

        .product-card__cta:hover {
            background-color: var(--colorBlue-100);
            transform: translateX(4px);
            box-shadow: var(--shadow-md);
        }

        .product-card__icon {
            width: 20px;
            height: 20px;
            transition: transform var(--transition-fast);
        }

        .product-card__cta:hover .product-card__icon {
            transform: translateX(4px);
        }

        /* ============================================
           PLACEHOLDER PARA IMÁGENES
           ============================================ */
        .product-card__image-placeholder {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            font-weight: 600;
            width: 100%;
        }

        .placeholder-icon {
            font-size: 48px;
            margin-bottom: 8px;
        }

        /* ============================================
           RESPONSIVE
           ============================================ */
        
        /* Desktop grande (1200px+) */
        @media (min-width: 1200px) {
            .products__grid {
                gap: var(--spacing-xl);
            }
            
            .product-card:hover {
                transform: translateY(-12px);
            }
        }

        /* Laptop (968px - 1199px) */
        @media (max-width: 1200px) {
            .products__grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* Tablet grande (768px - 967px) */
        @media (max-width: 968px) {
            .products__grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .products__container
            {
                margin-top: 78px;
            }
        }

        /* Tablet y Mobile */
        @media (max-width: 768px) {
            .products {
                padding: var(--spacing-xl) 0;
            }
            
            .products__title {
                font-size: var(--font-size-2xl);
            }
            
            .products__grid {
                grid-template-columns: repeat(2, 1fr);
                gap: var(--spacing-md);
            }
            
            .product-card__title {
                font-size: var(--font-size-base);
            }
            
            .product-card__description {
                font-size: var(--font-size-sm);
            }
        }

        /* Mobile (480px) */
        @media (max-width: 480px) {
            /* .products__subtitle {
                font-size: 11px;
            } */
            
            .products__title {
                font-size: var(--font-size-3xl);
                line-height: 1;;
            }
            
            .products__grid {
                grid-template-columns: 1fr;
            }
            
            .product-card__content {
                padding: var(--spacing-sm);
            }
            
            .product-card__badge {
                font-size: 10px;
                padding: 4px 10px;
            }
            
            .product-card__cta {
                padding: 12px 20px;
                font-size: var(--font-size-sm);
            }
        }