/* Base styles - Tailwind handles most of this now */
html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    padding-top: 80px;
}

/* Custom animations that complement Tailwind */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== SHARED COMPONENTS ==================== */

/* Logo gradient (usado em header e footer) */
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    display: inline-block;
}

/* Gradient underline effect (reutilizável) */
.gradient-underline::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #D4AF37 100%);
}