/* RESET BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #ffffff;
    color: #333333;
}

/* --- NAVBAR --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    color: #1A932E; /* Verde FarmOnEdge */
    font-size: 1.5rem;
    font-weight: 800;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #555555;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #1A932E;
}

.btn-participe {
    background-color: #1A932E;
    color: white;
    text-decoration: none;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-participe:hover {
    background-color: #127523;
}

/* --- HERO SECTION --- */
.hero {
    /* Usei um placeholder de plantação, mas você pode trocar pela imagem exata do seu projeto */
    background-image: linear-gradient(rgba(14, 56, 28, 0.75), rgba(14, 56, 28, 0.85)), url('https://images.unsplash.com/photo-1628186105307-e54b679af2cc?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 5%;
}

.hero-content h1 {
    color: white;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.6;
    color: #f1f1f1;
}

.stats-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    color: #FFD100; /* Amarelo da imagem */
    font-size: 2.5rem;
    font-weight: 800;
}

.stat-text {
    font-size: 1rem;
    font-weight: 400;
}

/* --- SEÇÃO DE NOTÍCIAS / BLOG --- */
.news-section {
    padding: 5rem 5%;
    background-color: #F4F7F6;
}

.section-title {
    text-align: center;
    color: #1A932E;
    font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-post {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 3rem;
    border-top: 5px solid #1A932E;
}

.post-category {
    display: inline-block;
    background-color: #E8F5E9;
    color: #1A932E;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.post-header h3 {
    font-size: 2.2rem;
    color: #222;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.post-date {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.post-cover {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 2rem;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.post-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

/* GRID DE IMAGENS PARA A POSTAGEM */
.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.image-grid figure {
    margin: 0;
}

.image-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.image-grid img:hover {
    transform: scale(1.02);
}

.image-grid figcaption {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.5rem;
    font-style: italic;
}

.post-footer-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 2rem auto 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.post-actions {
    margin-top: 3.5rem;
    text-align: center;
    border-top: 1px solid #EEEEEE;
    padding-top: 2.5rem;
}

.btn-outline {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 2px solid #1A932E;
    color: #1A932E;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #1A932E;
    color: white;
}

/* Responsividade Básica */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Em um projeto real, aqui entraria um menu hamburguer */
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
    }
    
    .image-grid img {
        height: auto;
    }
}