/* Custom styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: #0A090F;
    color: #E0E0E0;
}

.gradient-text {
    background: linear-gradient(90deg, #0003FF, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.cta-button {
    background: linear-gradient(90deg, #0003FF, #3b82f6);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 3, 255, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 3, 255, 0.6);
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Enhanced Animated Hero Background */
.hero-bg {
    background-color: #050410;
    background-image: 
        /* Gradientes principais com mais contraste */
        radial-gradient(ellipse at 20% 25%, rgba(0, 3, 255, 0.4), rgba(5, 4, 16, 0) 45%),
        radial-gradient(ellipse at 80% 75%, rgba(59, 130, 246, 0.3), rgba(5, 4, 16, 0) 50%),
        radial-gradient(ellipse at 60% 10%, rgba(147, 51, 234, 0.25), rgba(5, 4, 16, 0) 40%),
        /* Gradientes secundários para profundidade */
        radial-gradient(circle at 40% 60%, rgba(16, 185, 129, 0.15), rgba(5, 4, 16, 0) 35%),
        radial-gradient(circle at 90% 30%, rgba(244, 63, 94, 0.12), rgba(5, 4, 16, 0) 30%),
        /* Overlay sutil para unificar */
        linear-gradient(135deg, rgba(0, 3, 255, 0.05) 0%, rgba(5, 4, 16, 0.8) 50%, rgba(59, 130, 246, 0.08) 100%);
    background-size: 
        400% 400%, 
        350% 350%, 
        300% 300%,
        250% 250%,
        200% 200%,
        100% 100%;
    background-position: 
        0% 0%, 
        100% 100%, 
        50% 0%,
        0% 100%,
        100% 0%,
        0% 0%;
    animation: 
        AnimateVeil 20s ease-in-out infinite,
        AnimateVeilSecondary 25s ease-in-out infinite reverse,
        AnimateVeilTertiary 30s linear infinite;
    position: relative;
    overflow: hidden;
}

/* Múltiplas animações para fluidez */
@keyframes AnimateVeil {
    0%, 100% {
        background-position: 
            0% 0%, 
            100% 100%, 
            50% 0%,
            0% 100%,
            100% 0%,
            0% 0%;
    }
    25% {
        background-position: 
            25% 25%, 
            75% 75%, 
            75% 25%,
            25% 75%,
            75% 25%,
            25% 25%;
    }
    50% {
        background-position: 
            50% 50%, 
            50% 50%, 
            100% 50%,
            50% 50%,
            50% 50%,
            50% 50%;
    }
    75% {
        background-position: 
            75% 25%, 
            25% 75%, 
            25% 75%,
            75% 25%,
            25% 75%,
            75% 25%;
    }
}

@keyframes AnimateVeilSecondary {
    0%, 100% {
        background-size: 
            400% 400%, 
            350% 350%, 
            300% 300%,
            250% 250%,
            200% 200%,
            100% 100%;
    }
    50% {
        background-size: 
            350% 350%, 
            400% 400%, 
            250% 250%,
            300% 300%,
            250% 250%,
            100% 100%;
    }
}

@keyframes AnimateVeilTertiary {
    0% {
        transform: translateX(0) translateY(0) scale(1);
    }
    33% {
        transform: translateX(-2px) translateY(1px) scale(1.01);
    }
    66% {
        transform: translateX(1px) translateY(-1px) scale(0.99);
    }
    100% {
        transform: translateX(0) translateY(0) scale(1);
    }
}

/* Pseudo-elemento para efeito de partículas */
.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 85% 25%, rgba(0, 3, 255, 0.2) 1px, transparent 1px),
        radial-gradient(circle at 45% 65%, rgba(59, 130, 246, 0.15) 1px, transparent 1px),
        radial-gradient(circle at 75% 85%, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 80px 80px, 120px 120px, 100px 100px, 150px 150px;
    animation: ParticleFloat 40s linear infinite;
    opacity: 0.6;
    pointer-events: none;
}

@keyframes ParticleFloat {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(-20px) translateY(-10px);
    }
}

/* Efeito de brilho adicional */
.hero-bg::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            transparent 0deg, 
            rgba(0, 3, 255, 0.1) 45deg, 
            transparent 90deg, 
            rgba(59, 130, 246, 0.08) 135deg, 
            transparent 180deg,
            rgba(147, 51, 234, 0.06) 225deg,
            transparent 270deg,
            rgba(0, 3, 255, 0.1) 315deg,
            transparent 360deg);
    animation: RotateGlow 60s linear infinite;
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

