:root {
    --verde-agrinho: #2e8b57;
    --amarelo-agrinho: #ffd700;
    --marrom-terra: #8b4513;
    --azul-ceu: #87ceeb;
    --cinza-claro: #f9f9f9;
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

header {
    background: linear-gradient(135deg, var(--verde-agrinho), var(--amarelo-agrinho));
    color: white;
    text-align: center;
    padding: 2rem 0;
    position: relative;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.logo {
    height: 80px;
    margin: 0 20px;
}

nav {
    background-color: var(--verde-agrinho);
    padding: 1rem 0;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav li {
    margin: 0 15px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

nav a:hover {
    background-color: var(--amarelo-agrinho);
    color: #333;
}

.hero {
    background-image: url('campo-cidade-hero.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.btn-hero {
    background-color: var(--amarelo-agrinho);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 15px;
    cursor: pointer;
    transition: transform 0.3s;
}

.btn-hero:hover {
    transform: scale(1.05);
}

.btn-primary {
    background-color: var(--verde-agrinho);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #1f6b3d;
}

section {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.bg-light {
    background-color: var(--cinza-claro);
}

.destaque {
    background-color: var(--amarelo-agrinho);
    text-align: center;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 10px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 2rem 0;
}

.contact-grid {
    grid-template-columns: 2fr 1fr;
}

.card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 1rem;
}

.activities-list {
    list-style-type: none;
    padding: 0;
}

.activities-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.activities-list li::before {
    content: "•";
    color: var(--verde-agrinho);
    font-size: 1.5em;
    position: absolute;
    left: 0;
    top: 2px;
}

.contact-form {
    padding-right: 2rem;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.form-group textarea {
    resize: vertical;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    font-weight: bold;
    text-decoration: none;
}

.fb { background-color: #3b5998; }
.tw { background-color: #1da1f2; }
.ig { background-color: #e1306c; }
.yt { background-color: #ff0000; }

footer {
    background-color: var(--verde-agrinho);
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav li {
        margin: 5px 0;
    }
    
    .hero {
        height: 300px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding-right: 0;
        margin-bottom: 2rem;
    }
}
