/* Sobre Nexserver page specific styles */

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fade-in-up 0.8s ease-out;
}

.purpose-card {
    transition: all 0.3s ease;
}

.purpose-card:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.audience-card {
    transition: all 0.3s ease;
}

.audience-card:hover {
    border-color: rgba(19, 109, 236, 0.5);
}

.approach-card {
    transition: all 0.3s ease;
}

.approach-card:hover {
    border-color: rgba(19, 109, 236, 0.5);
}

.timeline-dot {
    transition: all 0.3s ease;
}

.stats-number {
    transition: all 0.3s ease;
}

.cta-button {
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(19, 109, 236, 0.3);
}

/* Floating animation */
.floating-stat-card {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-blur-decoration {
    filter: blur(80px);
}

/* Logo Marquee */
.logos-marquee {
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    overflow: hidden;
    user-select: none;
    display: flex;
    gap: 4rem;
    padding: 2rem 0;
}

.logos-marquee:hover .marquee-content {
    animation-play-state: paused;
}

.marquee-content {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    gap: 4rem;
    min-width: 100%;
    animation: scroll-marquee 40s linear infinite;
}

.marquee-content img {
    height: 4.5rem;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.marquee-content img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

@keyframes scroll-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - 4rem));
    }
}