@keyframes blink-animation {
            to { visibility: hidden; }
        }
        
        .terminal {
            background-color: rgba(0, 0, 0, 0.8);
            border: 1px solid var(--neon-green);
        }
        
        .terminal-cursor {
            animation: blink-animation 1s steps(5, start) infinite;
        }

      
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                to bottom right,
                rgba(0, 255, 157, 0.1) 0%,
                rgba(0, 255, 157, 0) 60%
            );
            transform: rotate(30deg);
            z-index: 0;
        }
        
       



         .plan-card {
            transition: all 0.4s ease;
            background: var(--card-bg);
            position: relative;
            
        }
        
        .plan-card:hover {
            transform: scale(1.05);
        }
        
        .featured-plan {
            border: 2px solid var(--neon-green);
            position: relative;
            transform: scale(1.05);
            z-index: 10;
        }
        
        .featured-plan::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            
        }


       

         /* Carrusel de testimonios */
        .testimonial-carousel {
            position: relative;
            overflow: hidden;
            height: 300px;
        }
        
        .testimonial-slide {
            position: absolute;
            width: 100%;
            transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.8s ease;
            opacity: 0;
            transform: scale(0.9);
        }
        
        .testimonial-slide.active {
            opacity: 1;
            transform: scale(1);
        }
        

         /* Laboratorios Cards */
        .lab-card {
            background: var(--card-bg);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
        }
        
        .lab-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 255, 157, 0.2);
        }
        
        .lab-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--neon-green), var(--neon-blue));
        }
        
        .lab-image {
            height: 180px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .lab-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
        }

        @keyframes infinite-scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-100%);
        }
    }
    
    .animate-infinite-scroll {
        animation: infinite-scroll 20s linear infinite;
    }
    
    .logos-carousel:hover .animate-infinite-scroll {
        animation-play-state: paused;
    }
    
    .logos-slide {
        display: flex;
        align-items: center;
    }

     

.plan-card:hover {
            transform: scale(1.05);
        }

 .categoria-vulne{
        z-index: 999999;
    }

  .lab-card {
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .lab-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: #00b8ff;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .lab-card:hover::before {
        opacity: 1;
    }
    
    .lab-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }
    
    .lab-image {
        transition: all 0.5s ease;
    }
    
    .lab-card:hover .lab-image {
        transform: scale(1.05);
    }
    
    .loading {
        width: 100%;
        height: 4px;
        background: #00b8ff;
        animation: pulse 1.5s infinite;
    }
    
    @keyframes pulse {
        0% { opacity: 0.5; }
        50% { opacity: 1; }
        100% { opacity: 0.5; }
    }
    
    .glow-on-hover {
        transition: all 0.3s ease;
    }
    
    .glow-on-hover:hover {
        box-shadow: 0 0 15px rgba(0, 184, 255, 0.5);
    }
    
    /* Estilo para la clase categoria-vulne */
    .categoria-vulne {
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }
    
    /* Spinner de carga */
    .spinner {
        width: 24px;
        height: 24px;
        border: 3px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        border-top-color: #000;
        animation: spin 1s ease-in-out infinite;
    }
    
    @keyframes spin {
        to { transform: rotate(360deg); }
    }
    
    .loading-spinner {
        display: none;
    }
    
    .loading-spinner.active {
        display: flex;
    }
    
    .button-text {
        transition: opacity 0.3s ease;
    }
    
    .button-text.hidden {
        opacity: 0;
    }


    .features-section{
        margin: 7rem;
    }

    @media (max-width: 700px) {
   .features-section {
    margin: 1rem;

    .text-lg{
        font-size: 1.5rem;
    }
  }
}

.gapp-12{    
    gap: 15rem !important;
}

/* Ajustes para móviles */
@media (max-width: 768px) {
   .gapp-12{    
    gap: 3rem !important;
}
}