@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fade-in-up 1s ease-out;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #00693e;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #004d2b;
}

/* Efeitos de glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Animações de hover */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Gradientes personalizados */
.gradient-rolex {
    background: linear-gradient(135deg, #00693e, #008752);
}

.gradient-silver {
    background: linear-gradient(135deg, #c0c0c0, #e5e5e5);
}

/* Efeito parallax sutil */
.parallax {
    transform: translateZ(0);
    will-change: transform;
}

/* Loading animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Textura sutil */
.texture-pattern {
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.05) 35px, rgba(255,255,255,.05) 70px);
}

/* Media queries para mobile */
@media (max-width: 768px) {
    .text-responsive {
        font-size: 0.9rem;
    }
}

/* Animações de entrada */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

/* Efeito de typing */
.typing {
    overflow: hidden;
    border-right: 3px solid #00693e;
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #00693e }
}

/* Botões com efeito ripple */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ripple:active:before {
    width: 300px;
    height: 300px;
}

/* Cards com efeito tilt */
.card-tilt {
    transform-style: preserve-3d;
    transition: transform 0.3s;
}

.card-tilt:hover {
    transform: rotateY(5deg) rotateX(-5deg);
}

/* Animação de pulso */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 105, 62, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 105, 62, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 105, 62, 0);
    }
}