/* Global Styles */
body {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Menu Flutuante Estilo "Resultz" */
.floating-nav-container {
    position: fixed;
    top: 1.5rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 100;
    pointer-events: none;
    transition: all 0.3s ease;
}

.floating-nav {
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-radius: 9999px;
    padding: 0.75rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 2rem;
}

.floating-nav.scrolled {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(60, 67, 76, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 0.6rem 2rem;
}

/* Logo Color Transition */
.nav-logo {
    filter: brightness(0) invert(1);
}

.floating-nav.scrolled .nav-logo {
    filter: none;
}

/* Mobile Menu Button Color Transition */
#mobile-menu-btn {
    color: #8A8B8A;
}

.floating-nav.scrolled #mobile-menu-btn {
    color: #8A8B8A;
}

/* Menu Open State */
.floating-nav.menu-open {
    background: rgba(255, 255, 255, 1);
}

.floating-nav.menu-open .nav-logo {
    filter: none;
}

.floating-nav.menu-open #mobile-menu-btn {
    color: #8A8B8A;
}

/* Cards e Elementos */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(75, 166, 167, 0.2);
}

/* Blobs de fundo */
.blob {
    position: absolute;
    filter: blur(60px);
    z-index: -1;
    opacity: 0.5;
    animation: float 10s infinite alternate;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.text-gradient {
    background: linear-gradient(135deg, #4BA6A7, #EFB069);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Swiper Fixes */
.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    background: #EFB069;
    opacity: 1;
    width: 24px;
    border-radius: 5px;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Partner Logos Placeholder Styles */
.partner-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    margin-bottom: 1rem;
    filter: grayscale(0%);
    opacity: 1;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo-container {
    filter: grayscale(100%);
    opacity: 0.7;
}