/* Estilos específicos para Hero profissional */

/* Gradiente premium para texto */
.text-gradient-premium {
    background: linear-gradient(135deg, #007bff 0%, #0066cc 50%, #004499 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none !important;
    font-weight: 700;
}

/* Backdrop blur para cards flutuantes */
.backdrop-blur {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Shadow profissional */
.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4) !important;
}

/* Badge profissional */
.badge.bg-primary.bg-opacity-10 {
    background: rgba(13, 110, 253, 0.1) !important;
    border: 1px solid rgba(13, 110, 253, 0.3) !important;
    color: #0d6efd !important;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Animações flutuantes profissionais */
.floating-card {
    animation: floatProfessional 8s ease-in-out infinite;
    transform-origin: center center;
    transition: transform 0.3s ease;
}

.floating-card:nth-child(1) {
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    animation-delay: 2.5s;
}

.floating-card:nth-child(3) {
    animation-delay: 5s;
}

.floating-card:hover {
    transform: translateY(-5px) scale(1.05);
}

@keyframes floatProfessional {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
    }
    25% { 
        transform: translateY(-8px) rotate(0.5deg);
    }
    50% { 
        transform: translateY(-12px) rotate(0deg);
    }
    75% { 
        transform: translateY(-8px) rotate(-0.5deg);
    }
}

/* Font sizes profissionais */
.fs-7 {
    font-size: 0.875rem !important;
}

.fs-8 {
    font-size: 0.75rem !important;
}

/* Melhorias nos botões */
.btn-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.4);
}

.btn-outline-light {
    font-weight: 600;
    letter-spacing: 0.5px;
    border-width: 2px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* Hero graphic central melhorado */
.hero-main-graphic {
    position: relative;
    z-index: 1;
    max-width: 350px;
    margin: 0 auto;
}

/* Métricas profissionais */
.hero-content .h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* Tecnologias badges */
.badge.bg-dark.bg-opacity-50 {
    background: rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.badge.bg-dark.bg-opacity-50:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-2px);
}

/* Melhorias de responsividade */
@media (max-width: 768px) {
    .text-gradient-premium {
        background: #007bff;
        -webkit-background-clip: unset;
        -webkit-text-fill-color: unset;
        background-clip: unset;
        color: #007bff;
    }
    
    .floating-card {
        display: none; /* Esconder cards flutuantes em mobile */
    }
    
    .hero-main-graphic {
        margin-top: 2rem;
        max-width: 280px;
    }
    
    .display-2 {
        font-size: 2.5rem !important;
    }
    
    .lead.fs-4 {
        font-size: 1.2rem !important;
    }
}

@media (max-width: 576px) {
    .display-2 {
        font-size: 2rem !important;
    }
    
    .lead.fs-4 {
        font-size: 1.1rem !important;
    }
    
    .btn-lg {
        padding: 0.75rem 2rem !important;
        font-size: 1rem !important;
    }
}

/* Pulse animation para CTA principal */
.btn-primary::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.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

/* Scroll indicator profissional */
.scroll-indicator {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

/* Animate bounce melhorado */
.animate-bounce {
    animation: bounceGentle 3s infinite;
}

@keyframes bounceGentle {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translate3d(0, -10px, 0);
    }
    70% {
        transform: translate3d(0, -5px, 0);
    }
    90% {
        transform: translate3d(0, -2px, 0);
    }
}

/* Melhorias de acessibilidade */
@media (prefers-reduced-motion: reduce) {
    .floating-card,
    .animate-bounce,
    .btn::before {
        animation: none !important;
        transition: none !important;
    }
    
    .floating-card:hover,
    .btn:hover {
        transform: none !important;
    }
}
