/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563EB;
    --primary-dark: #1D4ED8;
    --secondary-color: #3B82F6;
    --accent-color: #60A5FA;
    --bg-color: #000000;
    --bg-secondary: #111111;
    --text-color: #FFFFFF;
    --text-secondary: #B3B3B3;
    --card-bg: #1A1A1A;
    --border-color: #333333;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-secondary: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #000000;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Fundo interativo completo - Similar ao PodPay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        /* Grid animado */
        linear-gradient(90deg, rgba(37, 99, 235, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(37, 99, 235, 0.1) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: -3;
    animation: gridSlide 25s linear infinite;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        /* Gradientes radiais em movimento */
        radial-gradient(circle at 25% 25%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 10%, rgba(96, 165, 250, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 10% 90%, rgba(147, 197, 253, 0.06) 0%, transparent 40%);
    z-index: -2;
    animation: backgroundFlow 20s ease-in-out infinite;
}

@keyframes gridSlide {
    0% { transform: translate(0, 0); }
    100% { transform: translate(80px, 80px); }
}

@keyframes backgroundFlow {
    0%, 100% { 
        background: 
            radial-gradient(circle at 25% 25%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.12) 0%, transparent 50%),
            radial-gradient(circle at 50% 10%, rgba(96, 165, 250, 0.08) 0%, transparent 40%),
            radial-gradient(circle at 10% 90%, rgba(147, 197, 253, 0.06) 0%, transparent 40%);
    }
    25% { 
        background: 
            radial-gradient(circle at 70% 30%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.12) 0%, transparent 50%),
            radial-gradient(circle at 80% 60%, rgba(96, 165, 250, 0.08) 0%, transparent 40%),
            radial-gradient(circle at 40% 20%, rgba(147, 197, 253, 0.06) 0%, transparent 40%);
    }
    50% { 
        background: 
            radial-gradient(circle at 80% 70%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.12) 0%, transparent 50%),
            radial-gradient(circle at 10% 80%, rgba(96, 165, 250, 0.08) 0%, transparent 40%),
            radial-gradient(circle at 90% 40%, rgba(147, 197, 253, 0.06) 0%, transparent 40%);
    }
    75% { 
        background: 
            radial-gradient(circle at 40% 80%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 90% 20%, rgba(59, 130, 246, 0.12) 0%, transparent 50%),
            radial-gradient(circle at 60% 40%, rgba(96, 165, 250, 0.08) 0%, transparent 40%),
            radial-gradient(circle at 20% 70%, rgba(147, 197, 253, 0.06) 0%, transparent 40%);
    }
}

/* Elementos flutuantes interativos - Similar ao PodPay */
.interactive-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    background: rgba(37, 99, 235, 0.8);
    border-radius: 4px;
    animation: floatComplex 15s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.5);
    z-index: 1;
}

/* Formas geométricas diferentes */
.shape-1 { width: 8px; height: 8px; top: 10%; left: 5%; animation-duration: 12s; animation-delay: 0s; background: rgba(37, 99, 235, 0.8); }
.shape-2 { width: 6px; height: 12px; top: 20%; left: 85%; animation-duration: 18s; animation-delay: 2s; background: rgba(59, 130, 246, 0.7); border-radius: 2px; }
.shape-3 { width: 10px; height: 6px; top: 40%; left: 15%; animation-duration: 14s; animation-delay: 4s; background: rgba(96, 165, 250, 0.6); }
.shape-4 { width: 4px; height: 4px; top: 60%; left: 90%; animation-duration: 16s; animation-delay: 1s; background: rgba(147, 197, 253, 0.9); border-radius: 50%; }
.shape-5 { width: 12px; height: 4px; top: 80%; left: 25%; animation-duration: 20s; animation-delay: 6s; background: rgba(37, 99, 235, 0.7); border-radius: 2px; }
.shape-6 { width: 6px; height: 6px; top: 15%; left: 50%; animation-duration: 13s; animation-delay: 3s; background: rgba(59, 130, 246, 0.8); transform: rotate(45deg); }
.shape-7 { width: 8px; height: 10px; top: 75%; left: 70%; animation-duration: 17s; animation-delay: 7s; background: rgba(96, 165, 250, 0.5); border-radius: 3px; }
.shape-8 { width: 5px; height: 8px; top: 25%; left: 30%; animation-duration: 15s; animation-delay: 2.5s; background: rgba(147, 197, 253, 0.7); }
.shape-9 { width: 10px; height: 10px; top: 55%; left: 60%; animation-duration: 19s; animation-delay: 5s; background: rgba(37, 99, 235, 0.6); border-radius: 50%; }
.shape-10 { width: 7px; height: 14px; top: 5%; left: 75%; animation-duration: 21s; animation-delay: 8s; background: rgba(59, 130, 246, 0.8); border-radius: 1px; }
.shape-11 { width: 9px; height: 5px; top: 85%; left: 10%; animation-duration: 11s; animation-delay: 4.5s; background: rgba(96, 165, 250, 0.7); }
.shape-12 { width: 6px; height: 6px; top: 35%; left: 80%; animation-duration: 16s; animation-delay: 6.5s; background: rgba(147, 197, 253, 0.6); transform: rotate(30deg); }
.shape-13 { width: 11px; height: 7px; top: 70%; left: 45%; animation-duration: 14s; animation-delay: 1.5s; background: rgba(37, 99, 235, 0.5); border-radius: 3px; }
.shape-14 { width: 4px; height: 10px; top: 50%; left: 95%; animation-duration: 18s; animation-delay: 7.5s; background: rgba(59, 130, 246, 0.9); }
.shape-15 { width: 8px; height: 8px; top: 90%; left: 55%; animation-duration: 13s; animation-delay: 3.5s; background: rgba(96, 165, 250, 0.8); border-radius: 50%; }

@keyframes floatComplex {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg); 
        opacity: 0.3;
    }
    25% { 
        transform: translate(30px, -40px) rotate(90deg); 
        opacity: 0.8;
    }
    50% { 
        transform: translate(-20px, -80px) rotate(180deg); 
        opacity: 0.5;
    }
    75% { 
        transform: translate(-40px, -40px) rotate(270deg); 
        opacity: 0.9;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: relative; /* Added for mobile menu positioning */
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(37, 99, 235, 0.3));
}

