* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #eef2f4;
    color: #333;
    line-height: 1.6;
}

/* Containers */

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.2rem 0;
}

.logo-area {
    display: inline-flex;
    align-items: center;
}

.logo {
    height: 168px; /* 4x o tamanho anterior */
    width: auto;
    display: block;
}

/* Faixa de contato logo abaixo do cabeçalho */

.top-contact {
    background: #2f8b41;
    color: #ffffff;
    font-size: 0.9rem;
    padding: 0.4rem 0;
}

.top-contact-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
}

.top-contact strong {
    font-weight: 600;
}

/* Navigation */

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.main-nav a {
    display: inline-block;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    color: #206030;
    border: 1px solid transparent;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.main-nav a:hover {
    background: #2f8b41;
    color: #fff;
    border-color: #2f8b41;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

/* Hero */

.hero {
    padding: 3.5rem 0 3rem;
    background: radial-gradient(circle at top left, #b7e4c7 0, #eef2f4 55%);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.1rem;
    margin-top: 0;
    margin-bottom: 1rem;
    color: #205030;
}

.hero-text p {
    margin-bottom: 0.75rem;
}

.hero-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
    display: block;
    margin: 0 auto;
}

/* General sections */

.content-section {
    padding: 3rem 0 2.5rem;
    background: transparent;
}

.content-section.alt {
    background: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 1.7rem;
    margin: 0 0 0.75rem;
    color: #205030;
}

.section-intro {
    max-width: 780px;
    margin: 0 auto 2rem;
    text-align: center;
    font-size: 0.98rem;
    color: #555;
}

/* Content grids */

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(0, 1.15fr);
    gap: 1.75rem;
    align-items: center;
    margin-bottom: 2rem;
}

.content-grid .text h3 {
    margin-top: 0;
    margin-bottom: 0.4rem;
    font-size: 1.12rem;
    color: #2c6c3c;
}

.content-grid .text p {
    margin: 0;
    font-size: 0.96rem;
}

.content-grid .image img {
    width: 100%;
    max-width: 320px;
    border-radius: 16px;
    display: block;
    margin: 0 auto;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

/* Buttons */

.btn-primary {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    background: #2f8b41;
    color: #fff;
    font-weight: 600;
    font-size: 0.96rem;
    border: none;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}

.btn-primary:hover {
    background: #256c33;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
    transform: translateY(-1px);
}

/* Gallery */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.gallery-grid img {
    width: 100%;
    display: block;
    border-radius: 14px;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.2);
}

/* Contact */

.contact-grid {
    align-items: flex-start;
}

.contact-form {
    background: #f6faf7;
    padding: 1.5rem;
    border-radius: 18px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 0.9rem;
}

.form-group label {
    display: block;
    font-size: 0.86rem;
    margin-bottom: 0.25rem;
    color: #2c6c3c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.5rem 0.6rem;
    border-radius: 10px;
    border: 1px solid #c5d6c9;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #2f8b41;
    box-shadow: 0 0 0 2px rgba(47, 139, 65, 0.15);
}

/* Footer */

.site-footer {
    background: #1c3f25;
    color: #d8e8dc;
    padding: 1rem 0;
    font-size: 0.85rem;
}

.footer-container {
    text-align: center;
}

/* Botão flutuante WhatsApp */

.whatsapp-float {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 1500;
    background: #25d366;
    color: #ffffff;
    text-decoration: none;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    background: #1ebe5a;
}

/* Responsive */

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .hero-image {
        order: -1;
        margin-bottom: 1rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero {
        padding: 2.2rem 0 2rem;
    }

    .hero-text h1 {
        font-size: 1.6rem;
    }

    .content-section {
        padding: 2.2rem 0 2rem;
    }

    .logo {
        height: 120px;
    }
}