@keyframes RotateGlow {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

.content-wrapper {
    position: relative;
    z-index: 10;
}

/* Split Text Animation */
.animated-words-container {
    display: inline-grid;
    vertical-align: middle;
    text-align: center;
}

.animated-words-container span {
    grid-area: 1 / 1;
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

.animated-words-container span.visible {
    opacity: 1;
    transform: translateY(0);
}

.animated-words-container span.hidden-up {
    transform: translateY(-100%);
}

/* Dock Menu Styles */
.dock-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: #cbd5e1;
    transition: all 0.2s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 50%;
}

.dock-item:hover {
    transform: scale(1.2) translateY(-6px);
    color: #fff;
    background-color: rgba(59, 130, 246, 0.1);
}

.dock-tooltip {
    position: absolute;
    top: 125%;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 12px;
    background-color: #1f2937;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out, transform 0.2s ease-in-out;
    white-space: nowrap;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.dock-item:hover .dock-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-2px);
}

/* Feature Cards */
.feature-card {
    background-color: rgba(24, 24, 29, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 3, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 3, 255, 0.15);
}

/* Case Study Section */
.case-study-card {
    background: linear-gradient(135deg, rgba(24, 24, 29, 0.95) 0%, rgba(16, 15, 21, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-study-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #0003FF, #60a5fa, #3b82f6);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 200% 0; }
    50% { background-position: -200% 0; }
}

.case-study-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 3, 255, 0.4);
    box-shadow: 
        0 20px 40px rgba(0, 3, 255, 0.15),
        0 0 80px rgba(0, 3, 255, 0.1);
}

.case-study-title {
    position: relative;
    display: inline-block;
}

.case-study-title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #0003FF, #60a5fa);
    border-radius: 1px;
}

.quote-mark {
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 60px;
    color: rgba(0, 3, 255, 0.3);
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 1;
}

.blockquote-content {
    position: relative;
    z-index: 2;
    padding-left: 20px;
}