.logo-text {
    color: var(--text-color);
}

.logo-accent {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-color);
}

.login-btn {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-right: 10px;
}

.login-btn:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.signup-btn {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.signup-btn:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* Elementos flutuantes decorativos */
.hero-container::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, rgba(37, 99, 235, 0.05) 50%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 12s ease-in-out infinite;
    z-index: -1;
    filter: blur(1px);
}

.hero-container::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: -8%;
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, rgba(96, 165, 250, 0.04) 50%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 15s ease-in-out infinite reverse;
    z-index: -1;
    filter: blur(0.5px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.hero-logo {
    text-align: left;
    margin: 30px 0;
}

.hero-logo-image {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(37, 99, 235, 0.3));
    transition: all 0.3s ease;
}

.hero-logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 12px rgba(37, 99, 235, 0.4));
}

.hero-tagline {
    font-size: 1.25rem;
    font-weight: 600;
    color: #94A3B8;
    text-align: left;
    margin: 20px 0 30px 0;
    line-height: 1.4;
    letter-spacing: 0.01em;
}

.cta-button {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    color: white;
}

.cta-button i {
    color: #60A5FA;
    filter: drop-shadow(0 1px 2px rgba(37, 99, 235, 0.3));
    margin-right: 8px;
}

.cta-button.large {
    padding: 20px 40px;
    font-size: 1.2rem;
}

/* Dashboard Mockup */
.dashboard-mockup {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.dashboard-header {
    margin-bottom: 20px;
}

.dashboard-nav {
    display: flex;
    gap: 20px;
}

.nav-item {
    padding: 10px 20px;
    border-radius: 10px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-item.active {
    background: var(--primary-color);
    color: white;
}

.nav-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-item:hover {
    background: rgba(37, 99, 235, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.stat-card {
    background: var(--bg-secondary);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.chart-area {
    background: var(--bg-secondary);
    height: 120px;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: end;
}

.chart-bars {
    display: flex;
    gap: 10px;
    width: 100%;
    height: 100%;
    align-items: end;
}

.bar {
    background: var(--gradient-primary);
    width: 100%;
    border-radius: 5px;
    animation: growUp 2s ease-out;
}

@keyframes growUp {
    from { height: 0; }
    to { height: var(--height); }
}

/* Dashboard Tabs - Completely rewritten */
.dashboard-content {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.dashboard-content .tab-content {
    display: none;
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dashboard-content .tab-content.active {
    display: block;
    opacity: 1;
}

/* Hide stat labels that might overlap */
#vendas-tab .stat-label,
#saques-tab .stat-label {
    position: relative;
    z-index: 1;
}

#vendas-tab .chart-area *,
#saques-tab .chart-area * {
    position: relative;
    z-index: 2;
}

/* Vendas Tab Styles */
#vendas-tab .chart-area {
    background: transparent !important;
    height: auto !important;
    padding: 0 !important;
    margin-top: 15px;
    display: block !important;
}

#vendas-tab .sales-list {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
    clear: both;
}

#vendas-tab .sale-item {
    display: grid;
    grid-template-columns: 60px 1fr 40px;
    align-items: center;
    padding: 15px 20px;
    background: rgba(37, 99, 235, 0.05);
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
    transition: background 0.2s ease;
}

#vendas-tab .sale-item:hover {
    background: rgba(37, 99, 235, 0.1);
}

#vendas-tab .sale-item:last-child {
    border-bottom: none;
}

#vendas-tab .sale-time {
    color: #94A3B8;
    font-size: 0.85rem;
    font-weight: 500;
}

#vendas-tab .sale-value {
    color: #F8FAFC;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: left;
    margin-left: 10px;
}

#vendas-tab .sale-status.approved {
    color: #10B981;
    font-size: 1.1rem;
    text-align: center;
}

/* Saques Tab Styles */
#saques-tab .chart-area {
    background: transparent !important;
    height: auto !important;
    padding: 0 !important;
    margin-top: 15px;
    display: block !important;
}

#saques-tab .withdraw-options {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 10;
    clear: both;
}

#saques-tab .withdraw-item {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 8px;
    transition: all 0.2s ease;
}

#saques-tab .withdraw-item:hover {
    background: rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.4);
}

#saques-tab .withdraw-method {
    color: #F8FAFC;
    font-weight: 600;
    font-size: 0.95rem;
}

#saques-tab .withdraw-time {
    color: #94A3B8;
    font-size: 0.85rem;
    text-align: center;
}

#saques-tab .mini-btn {
    background: linear-gradient(135deg, #2563EB, #3B82F6);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

#saques-tab .mini-btn:hover {
    background: linear-gradient(135deg, #1D4ED8, #2563EB);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

/* Force proper layout for tab content */
.dashboard-content .tab-content {
    position: static !important;
    float: none !important;
    clear: both !important;
}

.dashboard-content .tab-content .stats-grid {
    margin-bottom: 20px;
    clear: both;
}

.dashboard-content .tab-content .chart-area {
    clear: both;
    position: static !important;
}

/* Mobile adjustments for tabs */
@media (max-width: 768px) {
    #vendas-tab .sale-item {
        grid-template-columns: 50px 1fr 30px;
        padding: 12px 15px;
    }
    
    #vendas-tab .sale-time {
        font-size: 0.8rem;
    }
    
    #vendas-tab .sale-value {
        font-size: 0.9rem;
        margin-left: 8px;
    }
    
    #saques-tab .withdraw-item {
        grid-template-columns: 1fr;
        gap: 8px;
        text-align: center;
    }
    
    #saques-tab .withdraw-time {
        text-align: center;
    }
    
    #saques-tab .mini-btn {
        width: 100%;
        justify-self: center;
        max-width: 120px;
    }
}

/* Social Proof */
.social-proof {
    padding: 80px 0;
    background: transparent;
    overflow: hidden;
}

