/* Estilos adicionais para a seção hero melhorada */

/* Animações personalizadas */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(79, 172, 254, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(79, 172, 254, 0.6);
        transform: scale(1.02);
    }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Classes de delay para animações */
.animation-delay-1000 {
    animation-delay: 1s;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

.animation-delay-3000 {
    animation-delay: 3s;
}

.animation-delay-4000 {
    animation-delay: 4s;
}

/* Melhorias no gradiente de fundo */
.gradient-bg {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #0e4b99 100%);
    background-size: 400% 400%;
    animation: gradient-shift 15s ease infinite;
}

/* Estilos adicionais para a seção CTA melhorada */

/* Animações personalizadas */
@keyframes float-gentle {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(2deg); }
}

@keyframes pulse-glow-cta {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(79, 172, 254, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 40px rgba(79, 172, 254, 0.8);
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% { transform: translateX(-100%) skewX(-15deg); }
    100% { transform: translateX(200%) skewX(-15deg); }
}

@keyframes bounce-in {
    0% { 
        opacity: 0;
        transform: scale(0.3) translateY(50px);
    }
    50% { 
        opacity: 1;
        transform: scale(1.1) translateY(-10px);
    }
    100% { 
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes gradient-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Classes de delay para animações */
.animation-delay-1000 { animation-delay: 1s; }
.animation-delay-2000 { animation-delay: 2s; }
.animation-delay-3000 { animation-delay: 3s; }
.animation-delay-4000 { animation-delay: 4s; }

/* Botão CTA principal melhorado */
.cta-primary {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 50%, #9d50bb 100%);
    background-size: 300% 300%;
    animation: gradient-flow 4s ease infinite;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(79, 172, 254, 0.4);
}

.cta-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;
}

.cta-primary:hover::before {
    left: 100%;
}

/* Cards de informação melhorados */
.info-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.05) 0%, rgba(157, 80, 187, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-card:hover::before {
    opacity: 1;
}

.info-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Ícones animados */
.animated-icon {
    transition: all 0.3s ease;
}

.animated-icon:hover {
    transform: scale(1.1) rotate(5deg);
    animation: pulse-glow-cta 2s infinite;
}

/* Estatísticas de confiança */
.trust-stat {
    animation: bounce-in 0.8s ease forwards;
    opacity: 0;
}

.trust-stat:nth-child(1) { animation-delay: 0.2s; }
.trust-stat:nth-child(2) { animation-delay: 0.4s; }
.trust-stat:nth-child(3) { animation-delay: 0.6s; }

/* Elementos flutuantes */
.floating-decoration {
    animation: float-gentle 6s ease-in-out infinite;
}

/* Efeito de vidro melhorado */
.glass-enhanced {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Gradientes animados */
.animated-gradient {
    background: linear-gradient(45deg, #4facfe, #00f2fe, #9d50bb, #4facfe);
    background-size: 400% 400%;
    animation: gradient-flow 8s ease infinite;
}

/* Botão secundário melhorado */
.cta-secondary {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(79, 172, 254, 0.1), transparent);
    transition: left 0.5s;
}

.cta-secondary:hover::before {
    left: 100%;
}

.cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 172, 254, 0.3);
}

/* Badge animado */
.animated-badge {
    animation: float-gentle 4s ease-in-out infinite;
}

/* Efeito de entrada */
.fade-in-scale {
    opacity: 0;
    transform: scale(0.8) translateY(30px);
    animation: fadeInScale 1s ease forwards;
}

@keyframes fadeInScale {
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Delays para animação em cascata */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }

/* Responsividade melhorada */
@media (max-width: 768px) {
    .cta-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .floating-decoration {
        display: none;
    }
    
    .info-card {
        margin-bottom: 1rem;
    }
}

/* Efeito hover para o container principal */
.cta-container {
    transition: all 0.3s ease;
}

.cta-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Animação de pulso para elementos importantes */
.pulse-important {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Cards de feature melhorados */
.feature-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.1) 0%, rgba(0, 242, 254, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(79, 172, 254, 0.3);
}

/* Elementos flutuantes */
.floating-element {
    animation: float 6s ease-in-out infinite;
}

/* Efeito de vidro (glassmorphism) */
.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Texto com gradiente animado */
.animated-gradient-text {
    background: linear-gradient(45deg, #4facfe, #00f2fe, #4facfe, #00f2fe);
    background-size: 400% 400%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 3s ease infinite;
}

/* Indicadores de status */
.status-indicator {
    position: relative;
}

.status-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Hover effects para botões secundários */
.secondary-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.secondary-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(79, 172, 254, 0.1), transparent);
    transition: left 0.5s;
}

.secondary-button:hover::before {
    left: 100%;
}

.secondary-button:hover {
    background: rgba(79, 172, 254, 0.1);
    border-color: #4facfe;
    transform: translateY(-1px);
}

/* Responsividade melhorada */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .floating-element {
        display: none;
    }
}

/* Animação de entrada */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Delays para animação em cascata */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
