/* Variáveis de Cores - Paleta Natural e Vibrante */
:root {
    --primary: #2d6a4f; /* Verde Floresta */
    --secondary: #ff9f1c; /* Laranja Calêndula */
    --accent: #d8f3dc; /* Verde Menta Claro */
    --text: #403d39;
    --white: #ffffff;
    --bg-green: #1b4332;
    --transition: all 0.3s ease;
}

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

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

h1, h2, h3 {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    color: var(--primary);
}

.text-white { color: var(--white); }

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

ul { list-style: none; }

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

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

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

.subtitle {
    display: block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 10px;
}

/* Botões */
.btn {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 159, 28, 0.3);
}

.btn:hover {
    background-color: #e68a00;
    transform: scale(1.05);
}

.btn-full { width: 100%; }

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

header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

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

.logo {
    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.9rem;
    font-weight: 600;
}

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

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

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

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

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

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

/* Garden Features */
.garden-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 35px;
}

.feature strong { display: block; color: var(--primary); font-size: 1.1rem; margin-bottom: 5px; }

/* Garden Cards */
.garden-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

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

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

.card-info { padding: 25px; text-align: center; }
.card-info h3 { margin-bottom: 10px; }
.card-info p { font-size: 0.9rem; color: #666; }

/* Formulário */
.garden-form input, 
.garden-form select, 
.garden-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fcfcfc;
    font-family: inherit;
    outline: none;
}

.garden-form input:focus { border-color: var(--primary); }

/* Footer */
footer {
    background: #081c15;
    color: #95d5b2;
    padding: 60px 0 20px;
}

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

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

.copyright { font-size: 0.8rem; }

/* Mobile Menu Icon */
.mobile-menu-icon { display: none; cursor: pointer; }
.mobile-menu-icon div {
    width: 25px;
    height: 3px;
    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: 70%;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform 0.5s ease;
    }

    .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; }
}