.full-width-container {
    width: 100%;
    max-width: none;
    padding: 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.carousel-container {
    overflow: hidden;
    position: relative;
    height: 120px;
    margin-bottom: 30px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 10px 0;
}

.carousel-container::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 200px;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 1), transparent);
    z-index: 10;
    pointer-events: none;
}

.carousel-container::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 200px;
    height: 100%;
    background: linear-gradient(to left, rgba(0, 0, 0, 1), transparent);
    z-index: 10;
    pointer-events: none;
}

.carousel-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

/* Diferentes velocidades e direções para cada carrossel */
.carousel-1 {
    animation: scroll-right 800s linear infinite;
}

.carousel-2 {
    animation: scroll-left 900s linear infinite;
}

.carousel-item {
    background: var(--card-bg);
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 280px;
    max-height: 90px;
    border: 1px solid var(--border-color);
    transition: opacity 0.3s ease;
    opacity: 1;
    box-sizing: border-box;
}

.carousel-item.approved {
    border-left: 4px solid var(--accent-color);
}

.carousel-item.withdrawal {
    border-left: 4px solid var(--secondary-color);
}



.item-icon {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Carousel Logo - SOLUÇÃO DEFINITIVA */
img.carousel-logo,
.carousel-logo,
.item-icon img.carousel-logo,
.carousel-item .item-icon img.carousel-logo,
.carousel-track .carousel-item .item-icon img.carousel-logo {
    width: 40px !important;
    height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    object-fit: contain !important;
    object-position: center !important;
    display: block !important;
    border: none !important;
    outline: none !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    filter: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    vertical-align: middle !important;
    image-rendering: auto !important;
    -webkit-image-rendering: auto !important;
    -moz-image-rendering: auto !important;
    -ms-image-rendering: auto !important;
    -o-image-rendering: auto !important;
}

.item-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 50px !important;
    height: 50px !important;
    padding: 5px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}



.item-title {
    font-weight: 600;
    margin-bottom: 3px;
    font-size: 0.95rem;
    line-height: 1.2;
}

.item-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1.2;
}

.item-time {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.2;
}

/* Animações dos carrosséis */
@keyframes scroll-right {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

@keyframes scroll-left {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(0); }
}

/* Features - Modern Clean Design */
.features {
    padding: 120px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.features .container {
    max-width: 1400px;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 80px;
    background: linear-gradient(135deg, #ffffff, #94A3B8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.section-title i {
    color: #2563EB !important;
    background: linear-gradient(135deg, #2563EB, #3B82F6, #60A5FA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(37, 99, 235, 0.3));
    margin-right: 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 32px;
    margin-top: 80px;
}

.feature-card {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.85));
    padding: 48px 36px;
    border-radius: 24px;
    border: 1px solid rgba(37, 99, 235, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(20px);
    text-align: left;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.5), transparent);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-12px);
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 32px 64px rgba(37, 99, 235, 0.15), 0 0 0 1px rgba(37, 99, 235, 0.1);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #2563EB, #3B82F6, #60A5FA);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #2563EB, #3B82F6);
    border-radius: 18px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover .feature-icon::before {
    opacity: 1;
}

.feature-icon i {
    font-size: 1.75rem;
    color: white;
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.feature-card:hover .feature-icon {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.4);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #F8FAFC;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.feature-card p {
    color: #94A3B8;
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Micro-interactions and advanced effects */
.feature-card {
    will-change: transform;
}

.feature-card:hover h3 {
    color: #ffffff;
    transition: color 0.3s ease;
}

.feature-card:hover p {
    color: #CBD5E1;
    transition: color 0.3s ease;
}

/* Glassmorphism effect enhancement */
.feature-card:hover {
    backdrop-filter: blur(25px);
}

/* Subtle glow effect on hover */
.feature-card:hover .feature-icon {
    box-shadow: 
        0 12px 32px rgba(37, 99, 235, 0.4),
        0 0 0 1px rgba(37, 99, 235, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Progressive enhancement for modern browsers */
@supports (backdrop-filter: blur(20px)) {
    .feature-card {
        background: linear-gradient(145deg, 
            rgba(15, 23, 42, 0.9), 
            rgba(30, 41, 59, 0.8)
        );
        border: 1px solid rgba(37, 99, 235, 0.1);
    }
}

/* Awards - Design Clean e Moderno */
.awards {
    padding: 120px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.awards-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 80px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.award-card {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 24px;
    padding: 0;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.award-card::after {
    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.6s ease;
}

.award-card:hover::after {
    left: 100%;
}

.award-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(37, 99, 235, 0.5);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.25);
}

.award-card:hover .plate-image-real {
    transform: scale(1.08);
    filter: brightness(1.2) contrast(1.1);
}

.award-status {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #10B981;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.award-image {
    margin: 0;
    position: relative;
    width: 100%;
    height: auto;
    padding: 30px 30px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.plate-image-real {
    width: 100%;
    max-width: 260px;
    height: auto;
    border-radius: 16px;
    transition: all 0.4s ease;
    filter: brightness(1.1) contrast(1.05);
}

/* Removed plate-mockup styles - using real images */

/* Removed all plate decoration styles - using real images */

/* Removed old plate styles - using real images now */

/* Responsive styles for award images */
@media (max-width: 768px) {
    .award-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .award-image {
        height: 220px;
    }
}

.award-info {
    padding: 0 30px 30px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
}

.award-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: white;
    letter-spacing: -0.5px;
}

.award-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
}

/* Efeitos específicos por categoria de award */
.award-card.bronze {
    border-color: rgba(205, 127, 50, 0.3);
}

.award-card.bronze:hover {
    border-color: rgba(205, 127, 50, 0.6);
    box-shadow: 0 25px 50px rgba(205, 127, 50, 0.2);
}

.award-card.silver {
    border-color: rgba(192, 192, 192, 0.3);
}

.award-card.silver:hover {
    border-color: rgba(192, 192, 192, 0.6);
    box-shadow: 0 25px 50px rgba(192, 192, 192, 0.2);
}

.award-card.gold {
    border-color: rgba(255, 215, 0, 0.3);
}

.award-card.gold:hover {
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.2);
}

.award-card.emerald {
    border-color: rgba(80, 200, 120, 0.3);
}

.award-card.emerald:hover {
    border-color: rgba(80, 200, 120, 0.6);
    box-shadow: 0 25px 50px rgba(80, 200, 120, 0.2);
}

.award-card.ruby {
    border-color: rgba(224, 17, 95, 0.3);
}

.award-card.ruby:hover {
    border-color: rgba(224, 17, 95, 0.6);
    box-shadow: 0 25px 50px rgba(224, 17, 95, 0.2);
}

.award-card.diamond {
    border-color: rgba(65, 105, 225, 0.3);
}

.award-card.diamond:hover {
    border-color: rgba(65, 105, 225, 0.6);
    box-shadow: 0 25px 50px rgba(65, 105, 225, 0.2);
}

/* Responsive para Awards */
@media (max-width: 1200px) {
    .awards-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .awards-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        padding: 0 15px;
    }
    
    .award-card {
        padding: 0;
    }
    
    .award-image {
        padding: 25px 25px 15px;
    }
    
    .award-info {
        padding: 0 25px 25px;
    }
}

