/* Estilos adicionais para customizações */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.02em;
}

section {
    scroll-margin-top: 100px;
}

.cta-button {
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounceIn {
    0% { transform: scale(0.5); opacity: 0; }
    50% { transform: scale(1.03); }
    70% { transform: scale(0.97); }
    100% { transform: scale(1); opacity: 1; }
}

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

.animate-fade-in {
    animation: fadeIn 1.2s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1.2s ease-out 0.3s both;
}

.animate-bounce-in {
    animation: bounceIn 1s ease-out 0.5s both;
}

.animate-bounce-slow {
    animation: bounce 2s ease-in-out infinite;
}

/* Scroll animations */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsividade extra */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    h2 {
        font-size: 2.25rem;
        line-height: 1.2;
    }
    h3 {
        font-size: 1.875rem;
        line-height: 1.3;
    }
    .grid {
        grid-template-columns: 1fr;
    }
}