.result-card {
    background: linear-gradient(135deg, rgba(0, 3, 255, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 3, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 3, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.result-card:hover::before {
    opacity: 1;
}

.result-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0, 3, 255, 0.4);
    box-shadow: 
        0 25px 50px rgba(0, 3, 255, 0.2),
        0 0 100px rgba(0, 3, 255, 0.15);
}

.growth-icon {
    background: linear-gradient(135deg, #0003FF 0%, #3b82f6 100%);
    box-shadow: 
        0 10px 20px rgba(0, 3, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.growth-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 15px 30px rgba(0, 3, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.percentage-number {
    background: linear-gradient(135deg, #0003FF 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 3, 255, 0.5);
    position: relative;
}

.percentage-number::after {
    content: attr(data-number);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0003FF 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(10px);
    opacity: 0.5;
    z-index: -1;
}

.company-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.company-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.company-badge:hover::before {
    left: 100%;
}

.author-name {
    position: relative;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.author-name::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0003FF, #60a5fa);
    transition: width 0.3s ease;
}

.case-study-card:hover .author-name::after {
    width: 100%;
}

/* Layout Proportions */
.case-study-section-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

@media (max-width: 1024px) {
    .case-study-section-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Result Card Enhancements */
.result-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
}

.result-card .percentage-section {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.result-card .stats-section {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(107, 114, 128, 0.3);
}

/* Icon Improvements */
.growth-icon svg {
    filter: drop-shadow(0 0 10px rgba(0, 3, 255, 0.3));
}

/* Better spacing and alignment */
.case-study-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.case-study-content {
    flex-grow: 1;
}

.case-study-author {
    margin-top: auto;
    text-align: left;
}

/* GSAP Animation Classes */
.gsap-fade-up {
    opacity: 0;
    transform: translateY(30px);
}

.gsap-fade-left {
    opacity: 0;
    transform: translateX(-30px);
}

.gsap-fade-right {
    opacity: 0;
    transform: translateX(30px);
}

.gsap-scale {
    opacity: 0;
    transform: scale(0.8);
}

.gsap-stagger {
    opacity: 0;
    transform: translateY(20px);
}

/* Fallback para elementos sem animação GSAP */
.feature-card:not(.gsap-animated),
header:not(.gsap-animated),
.cta-button:not(.gsap-animated) {
    opacity: 1 !important;
    transform: none !important;
}

/* Mobile-optimized animations */
@media (max-width: 768px) {
    .gsap-fade-up,
    .gsap-fade-left,
    .gsap-fade-right {
        transform: translateY(20px);
    }
    
    .gsap-scale {
        transform: scale(0.9);
    }
    
    .gsap-stagger {
        transform: translateY(15px);
    }
}

/* iOS Safari viewport fix */
@supports (-webkit-touch-callout: none) {
    .min-h-screen {
        min-height: -webkit-fill-available;
    }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .hero-bg {
        /* Versão simplificada para mobile - melhor performance */
        background-image: 
            radial-gradient(ellipse at 20% 25%, rgba(0, 3, 255, 0.3), rgba(5, 4, 16, 0) 45%),
            radial-gradient(ellipse at 80% 75%, rgba(59, 130, 246, 0.2), rgba(5, 4, 16, 0) 50%),
            linear-gradient(135deg, rgba(0, 3, 255, 0.05) 0%, rgba(5, 4, 16, 0.8) 100%);
        background-size: 300% 300%, 250% 250%, 100% 100%;
        animation: AnimateVeilMobile 25s ease-in-out infinite;
    }
    
    .hero-bg::before {
        opacity: 0.3; /* Reduz opacidade das partículas */
        animation-duration: 60s; /* Animação mais lenta */
    }
    
    .hero-bg::after {
        opacity: 0.2; /* Reduz brilho */
        animation-duration: 80s; /* Mais lenta */
    }
}

/* Animação mobile simplificada */
@keyframes AnimateVeilMobile {
    0%, 100% {
        background-position: 0% 0%, 100% 100%, 0% 0%;
    }
    50% {
        background-position: 100% 50%, 0% 50%, 50% 50%;
    }
}
    
    .feature-card {
        backdrop-filter: blur(8px); /* Reduz blur em mobile */
        padding: 20px !important; /* Padding reduzido para mobile */
        margin-bottom: 16px;
    }
    
    /* Melhora área de toque em mobile */
    .cta-button {
        min-height: 44px; /* Área mínima recomendada para touch */
        padding: 14px 24px;
        font-size: 16px;
        width: 100%;
        text-align: center;
    }
    
    /* Otimiza formulário para mobile */
    input, button {
        font-size: 16px; /* Evita zoom no iOS */
        padding: 14px 16px;
    }
    
    /* Fix para mobile menu */
    .mobile-menu {
        transform: translateX(0);
        transition: transform 0.3s ease;
    }
    
    /* Melhora FAQ mobile */
    .faq-item button {
        min-height: 60px; /* Área de toque maior */
        padding: 20px !important;
        font-size: 16px;
    }
    
    .faq-item button span {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    /* Melhora navegação mobile */
    .mobile-menu a {
        min-height: 48px;
        display: flex;
        align-items: center;
        padding: 12px 16px;
        font-size: 16px;
    }
    
    /* Mobile Typography */
    h1 {
        font-size: 2rem !important; /* 32px */
        line-height: 1.2;
        margin-bottom: 16px;
    }
    
    h2 {
        font-size: 1.75rem !important; /* 28px */
        line-height: 1.3;
        margin-bottom: 12px;
    }
    
    h3 {
        font-size: 1.25rem !important; /* 20px */
        line-height: 1.4;
        margin-bottom: 8px;
    }
    
    p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 16px;
    }
    
    /* Container mobile */
    .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    
    /* Cards mobile spacing */
    .feature-card .flex {
        text-align: center;
        gap: 16px;
    }
    
    .feature-card .flex-shrink-0 {
        align-self: center;
    }
    
    /* Dock items mobile */
    .dock-item {
        width: 44px;
        height: 44px;
    }
    
    .dock-tooltip {
        font-size: 14px;
        padding: 6px 12px;
    }
    
    /* Otimizações de performance mobile */
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    /* Scrolling suave apenas em dispositivos que suportam */
    @media (prefers-reduced-motion: no-preference) {
        html {
            scroll-behavior: smooth;
        }
    }
    
    /* Melhor spacing para seções mobile - exceto hero */
    section:not(.hero-bg) {
        padding: 60px 0 !important;
    }
    
    /* Form mobile improvements */
    form input, form button {
        border-radius: 8px;
        margin-bottom: 12px;
    }
    
    /* WhatsApp form improvements */
    form input:focus {
        border-color: #0003FF;
        box-shadow: 0 0 0 3px rgba(0, 3, 255, 0.1);
    }
    
    form input:invalid {
        border-color: #ef4444;
    }
    
    form button:disabled {
        opacity: 0.7;
        cursor: not-allowed;
        transform: none !important;
    }
    
    /* Header mobile fixes */
    header .container {
        padding: 12px 16px;
    }
    
    /* Mobile-first grid adjustments */
    .grid {
        gap: 16px !important;
    }
    
    /* Case Study Mobile Optimizations */
    .case-study-card,
    .result-card {
        padding: 24px !important;
        margin-bottom: 16px;
    }
    
    /* Mobile layout - stack vertically */
    .lg\\:col-span-2,
    .lg\\:col-span-1 {
        grid-column: span 1 !important;
    }
    
    .quote-mark {
        font-size: 40px;
        top: -5px;
        left: -5px;
    }
    
    .blockquote-content {
        padding-left: 10px;
        font-size: 16px !important;
        line-height: 1.6;
    }
    
    .percentage-number {
        font-size: 4rem !important;
    }
    
    .growth-icon {
        padding: 12px;
        margin-bottom: 0 !important;
        margin-right: 16px !important;
    }
    
    .growth-icon svg {
        width: 24px !important;
        height: 24px !important;
    }
    
    /* Mobile percentage layout adjustments */
    .percentage-section .flex {
        gap: 16px !important;
        margin-bottom: 16px !important;
    }
    
    .company-badge {
        padding: 6px 12px;
        font-size: 14px;
        margin-bottom: 24px !important;
    }
    
    .case-study-title {
        font-size: 18px !important;
        margin-bottom: 20px !important;
    }
    
    .author-name {
        font-size: 18px !important;
        margin-bottom: 8px !important;
    }
    
    /* Adjust result card layout for mobile */
    .result-card {
        padding: 32px 24px !important;
    }
    
    .result-card .grid {
        gap: 12px !important;
    }
}

/* Smooth scrolling para navegação */
html {
    scroll-behavior: smooth;
}

/* Tablet Optimizations */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding-left: 24px;
        padding-right: 24px;
    }
    
    .feature-card {
        padding: 24px;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.25rem;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 15px;
    }
}

/* Fix para Alpine.js loading */
[x-cloak] { 
    display: none !important; 
}

/* Fallback para garantir visibilidade sem GSAP */
.feature-card,
header,
section,
.cta-button,
h1, h2, h3, p {
    opacity: 1;
    transform: none;
}

/* Classes de animação só aplicam quando GSAP está ativo */
.gsap-active .gsap-fade-up {
    opacity: 0;
    transform: translateY(30px);
}

.gsap-active .gsap-fade-left {
    opacity: 0;
    transform: translateX(-30px);
}

.gsap-active .gsap-fade-right {
    opacity: 0;
    transform: translateX(30px);
}

.gsap-active .gsap-scale {
    opacity: 0;
    transform: scale(0.8);
}

.gsap-active .gsap-stagger {
    opacity: 0;
    transform: translateY(20px);
}

/* Mobile-first utilities */
.touch-friendly {
    min-height: 44px;
    min-width: 44px;
}

.mobile-text-center {
    text-align: center;
}

@media (min-width: 768px) {
    .mobile-text-center {
        text-align: left;
    }
}

/* Melhorias de acessibilidade */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-bg {
        animation: none !important;
    }
    
    /* Desabilitar animações GSAP */
    .gsap-fade-up,
    .gsap-fade-left,
    .gsap-fade-right,
    .gsap-scale,
    .gsap-stagger {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Alto contraste para melhor legibilidade */
@media (prefers-contrast: high) {
    .gradient-text {
        color: #0003FF !important;
        background: none !important;
        -webkit-text-fill-color: #0003FF !important;
    }
    
    .feature-card {
        border-color: rgba(255, 255, 255, 0.3);
    }
    
    .cta-button {
        border: 2px solid #0003FF;
    }
}

/* Form Improvements */
form input:focus {
    border-color: #0003FF !important;
    box-shadow: 0 0 0 3px rgba(0, 3, 255, 0.1) !important;
    outline: none;
}

form input:invalid:not(:focus) {
    border-color: #ef4444;
}

form button:disabled {
    opacity: 0.7 !important;
    cursor: not-allowed !important;
    transform: none !important;
    pointer-events: none;
}

form button:disabled:hover {
    transform: none !important;
    box-shadow: 0 4px 15px rgba(0, 3, 255, 0.4) !important;
}

/* Loading state for button */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

form button:disabled {
    animation: pulse 1.5s ease-in-out infinite;
}

/* Ticker Infinito Styles */
.ticker-container {
    width: 100%;
    overflow: hidden;
    mask: linear-gradient(90deg, transparent 0%, white 10%, white 90%, transparent 100%);
    -webkit-mask: linear-gradient(90deg, transparent 0%, white 10%, white 90%, transparent 100%);
}

.ticker-track {
    animation: ticker-scroll 30s linear infinite;
    will-change: transform;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.ticker-item {
    flex-shrink: 0;
}

.ticker-item:hover .flex {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(0, 3, 255, 0.4);
}

.ticker-item .flex {
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Pausa o ticker no hover */
.ticker-container:hover .ticker-track {
    animation-play-state: paused;
}

/* Mobile optimizations para ticker */
@media (max-width: 768px) {
    .ticker-track {
        animation-duration: 20s;
    }
    
    .ticker-item .flex {
        padding: 8px 16px;
    }
    
    .ticker-item span {
        font-size: 12px;
    }
    
    .ticker-item svg {
        width: 16px;
        height: 16px;
    }
}

/* Reduz animação para quem prefere menos movimento */
@media (prefers-reduced-motion: reduce) {
    .ticker-track {
        animation: none;
    }
    
    .ticker-container {
        overflow-x: auto;
        mask: none;
        -webkit-mask: none;
    }
    
    .ticker-track {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }
}

/* Mobile Feature Cards Styles */
.mobile-cards-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.mobile-cards-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-feature-card {
    min-width: 100%;
    padding: 0 20px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: none;
}

.mobile-feature-card.active {
    opacity: 1;
    transform: translateX(0);
    display: block;
}

.mobile-feature-card .mobile-card-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-feature-card.dark .mobile-card-content {
    background: linear-gradient(135deg, rgba(30, 30, 35, 0.95) 0%, rgba(20, 20, 25, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-feature-card.light .mobile-card-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
    border: 1px solid rgba(0, 3, 255, 0.1);
}

.mobile-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.mobile-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 3, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-card-icon.meta {
    background: rgba(24, 119, 242, 0.1);
}

.mobile-card-badge {
    background: rgba(0, 3, 255, 0.1);
    color: #0003FF;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-card-badge.green {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.mobile-card-badge.purple {
    background: rgba(139, 69, 254, 0.1);
    color: #8B45FE;
}

.mobile-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 12px;
    line-height: 1.3;
}

.mobile-card-title.white {
    color: #F8FAFC;
}

.mobile-card-title.dark {
    color: #1E293B;
}

.mobile-card-description {
    font-size: 14px;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 8px;
}

.mobile-card-description.dark {
    color: #475569;
}

.mobile-card-subdescription {
    font-size: 13px;
    color: #94A3B8;
    line-height: 1.5;
    font-weight: 300;
}

.mobile-card-image {
    width: 100%;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 10px 25px rgba(0, 3, 255, 0.1);
}

.integration-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}

.integration-item {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.integration-item:last-child {
    border-bottom: none;
}

.integration-name {
    font-size: 14px;
    font-weight: 600;
    color: #7C9687;
    margin-bottom: 4px;
}

.integration-desc {
    font-size: 13px;
    color: #7C9687;
    font-weight: 300;
    line-height: 1.4;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 16px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #1E293B;
}

.benefit-item strong {
    font-weight: 600;
}

.mobile-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #0003FF 0%, #3B82F6 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    margin-top: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 3, 255, 0.3);
}

.mobile-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 3, 255, 0.4);
}

.mobile-cards-navigation {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    padding: 0 20px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-dot.active {
    background: #0003FF;
    transform: scale(1.2);
}

.nav-dot:hover {
    background: rgba(0, 3, 255, 0.6);
}

/* Auto slide animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-feature-card.active {
    animation: slideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .mobile-feature-card {
        padding: 0 16px;
    }
    
    .mobile-card-content {
        padding: 20px;
    }
    
    .mobile-card-title {
        font-size: 18px;
    }
    
    .mobile-card-description {
        font-size: 13px;
    }
    
    .mobile-card-image {
        height: 160px;
    }
}

/* Hover effects para desktop (se necessário) */
@media (min-width: 768px) {
    .mobile-feature-card .mobile-card-content:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(0, 3, 255, 0.15);
    }
}