@media (max-width: 480px) {
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .award-image {
        padding: 20px 20px 15px;
    }
    
    .award-info {
        padding: 0 20px 20px;
    }
    
    .plate-image-real {
        max-width: 220px;
    }
}

/* Animações */
@keyframes steam {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
        opacity: 0.7; 
    }
    50% { 
        transform: translateY(-15px) rotate(180deg); 
        opacity: 1; 
    }
}

@keyframes floatSlow {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) translateX(10px) scale(1.1);
        opacity: 0.5;
    }
    50% { 
        transform: translateY(-10px) translateX(-5px) scale(0.9);
        opacity: 0.7;
    }
    75% {
        transform: translateY(-25px) translateX(-10px) scale(1.05);
        opacity: 0.4;
    }
}

/* Elementos decorativos flutuantes do hero */
.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Elementos decorativos para outras seções */
.section-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.8;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    filter: blur(1px);
}

.floating-1 {
    top: 15%;
    left: 10%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.08) 0%, transparent 70%);
    animation: floatSlow 10s ease-in-out infinite;
}

.floating-2 {
    top: 60%;
    left: 80%;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
    animation: floatSlow 14s ease-in-out infinite reverse;
}

.floating-3 {
    top: 25%;
    right: 15%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
    animation: floatSlow 18s ease-in-out infinite;
    animation-delay: -5s;
}

.floating-4 {
    bottom: 25%;
    left: 5%;
    width: 35px;
    height: 35px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
    animation: floatSlow 12s ease-in-out infinite reverse;
    animation-delay: -8s;
}

.floating-5 {
    top: 30%;
    left: 45%;
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    animation: floatSlow 16s ease-in-out infinite;
    animation-delay: -3s;
}

.floating-6 {
    top: 70%;
    right: 8%;
    width: 42px;
    height: 42px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.07) 0%, transparent 70%);
    animation: floatSlow 11s ease-in-out infinite reverse;
    animation-delay: -6s;
}

.floating-7 {
    bottom: 15%;
    left: 70%;
    width: 38px;
    height: 38px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.06) 0%, transparent 70%);
    animation: floatSlow 13s ease-in-out infinite;
    animation-delay: -9s;
}

/* Elementos flutuantes específicos para cada seção */

/* Features Section Floating Elements */
.features .section-decoration .floating-1 {
    top: 10%;
    left: 8%;
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.06) 0%, transparent 70%);
    animation: floatSlow 13s ease-in-out infinite;
}

.features .section-decoration .floating-2 {
    top: 70%;
    right: 12%;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    animation: floatSlow 16s ease-in-out infinite reverse;
    animation-delay: -3s;
}

.features .section-decoration .floating-3 {
    bottom: 20%;
    left: 15%;
    width: 35px;
    height: 35px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.07) 0%, transparent 70%);
    animation: floatSlow 11s ease-in-out infinite;
    animation-delay: -6s;
}

.features .section-decoration .floating-4 {
    top: 35%;
    left: 50%;
    width: 45px;
    height: 45px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.05) 0%, transparent 70%);
    animation: floatSlow 14s ease-in-out infinite reverse;
    animation-delay: -1s;
}

.features .section-decoration .floating-5 {
    top: 55%;
    left: 2%;
    width: 32px;
    height: 32px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    animation: floatSlow 12s ease-in-out infinite;
    animation-delay: -4s;
}

.features .section-decoration .floating-6 {
    bottom: 10%;
    right: 5%;
    width: 38px;
    height: 38px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.04) 0%, transparent 70%);
    animation: floatSlow 16s ease-in-out infinite reverse;
    animation-delay: -8s;
}

/* Awards Section Floating Elements */
.awards .section-decoration .floating-1 {
    top: 15%;
    right: 10%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    animation: floatSlow 14s ease-in-out infinite;
}

.awards .section-decoration .floating-2 {
    top: 60%;
    left: 5%;
    width: 45px;
    height: 45px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    animation: floatSlow 17s ease-in-out infinite reverse;
    animation-delay: -4s;
}

.awards .section-decoration .floating-3 {
    bottom: 30%;
    right: 20%;
    width: 55px;
    height: 55px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.04) 0%, transparent 70%);
    animation: floatSlow 12s ease-in-out infinite;
    animation-delay: -7s;
}

.awards .section-decoration .floating-4 {
    top: 40%;
    left: 85%;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    animation: floatSlow 15s ease-in-out infinite reverse;
    animation-delay: -2s;
}

.awards .section-decoration .floating-5 {
    top: 25%;
    left: 45%;
    width: 42px;
    height: 42px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    animation: floatSlow 13s ease-in-out infinite;
    animation-delay: -5s;
}

/* Pricing Section Floating Elements */
.pricing .section-decoration .floating-1 {
    top: 25%;
    left: 10%;
    width: 45px;
    height: 45px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
    animation: floatSlow 13s ease-in-out infinite;
    animation-delay: -1s;
}

.pricing .section-decoration .floating-2 {
    bottom: 35%;
    right: 8%;
    width: 38px;
    height: 38px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    animation: floatSlow 16s ease-in-out infinite reverse;
    animation-delay: -5s;
}

