/* Hero Specific Styles */

/* Aumentar tamanho das stats cards no hero */
.section-hero .card {
    transition: all 0.4s cubic-bezier(.17, .87, .44, 1.18);
}

.section-hero .card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(38, 94, 255, 0.15);
}

/* Animação adicional para ícones */
.section-hero .icon-container {
    transition: all 0.3s ease;
}

.section-hero .card:hover .icon-container {
    transform: rotate(360deg) scale(1.1);
}

/* Efeito de brilho nos badges */
.section-hero .badge {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.section-hero .badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.section-hero .badge:hover::before {
    left: 100%;
}

.section-hero .badge:hover {
    transform: translateY(-2px);
}

/* Pulso sutil nos botões */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(38, 94, 255, 0.3);
    }
    50% {
        box-shadow: 0 8px 32px rgba(38, 94, 255, 0.5);
    }
}

.section-hero .btn-primary {
    animation: pulse 3s ease-in-out infinite;
}

/* Responsividade adicional para hero */
@media (max-width: 768px) {
    .section-hero .title-xl {
        font-size: 32px;
        line-height: 1.3;
    }
    
    .section-hero .subtitle {
        font-size: 16px;
    }
    
    .section-hero .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }
}

@media (max-width: 480px) {
    .section-hero .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .section-hero .btn {
        width: 100%;
        justify-content: center;
    }
}
