/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-light) 100%);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    background: var(--card-bg);
    padding: 0;
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(59, 130, 246, 0.15);
    text-align: center;
    max-width: 320px;
    border: 2px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: heroCardFloat 6s ease-in-out infinite;
}

.hero-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 35px 100px rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.3);
}

.hero-card-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(59, 130, 246, 0.05) 0%,
        rgba(147, 51, 234, 0.05) 50%,
        rgba(239, 68, 68, 0.05) 100%);
    animation: gradientShift 8s ease-in-out infinite;
}

.hero-card-content {
    position: relative;
    z-index: 2;
    padding: 40px 30px;
}

.hero-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.hero-icon {
    font-size: 70px;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
    animation: iconPulse 3s ease-in-out infinite;
}

.icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: pulseRing 2s ease-out infinite;
    opacity: 0.3;
}

.hero-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-card p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 25px;
    font-weight: 500;
}

.hero-card-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.mini-stat {
    text-align: center;
}

.mini-number {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.mini-label {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.hero-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    animation: badgeBounce 4s ease-in-out infinite;
}

.hero-card-badge i {
    font-size: 16px;
}

/* Animações */
@keyframes heroCardFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    50% { transform: translateY(-5px) rotate(0deg); }
    75% { transform: translateY(-15px) rotate(-1deg); }
}

@keyframes gradientShift {
    0%, 100% {
        background: linear-gradient(135deg,
            rgba(59, 130, 246, 0.05) 0%,
            rgba(147, 51, 234, 0.05) 50%,
            rgba(239, 68, 68, 0.05) 100%);
    }
    33% {
        background: linear-gradient(135deg,
            rgba(147, 51, 234, 0.05) 0%,
            rgba(239, 68, 68, 0.05) 50%,
            rgba(59, 130, 246, 0.05) 100%);
    }
    66% {
        background: linear-gradient(135deg,
            rgba(239, 68, 68, 0.05) 0%,
            rgba(59, 130, 246, 0.05) 50%,
            rgba(147, 51, 234, 0.05) 100%);
    }
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(0.7);
        opacity: 0.7;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}

@keyframes badgeBounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}