.pricing .section-decoration .floating-3 {
    top: 50%;
    left: 85%;
    width: 35px;
    height: 35px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.04) 0%, transparent 70%);
    animation: floatSlow 14s ease-in-out infinite;
    animation-delay: -2s;
}

.pricing .section-decoration .floating-4 {
    top: 20%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.06) 0%, transparent 70%);
    animation: floatSlow 18s ease-in-out infinite reverse;
    animation-delay: -7s;
}

/* High Volume Section Floating Elements */
.high-volume .section-decoration .floating-1 {
    top: 20%;
    left: 15%;
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    animation: floatSlow 12s ease-in-out infinite;
}

.high-volume .section-decoration .floating-2 {
    top: 65%;
    right: 20%;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    animation: floatSlow 15s ease-in-out infinite reverse;
    animation-delay: -3s;
}

.high-volume .section-decoration .floating-3 {
    bottom: 25%;
    left: 75%;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: floatSlow 18s ease-in-out infinite;
    animation-delay: -6s;
}

.high-volume .section-decoration .floating-4 {
    top: 35%;
    left: 45%;
    width: 45px;
    height: 45px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    animation: floatSlow 12s ease-in-out infinite reverse;
    animation-delay: -1s;
}

.high-volume .section-decoration .floating-5 {
    top: 80%;
    left: 5%;
    width: 35px;
    height: 35px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    animation: floatSlow 16s ease-in-out infinite;
    animation-delay: -9s;
}

/* Final CTA Section Floating Elements */
.final-cta .section-decoration .floating-1 {
    top: 20%;
    right: 15%;
    width: 55px;
    height: 55px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    animation: floatSlow 14s ease-in-out infinite;
    animation-delay: -2s;
}

.final-cta .section-decoration .floating-2 {
    bottom: 30%;
    left: 10%;
    width: 42px;
    height: 42px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    animation: floatSlow 17s ease-in-out infinite reverse;
    animation-delay: -4s;
}

.final-cta .section-decoration .floating-3 {
    top: 35%;
    left: 75%;
    width: 48px;
    height: 48px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.04) 0%, transparent 70%);
    animation: floatSlow 13s ease-in-out infinite;
    animation-delay: -1s;
}

.final-cta .section-decoration .floating-4 {
    top: 60%;
    left: 45%;
    width: 35px;
    height: 35px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.05) 0%, transparent 70%);
    animation: floatSlow 15s ease-in-out infinite reverse;
    animation-delay: -6s;
}

