/* Variáveis de Cores - Paleta Orgânica */
:root {
    --primary: #2d5a27; /* Verde Floresta */
    --secondary: #8b5e3c; /* Marrom Terroso */
    --accent: #f4f1de; /* Creme Suave */
    --text: #333333;
    --bg-nature: #f1f8e9; /* Verde muito claro */
    --white: #ffffff;
    --transition: all 0.3s ease;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Lora', serif;
    font-weight: 700;
    color: #1b3a1a;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section { padding: 80px 0; }
.bg-nature { background-color: var(--bg-nature); }
.text-center { text-align: center; }
.mb-50 { margin-bottom: 50px; }

.subtitle {
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
}

/* Botões */
.btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 14px 35px;
    border-radius: 5px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #1b3a1a;
    transform: translateY(-2px);
}

.btn-full { width: 100%; }

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 12px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.logo span { color: var(--secondary); }

.nav-links { display: flex; }
.nav-links li { margin-left: 35px; }
.nav-links a {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
}

.nav-links a:hover { color: var(--primary); }

/* Hero */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Grids */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Estilo de Imagem */
.img-eco {
    border-radius: 15px;
    box-shadow: 15px 15px 0px var(--bg-nature);
}

.list-eco li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.list-eco li::before {
    content: '🌿';
    position: absolute;
    left: 0;
}

/* Eco Cards */
.eco-card {
    background: var(--white);
    padding: 0 0 25px 0;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.eco-card:hover {
    transform: translateY(-8px);
}

.eco-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 20px;
}

.eco-card h3 { margin-bottom: 10px; padding: 0 15px; }
.eco-card p { padding: 0 20px; font-size: 0.9rem; }

/* Formulário */
.eco-form input, 
.eco-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.contact-box p { margin-bottom: 15px; }

/* Footer */
footer {
    background: #1b3a1a;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #2d5a27;
    padding-bottom: 30px;
    margin-bottom: 20px;
}

.footer-links a { margin-left: 20px; font-size: 0.9rem; }

.copyright { font-size: 0.8rem; color: #88a087; }

/* Mobile Menu Icon */
.mobile-menu-icon { display: none; cursor: pointer; }
.mobile-menu-icon div {
    width: 25px;
    height: 2px;
    background-color: var(--primary);
    margin: 6px;
    transition: var(--transition);
}

/* Responsividade */
@media (max-width: 992px) {
    .hero-content h1 { font-size: 2.8rem; }
    .grid-2, .grid-3 { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        width: 60%;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform 0.5s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }

    .nav-links li { margin: 20px 0; }
    .mobile-menu-icon { display: block; }
    .nav-active { transform: translateX(0); }
    .footer-grid { flex-direction: column; text-align: center; }
    .footer-links { margin-top: 20px; }
}
