:root {
    --primary: #0a5c36; /* Verde Agro Uberaba */
    --secondary: #1e88e5; /* Azul Céu Triângulo */
    --accent: #ffb300; /* Sol/Ouro Zebu */
    --bg-light: #f8fafc;
    --text-dark: #1e293b;
    --glass: rgba(255, 255, 255, 0.8);
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
}

.navbar {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 5%;
}

.hero {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    padding: 4rem 3rem;
    color: white;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.badge {
    background: var(--accent);
    color: black;
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

article.blog-post {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

h1 { font-size: 2.5rem; margin-top: 0.5rem; }

.content {
    font-size: 1.1rem;
    color: #475569;
}

.footer {
    text-align: center;
    padding: 4rem;
    background: #1e293b;
    color: #94a3b8;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-in {
    animation: fadeIn 0.8s ease-out forwards;
}