.awards-motivation {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.awards-cta {
    text-align: center;
}

/* Achievement States */
.award-plate.locked {
    opacity: 0.6;
    filter: grayscale(0.5);
    position: relative;
}

.award-plate.locked::after {
    content: '🔒';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.2rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 5px 8px;
    border-radius: 50%;
}

.award-plate.unlocked {
    opacity: 1;
    filter: none;
    position: relative;
}

.award-plate.unlocked::after {
    content: '✅';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.2rem;
    background: var(--accent-color);
    padding: 5px 8px;
    border-radius: 50%;
}

.award-plate.unlocked:hover {
    transform: translateY(-10px) scale(1.05);
    filter: brightness(1.1);
}

/* Responsive Adjustments for Awards */
/* Removed old media queries for plate mockups */

/* Pricing */
.pricing {
    padding: 80px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.pricing-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.pricing-table {
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    margin-bottom: 30px;
}

.pricing-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--border-color);
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row.header {
    background: var(--primary-color);
}

.pricing-cell {
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pricing-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
    justify-content: center;
    align-items: center;
}

.pricing-extra {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.pricing-extra i {
    color: #60A5FA;
    margin-right: 8px;
    filter: drop-shadow(0 1px 2px rgba(37, 99, 235, 0.3));
}

/* High Volume */
.high-volume {
    padding: 80px 0;
    background: transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.high-volume-content h2 {
    margin-bottom: 20px;
}

.high-volume-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.high-volume-logo {
    margin-top: 120px;
    text-align: center;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.high-volume-logo-image {
    height: 80px;
    width: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: brightness(0.9);
}

.high-volume-logo-image:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: brightness(1) drop-shadow(0 8px 25px rgba(37, 99, 235, 0.3));
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.final-cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: transparent;
    position: relative;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 15px;
    font-weight: 300;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    z-index: 5;
}

.faq-item:hover {
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.1);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
    transition: all 0.3s ease;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    position: relative;
    z-index: 10;
}

.faq-question:hover {
    background: rgba(37, 99, 235, 0.05);
}

.faq-icon {
    font-size: 1rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px 30px 25px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Footer */
.footer {
    background: transparent;
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo-image {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(37, 99, 235, 0.3));
}

.footer-logo-text {
    font-size: 2rem;
    font-weight: 800;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
}

.footer-legal {
    display: flex;
    gap: 60px;
    justify-content: center;
}

.legal-section h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.legal-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legal-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    padding: 4px 0;
}

.legal-link:hover {
    color: var(--primary-color);
}

.footer-info {
    text-align: right;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .features {
        padding: 100px 0;
    }

    .section-title {
        font-size: 2.8rem;
        margin-bottom: 60px;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 28px;
        margin-top: 60px;
    }
    
    .nav-links {
        gap: 15px;
    }
    
    .login-btn, .signup-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-legal {
        grid-column: 1 / -1;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    /* ===== MOBILE NAVIGATION ===== */
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 25px 20px;
        border-top: 1px solid var(--border-color);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        z-index: 1000;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
        padding: 10px;
        border-radius: 8px;
        transition: background-color 0.3s ease;
        cursor: pointer;
        position: relative;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
        -webkit-tap-highlight-color: transparent;
    }
    
    .mobile-menu-toggle:hover {
        background-color: rgba(37, 99, 235, 0.1);
    }
    
    .nav-links a {
        display: block;
        margin-bottom: 15px;
        padding: 15px 20px;
        text-align: center;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
        font-size: 1rem;
        font-weight: 500;
        position: relative;
        overflow: hidden;
    }
    
    .nav-links a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
        transition: left 0.5s ease;
    }
    
    .nav-links a:hover::before {
        left: 100%;
    }
    
    .nav-links a:last-child {
        margin-bottom: 0;
    }
    
    .nav-links a:hover,
    .nav-links a:active {
        background: rgba(37, 99, 235, 0.15);
        border-color: var(--primary-color);
        color: var(--primary-color);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(37, 99, 235, 0.2);
    }
    
    .login-btn, .signup-btn {
        margin: 8px 0;
        text-align: center;
        display: block;
        width: 100%;
        padding: 15px 20px;
        border-radius: 12px;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
    }
    
    .login-btn:hover, .signup-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    }
    
    /* Mobile menu toggle animation */
    .mobile-menu-toggle span {
        transform-origin: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* ===== HERO SECTION MOBILE ===== */
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 25px;
    }
    
    .hero-visual {
        order: -1;
        margin-bottom: 40px;
    }
    
    .dashboard-mockup {
        padding: 15px;
        border-radius: 15px;
        max-width: 100%;
        overflow: hidden;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    }
    
    .dashboard-nav {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-item {
        padding: 8px 12px;
        font-size: 0.85rem;
        border-radius: 8px;
        min-width: 80px;
        flex: 1;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stat-card {
        padding: 15px;
        border-radius: 10px;
        text-align: center;
    }
    
    .stat-value {
        font-size: 1.4rem;
        margin-bottom: 5px;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .chart-area {
        height: 100px;
        padding: 15px;
    }
    
    /* Hero Logo Mobile */
    .hero-logo-image {
        height: 60px;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
        margin: 15px 0 25px 0;
    }
    
    /* ===== SOCIAL PROOF MOBILE ===== */
    .social-proof {
        padding: 60px 0;
    }
    
    .carousel-container {
        height: 110px;
        margin-bottom: 25px;
        overflow: hidden;
        border-radius: 12px;
        padding: 8px 0;
    }
    
    .carousel-item {
        padding: 14px 18px;
        border-radius: 10px;
        margin-right: 15px;
        min-width: 260px;
        max-height: 85px;
    }
    
    .item-content {
        text-align: left;
    }
    
    .item-title {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }
    
    .item-value {
        font-size: 1.1rem;
        font-weight: 700;
    }
    
    .item-time {
        font-size: 0.8rem;
        opacity: 0.7;
    }
    
    /* ===== FEATURES SECTION MOBILE ===== */
    .features {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 50px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 50px;
    }
    
    .feature-card {
        padding: 35px 25px;
        border-radius: 20px;
        transition: all 0.3s ease;
    }
    
    .feature-card:hover {
        transform: translateY(-5px);
    }
    
    .feature-icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        margin-bottom: 25px;
    }
    
    .feature-icon i {
        font-size: 1.4rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .feature-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* ===== AWARDS SECTION MOBILE ===== */
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
    }
    
    .award-card {
        padding: 20px 15px;
    }
    
    .award-image {
        height: 120px;
        margin-bottom: 15px;
    }
    
    .award-info h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .award-info p {
        font-size: 0.85rem;
    }
    
    /* ===== PRICING TABLE MOBILE ===== */
    .pricing-row {
        grid-template-columns: 1fr;
    }
    
    .pricing-table {
        margin-bottom: 25px;
        border-radius: 15px;
        overflow: hidden;
    }
    
    .pricing-row {
        border-radius: 0;
        margin-bottom: 0;
        background: transparent;
        border: none;
    }
    
    .pricing-row.header {
        display: none;
    }
    
    .pricing-row:not(.header) {
        background: var(--card-bg);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        margin-bottom: 15px;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .pricing-row:not(.header):hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(37, 99, 235, 0.1);
    }
    
    .pricing-row:last-child {
        margin-bottom: 0;
    }
    
    .pricing-cell {
        padding: 18px 20px;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
    }
    
    .pricing-cell:last-child {
        border-bottom: none;
    }
    
    .pricing-row:not(.header) .pricing-cell:first-child {
        background: var(--primary-color);
        color: white;
        font-weight: 600;
        font-size: 1.05rem;
    }
    
    .pricing-row:not(.header) .pricing-cell:last-child {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--accent-color);
        background: rgba(37, 99, 235, 0.05);
    }
    
    /* ===== BMW SECTION MOBILE ===== */
    .bmw-competition-section {
        padding: 50px 0;
    }
    
    .bmw-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .bmw-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .bmw-header {
        margin-bottom: 35px;
    }
    
    .bmw-logo {
        height: 50px;
        margin-bottom: 25px;
    }
    
    .bmw-competition-image {
        border-radius: 12px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    }
    
    .dashboard-frame {
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
    }
    
    .frame-corner {
        width: 15px;
        height: 15px;
    }
    
    /* ===== FOOTER MOBILE ===== */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }
    
    .legal-section {
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
        margin-top: 20px;
    }
    
    .high-volume-logo-image {
        height: 60px;
    }
    
    /* ===== FAQ MOBILE ===== */
    .faq {
        padding: 60px 0;
    }
    
    .faq-container {
        padding: 0 15px;
    }
    
    .faq-question {
        padding: 18px 20px;
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px 20px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    /* Dashboard Mockup - Smaller Mobile */
    .dashboard-mockup {
        padding: 12px;
        border-radius: 12px;
    }
    
    .dashboard-nav {
        gap: 8px;
    }
    
    .nav-item {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .stat-card {
        padding: 12px;
    }
    
    .stat-value {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .chart-area {
        height: 80px;
        padding: 12px;
    }
    
    /* Hero Logo Smaller Mobile */
    .hero-logo-image {
        height: 50px;
    }
    
    .hero-tagline {
        font-size: 1rem;
        margin: 12px 0 20px 0;
    }
    
    .carousel-item {
        min-width: 240px;
        max-height: 80px;
        padding: 12px 15px;
    }
    
    .carousel-container {
        height: 100px;
        padding: 6px 0;
    }
    
    .features {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .features-grid {
        margin-top: 40px;
        gap: 20px;
    }

    .feature-card {
        padding: 32px 24px;
        border-radius: 18px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        margin-bottom: 20px;
    }

    .feature-icon i {
        font-size: 1.3rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .feature-card p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .cta-button.large {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    /* Pricing Table - Smaller Mobile */
    .pricing-cell {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .pricing-row:not(.header) .pricing-cell:last-child {
        font-size: 1rem;
    }
    
    .high-volume-logo-image {
        height: 50px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-visual {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--primary-color);
    color: white;
}

/* BMW Competition Image Section */
.bmw-competition-section {
    padding: 60px 0;
    background: transparent;
}

.bmw-header {
    text-align: center;
    margin-bottom: 40px;
}

.bmw-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.bmw-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin: 0 0 30px 0;
    font-weight: 400;
}

.bmw-logo-container {
    text-align: center;
    margin-bottom: 40px;
}

.bmw-logo {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(37, 99, 235, 0.3));
    transition: all 0.3s ease;
}

.bmw-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 12px rgba(37, 99, 235, 0.4));
}

.bmw-image-container {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    display: block;
}

/* Dashboard Frame - Moldura elegante */
.dashboard-frame {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    z-index: 1;
    pointer-events: none;
}

/* Bordas do frame */
.frame-border-left, .frame-border-right {
    position: absolute;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(37, 99, 235, 0.3) 20%,
        rgba(37, 99, 235, 0.6) 50%,
        rgba(37, 99, 235, 0.3) 80%,
        transparent 100%
    );
}

.frame-border-left {
    left: 0;
}

.frame-border-right {
    right: 0;
}

.frame-border-top, .frame-border-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(37, 99, 235, 0.3) 20%,
        rgba(37, 99, 235, 0.6) 50%,
        rgba(37, 99, 235, 0.3) 80%,
        transparent 100%
    );
}

.frame-border-top {
    top: 0;
}

.frame-border-bottom {
    bottom: 0;
}

/* Cantos do frame */
.frame-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(37, 99, 235, 0.4);
}

