body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
}

/* Barra Tricolor Superior - Valores fixos para evitar erro no editor */
.tricolor-border {
    height: 6px;
    background: linear-gradient(90deg, 
        #006847 0%, #006847 33%, 
        #002868 33%, #002868 66%, 
        #C5281C 66%, #C5281C 100%);
}

.gradient-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.gradient-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(45deg, 
        rgba(0, 104, 71, 0.3) 0%, 
        rgba(0, 40, 104, 0.3) 50%, 
        rgba(197, 40, 28, 0.3) 100%);
    z-index: 1;
}

.card-hover:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}