/* ============================================
   ANIMAÇÕES SUTIS E ELEGANTES
   ============================================ */

/* Animação suave ao scroll - sem exagero */
@keyframes subtleFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes subtleSlideLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes subtleSlideRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   CLASSES DE SCROLL ANIMATION
   ============================================ */

/* Animação ao scroll - versão sutil */
.scroll-animate {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.scroll-animate.in-view {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-left {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.scroll-animate-left.in-view {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-right {
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.scroll-animate-right.in-view {
    opacity: 1;
    transform: translateX(0);
}

/* Escala sutil - sem exagero */
.scroll-animate-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.scroll-animate-scale.in-view {
    opacity: 1;
    transform: scale(1);
}

/* ============================================
   HOVER EFFECTS SUAVE
   ============================================ */

/* Cards com efeito suave de shadow apenas */
.card {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1) !important;
    transform: translateY(-2px) !important;
}

/* Botões com efeito suave */
.btn {
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

/* ============================================
   IMAGENS COM EFEITO SUAVE
   ============================================ */

img {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* ============================================
   SEÇÕES COM TRANSIÇÃO SUAVE
   ============================================ */

.section {
    transition: all 0.4s ease;
}

/* ============================================
   RESPONSIVIDADE - MENOS ANIMAÇÕES EM MOBILE
   ============================================ */

@media (max-width: 768px) {
    .scroll-animate,
    .scroll-animate-left,
    .scroll-animate-right,
    .scroll-animate-scale {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .scroll-animate.in-view,
    .scroll-animate-left.in-view,
    .scroll-animate-right.in-view,
    .scroll-animate-scale.in-view {
        opacity: 1;
        transform: none;
    }

    .card:hover {
        transform: translateY(0) !important;
    }

    .btn:hover {
        transform: none;
    }
}