.frame-corner-tl {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
    border-radius: 4px 0 0 0;
}

.frame-corner-tr {
    top: -2px;
    right: -2px;
    border-left: none;
    border-bottom: none;
    border-radius: 0 4px 0 0;
}

.frame-corner-bl {
    bottom: -2px;
    left: -2px;
    border-right: none;
    border-top: none;
    border-radius: 0 0 0 4px;
}

.frame-corner-br {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 4px 0;
}

.bmw-competition-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    object-fit: contain;
    position: relative;
    z-index: 2;
}

/* Responsivo para BMW Section */
@media (max-width: 768px) {
    .bmw-competition-section {
        padding: 40px 0;
    }
    
    .bmw-title {
        font-size: 2rem;
    }
    
    .bmw-subtitle {
        font-size: 1rem;
    }
    
    .bmw-header {
        margin-bottom: 30px;
    }
    
    .bmw-logo {
        height: 50px;
    }
    
    .bmw-logo-container {
        margin-bottom: 30px;
    }
    
    .bmw-competition-image {
        border-radius: 10px;
    }
    
    .dashboard-frame {
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
    }
    
    .frame-corner {
        width: 15px;
        height: 15px;
    }
}

@media (max-width: 480px) {
    .dashboard-frame {
        display: none;
    }
    
    /* Reduzir elementos flutuantes em mobile */
    .floating-shape:nth-child(n+8) {
        display: none;
    }
    
    .floating-shape {
        animation-duration: 10s !important;
    }
}

/* Mouse Spotlight Effect */
.mouse-spotlight {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(
        circle,
        rgba(37, 99, 235, 0.08) 0%,
        rgba(37, 99, 235, 0.05) 20%,
        rgba(37, 99, 235, 0.03) 40%,
        rgba(37, 99, 235, 0.015) 60%,
        transparent 80%
    );
    border-radius: 50%;
    pointer-events: none;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.4s ease;
    filter: blur(1px);
    mix-blend-mode: soft-light;
}

/* Intensificar o padrão de fundo onde o mouse está */
.mouse-spotlight::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background-image: 
        radial-gradient(circle at 25px 25px, rgba(37, 99, 235, 0.15) 2px, transparent 2px),
        linear-gradient(to right, rgba(37, 99, 235, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
    background-size: 50px 50px, 50px 50px, 50px 50px;
    border-radius: 50%;
    opacity: 0.4;
}

/* Efeito adicional no centro do spotlight */
.mouse-spotlight::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(
        circle,
        rgba(37, 99, 235, 0.12) 0%,
        rgba(37, 99, 235, 0.04) 50%,
        transparent 100%
    );
    border-radius: 50%;
    filter: blur(0.5px);
}

