<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Animações e efeitos visuais para o site Finc Consórcio */

/* Animação de fade in */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Animação de slide up */
@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Animação de slide in da esquerda */
@keyframes slideInLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Animação de slide in da direita */
@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Animação de zoom in */
@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Animação de brilho */
@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(232, 182, 42, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(232, 182, 42, 0.6);
    }
    100% {
        box-shadow: 0 0 5px rgba(232, 182, 42, 0.3);
    }
}

/* Animação de pulso */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Animação de rotação */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Animação de ondas */
@keyframes wave {
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: 1000px;
    }
}

/* Animação de flutuação */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Animação de digitação */
@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink-caret {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: var(--accent-color);
    }
}

/* Efeito de onda */
.wave-effect {
    position: absolute;
    bottom: -2px; /* Sobrepor ligeiramente para evitar lacunas */
    left: 0;
    width: 100%;
    height: 150px;
    background: url('data:image/svg+xml;utf8,&lt;svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320" preserveAspectRatio="none"&gt;&lt;path fill="white" fill-opacity="1" d="M0,160L80,181.3C160,203,320,245,480,240C640,235,800,181,960,165.3C1120,149,1280,171,1360,181.3L1440,192L1440,320L1360,320C1280,320,1120,320,960,320C800,320,640,320,480,320C320,320,160,320,80,320L0,320Z"&gt;&lt;/path&gt;&lt;/svg&gt;');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: 2;
}

/* Animação de onda para telas maiores */
@media (min-width: 1200px) {
    .wave-effect {
        background-size: 100% 100%;
        height: 180px;
    }
}

/* Ajustes para telas menores */
@media (max-width: 768px) {
    .wave-effect {
        height: 100px;
    }
}

/* Classes de animação para uso com JavaScript */
.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.animate-slide-up {
    animation: slideUp 1s ease forwards;
}

.animate-slide-left {
    animation: slideInLeft 1s ease forwards;
}

.animate-slide-right {
    animation: slideInRight 1s ease forwards;
}

.animate-zoom-in {
    animation: zoomIn 1s ease forwards;
}

.animate-glow {
    animation: glow 2s infinite;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-rotate {
    animation: rotate 10s linear infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Efeito de digitação */
.typing-text {
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid transparent;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

/* Efeito de parallax */
.parallax {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: -1;
    transition: transform 0.1s ease-out;
}

/* Efeito de glassmorphism */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Efeito de brilho em hover */
.hover-glow {
    transition: all 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(232, 182, 42, 0.6);
}

/* Efeito de partículas */
.particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Efeito de gradiente animado */
.gradient-animate {
    background: linear-gradient(270deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    background-size: 600% 600%;
    animation: gradientAnimation 8s ease infinite;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
</pre></body></html>