/* Cores Wincel */
:root {
    --wincel-blue: #0078D7;
    --wincel-orange: #FF8C00;
    --wincel-dark: #003D6B;
}

/* Animações personalizadas */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fade-in 1s ease-out;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Transições suaves */
* {
    transition: all 0.3s ease;
}

/* Estilo para inputs em foco */
input:focus, textarea:focus {
    box-shadow: 0 0 0 3px rgba(0, 120, 215, 0.3);
    border-color: var(--wincel-blue);
}

.logo-header {
    width: 100%;
    max-width: 150px;
}

.logo-footer {
    width: 100%;
    max-width: 150px;
    /* Transformar a logo em branco usando filtros CSS */
    filter: brightness(0) invert(1);
}

/* Loader personalizado */
.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--wincel-orange);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hover effects */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Parallax effect */
.bg-fixed {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, var(--wincel-blue), var(--wincel-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}