/* Achievement Progress Bar */
.achievement-progress {
    background: var(--bg-secondary);
    border-radius: 15px;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.achievement-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.achievement-icon {
    font-size: 2rem;
    color: #FFD700;
    animation: trophy-glow 2s ease-in-out infinite alternate;
}

.achievement-icon i {
    color: #FFD700;
}

@keyframes trophy-glow {
    0% { filter: drop-shadow(0 0 5px #FFD700); }
    100% { filter: drop-shadow(0 0 15px #FFD700); }
}

.achievement-info {
    flex: 1;
}

.achievement-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 3px;
}

.achievement-subtitle {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.achievement-percentage {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.progress-container {
    margin: 15px 0;
}

.progress-bar {
    position: relative;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, 
        var(--primary-color) 0%, 
        var(--accent-color) 50%, 
        #00D4AA 100%);
    border-radius: 6px;
    position: relative;
    width: 0%;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.3);
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%);
    animation: progress-shine 2s ease-in-out infinite;
}

@keyframes progress-shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-glow {
    position: absolute;
    top: -2px;
    left: 0;
    height: 16px;
    width: 0%;
    background: radial-gradient(ellipse, 
        rgba(37, 99, 235, 0.6) 0%, 
        transparent 70%);
    border-radius: 8px;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
    filter: blur(2px);
}

.progress-markers {
    position: relative;
    height: 20px;
}

.marker {
    position: absolute;
    font-size: 0.75rem;
    color: var(--text-secondary);
    transform: translateX(-50%);
    white-space: nowrap;
}

.marker.current {
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
}

.marker.current::before {
    content: '●';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-color);
    font-size: 1rem;
    animation: current-pulse 1.5s ease-in-out infinite;
}

@keyframes current-pulse {
    0%, 100% { opacity: 1; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.7; transform: translateX(-50%) scale(1.2); }
}

.marker.target {
    color: var(--accent-color);
    font-weight: 600;
}

.marker.target::before {
    content: '\f140';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    color: var(--accent-color);
}

.achievement-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.remaining-amount, .estimated-time {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.remaining-label, .time-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.remaining-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-color);
}

.time-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.achievement-test {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.test-achievement-btn {
    background: linear-gradient(135deg, var(--accent-color), #00D4AA);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
    min-width: 120px;
    justify-content: center;
}

.test-achievement-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.4);
}

.test-achievement-btn.secondary {
    background: linear-gradient(135deg, #6B7280, #9CA3AF);
    box-shadow: 0 4px 15px rgba(107, 114, 128, 0.3);
}

.test-achievement-btn.secondary:hover {
    box-shadow: 0 8px 25px rgba(107, 114, 128, 0.4);
}

/* Mobile Responsiveness for Achievement Progress */
@media (max-width: 768px) {
    .achievement-progress {
        padding: 15px;
    }
    
    .achievement-header {
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .achievement-icon {
        font-size: 1.5rem;
    }
    
    .achievement-title {
        font-size: 1rem;
    }
    
    .achievement-subtitle {
        font-size: 0.8rem;
    }
    
    .achievement-percentage {
        font-size: 1.3rem;
    }
    
    .progress-bar {
        height: 10px;
        margin-bottom: 12px;
    }
    
    .marker {
        font-size: 0.7rem;
    }
    
    .achievement-footer {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .remaining-value, .time-value {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .achievement-header {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .achievement-footer {
        text-align: center;
        align-items: center;
    }
    
    .marker {
        font-size: 0.65rem;
    }
    
    .progress-bar {
        height: 8px;
    }
}

/* Additional carousel fixes for better display */
.carousel-item .item-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 0;
}

.carousel-item .item-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

/* Ensure proper spacing on all screen sizes */
@media (max-width: 1024px) {
    .carousel-container {
        height: 115px;
        padding: 8px 0;
    }
    
    .carousel-item {
        max-height: 88px;
        padding: 15px 18px;
    }
}

@media (max-width: 360px) {
    .carousel-container {
        height: 95px;
        padding: 5px 0;
    }
    
    .carousel-item {
        min-width: 220px;
        max-height: 75px;
        padding: 10px 14px;
        gap: 10px;
    }
    
    .item-title {
        font-size: 0.85rem;
    }
    
    .item-value {
        font-size: 1rem;
    }
    
    .item-time {
        font-size: 0.75rem;
    }
}

/* Plate Reward Modal */
.plate-reward-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.plate-reward-modal.active {
    opacity: 1;
    visibility: visible;
}

.plate-reward-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.plate-reward-content {
    position: relative;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.9));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 24px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    text-align: center;
    transform: scale(0.7) translateY(50px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(255, 215, 0, 0.2);
}

.plate-reward-modal.active .plate-reward-content {
    transform: scale(1) translateY(0);
}

.plate-reward-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #FFD700;
    margin: 0 0 10px 0;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
}

.plate-reward-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0 0 30px 0;
}

.plate-reward-image {
    position: relative;
    margin: 30px 0;
    display: inline-block;
}

.reward-plate {
    width: 200px;
    height: auto;
    border-radius: 15px;
    animation: plateReveal 1.5s ease-out, goldGlow 2s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.reward-plate:hover {
    transform: scale(1.05);
}

.plate-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: goldGlow 3s ease-in-out infinite;
    pointer-events: none;
}

.plate-reward-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFD700;
    margin: 20px 0 10px 0;
}

.plate-reward-info > p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0 0 25px 0;
}

.reward-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 25px 0;
    padding: 20px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.reward-stats .stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.plate-reward-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
}

.reward-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    min-width: 140px;
    justify-content: center;
}

.reward-btn.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.reward-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.reward-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.reward-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Mobile Responsiveness for Plate Reward */
@media (max-width: 768px) {
    .plate-reward-content {
        padding: 30px 25px;
        margin: 20px;
    }
    
    .plate-reward-header h2 {
        font-size: 1.6rem;
    }
    
    .plate-reward-header p {
        font-size: 1rem;
    }
    
    .reward-plate {
        width: 150px;
    }
    
    .plate-reward-info h3 {
        font-size: 1.3rem;
    }
    
    .reward-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
    }
    
    .plate-reward-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .reward-btn {
        width: 100%;
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .plate-reward-content {
        padding: 25px 20px;
        margin: 10px;
        border-radius: 20px;
    }
    
    .plate-reward-header h2 {
        font-size: 1.4rem;
    }
    
    .reward-plate {
        width: 120px;
    }
    
    .plate-reward-info h3 {
        font-size: 1.2rem;
    }
    
    .stat-value {
        font-size: 1.1rem;
    }
}

/* ===== SOLUÇÃO DEFINITIVA PARA LOGO DO CARROSSEL ===== */
/* Máxima especificidade CSS possível */
html body .social-proof .full-width-container .carousel-container .carousel-track .carousel-item .item-icon img.carousel-logo {
    width: 40px !important;
    height: 40px !important;
    object-fit: contain !important;
    object-position: center !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    filter: none !important;
    mix-blend-mode: normal !important;
    opacity: 1 !important;
    display: block !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    transform: none !important;
    transition: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    vertical-align: middle !important;
    image-rendering: auto !important;
}

/* Container do logo também com máxima especificidade */
html body .social-proof .full-width-container .carousel-container .carousel-track .carousel-item .item-icon {
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    padding: 5px !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Reset absoluto para qualquer possível interferência */
.carousel-logo,
img.carousel-logo {
    all: unset !important;
    width: 40px !important;
    height: 40px !important;
    object-fit: contain !important;
    display: block !important;
}