:root {
    --primary: #169b45;      /* Verde bandeira */
    --secondary: #0e7031;    /* Verde folha escuro */
    --tertiary: #43E6B0;     /* Verde claro */
    --quaternary: #B6FFCE;   /* Verde pastel */
    --background: #f6fcf8;   /* Fundo esverdeado suave */
    --white: #fff;
    --text: #1a2d1a;
    --gray: #e5e5e5;
    --menu-bg: #f6fcf8;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: var(--background);
    color: var(--text);
}

header {
    background: linear-gradient(120deg, #043b17 60%, #0e7031 100%);
    color: var(--white);
    padding: 20px 0 10px 0; /* Menos espaço acima e abaixo */
    text-align: center;
    position: relative;
    box-shadow: 0 2px 16px rgba(22,155,69,0.10);
}

.header-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0;
}

.logo-area {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(120deg, #043b17 60%, #043b17 100%);
    border-radius: 12px;
    padding: 10px; /* Menos espaço ao redor da logo */
}

.logo-area img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    background: none;
    box-shadow: none;
    display: block;
}

header h1 {
    font-family: 'Nunito', 'Segoe UI', Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    letter-spacing: 1px;
}

header p {
    font-size: 1.3rem;
    font-weight: 400;
    margin: 0;
    opacity: 0.95;
}

nav {
    background: var(--menu-bg);
    box-shadow: 0 2px 8px rgba(22,155,69,0.07);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    padding: 0 0 0 0;
    min-height: 60px;
    position: relative;
    z-index: 2;
}

nav a {
    padding: 12px 28px;
    border-radius: 0 0 18px 18px;
    background: none;
    color: #169b45;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: background 0.3s, color 0.3s, transform 0.2s;
    border-bottom: 4px solid transparent;
    position: relative;
}

nav a.active, nav a:hover {
    background: var(--white);
    color: var(--secondary);
    border-bottom: 4px solid var(--primary);
    transform: translateY(2px);
    box-shadow: 0 4px 16px rgba(22,155,69,0.07);
}

.container {
    width: 96%;
    max-width: 1100px;
    margin: 32px auto 0 auto;
    padding: 0 0 32px 0;
}

.tab-content {
    display: none;
    padding: 40px 36px;
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(22,155,69,0.10), 0 2px 8px rgba(22,155,69,0.07);
    margin-bottom: 36px;
    animation: fadeIn 0.5s;
    border-left: 8px solid var(--primary);
}

.tab-content.active {
    display: block;
    border-left: 8px solid var(--secondary);
}

.product-card {
    display: flex;
    align-items: center;
    gap: 32px;
    background: linear-gradient(120deg, #fff, #f6fcf8 80%);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(22,155,69,0.10);
    padding: 28px 24px;
    margin-bottom: 24px;
    border-left: 6px solid var(--primary);
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.product-card:hover {
    box-shadow: 0 8px 32px rgba(22,155,69,0.13);
    transform: translateY(-4px) scale(1.02);
    border-left: 6px solid var(--secondary);
}

.product-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(67,230,176,0.10);
    background: #eee;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.product-desc {
    color: #444;
    font-size: 1.08rem;
    margin-bottom: 10px;
}

@media (max-width: 900px) {
    .container { max-width: 98vw; }
    .tab-content { padding: 24px 8px; }
    .product-card { flex-direction: column; align-items: flex-start; gap: 16px; }
    .product-img { width: 100%; height: 180px; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(24px);}
    to { opacity: 1; transform: translateY(0);}
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(22,155,69,0.10);
    padding: 32px 24px;
    margin-bottom: 24px;
    max-width: 400px;
}

.contact-card h2 {
    color: var(--primary);
    margin-bottom: 10px;
}

.contact-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    margin-right: 12px;
    margin-bottom: 8px;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(22,155,69,0.07);
    color: #fff;
}

.contact-btn.whatsapp { background: #169b45; }
.contact-btn.email { background: #0e7031; }
.contact-btn.phone { background: #169b45; }

.contact-btn:hover {
    filter: brightness(1.1);
    box-shadow: 0 4px 16px rgba(22,155,69,0.13);
    color: #fff;
}

.contact-header-flex {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}

.contact-logo-area img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
    box-shadow: 0 2px 8px rgba(22,155,69,0.13);
    border: 3px solid #fff;
    display: block;
}

.about-company {
    background: var(--quaternary);
    color: var(--secondary);
    border-radius: 8px;
    padding: 14px 18px;
    margin-bottom: 18px;
    font-size: 1.08rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(22,155,69,0.07);
}

.about-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(22,155,69,0.10);
    padding: 32px 28px;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-card h2 {
    color: var(--primary);
    margin-bottom: 16px;
}

.about-card p {
    color: #333;
    font-size: 1.13rem;
    line-height: 1.7;
}

/* Responsivo para telas menores */
@media (max-width: 700px) {
    .header-flex {
        flex-direction: column;
        gap: 16px;
    }
    .logo-area img {
        width: 90px;
        height: 90px;
    }
}
.product-imgs {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    justify-content: center;
}
.product-imgs img {
    width: 200px;   /* antes era 100px */
    height: 200px;  /* antes era 100px */
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(67,230,176,0.10);
    background: #eee;
}
.contact-actions-flex {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    margin-top: 16px;
}
.contact-numbers {
    background: #f6f6f6;
    border-radius: 10px;
    padding: 16px 20px;
    font-size: 1.4rem;
    color: #222;
    min-width: 180px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
@media (max-width: 700px) {
    header {
        padding: 8px 0 4px 0;
    }
    .header-flex {
        flex-direction: column;
        gap: 6px;
        padding: 0;
    }
    .logo-area {
        padding: 0;
        border-radius: 0;
        background: none;
    }
    .logo-area img {
        width: 70px;
        height: 70px;
        margin-bottom: 4px;
    }
    header h1 {
        font-size: 1.2rem;
        margin-bottom: 2px;
        margin-top: 0;
    }
    header p {
        font-size: 1rem;
        margin-bottom: 0;
    }
    nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0;
        padding: 0;
        min-height: unset;
        background: #fff;
        box-shadow: 0 2px 8px rgba(22,155,69,0.07);
        border-radius: 0 0 12px 12px;
    }
    nav a {
        flex: 1 1 50%;
        font-size: 1rem;
        padding: 12px 0;
        border-radius: 0;
        border-bottom: 1px solid #e5e5e5;
        border-right: 1px solid #e5e5e5;
        width: 50vw;
        text-align: center;
        margin: 0;
        box-shadow: none;
    }
    nav a:nth-child(2n) {
        border-right: none;
    }
    nav a:last-child {
        border-bottom: none;
    }
    .container {
        width: 100vw;
        max-width: 100vw;
        margin: 0;
        padding: 0 0 10px 0;
    }
    .tab-content {
        padding: 10px 2px;
        border-radius: 6px;
        margin-bottom: 10px;
        box-shadow: none;
        border-left: 4px solid var(--primary);
    }
    .product-card {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 10px 2px;
        border-radius: 8px;
        box-shadow: none;
    }
    .product-imgs {
        flex-direction: row;
        gap: 4px;
        justify-content: flex-start;
    }
    .product-imgs img,
    .product-img {
        width: 70px;
        height: 70px;
        border-radius: 6px;
    }
    .about-card,
    .contact-card {
        padding: 10px 4px;
        border-radius: 8px;
        max-width: 99vw;
        box-shadow: none;
    }
    .contact-actions-flex {
        flex-direction: column;
        gap: 6px;
    }
    .contact-numbers {
        min-width: unset;
        padding: 8px 4px;
        font-size: 0.93rem;
    }
    .contact-btn {
        width: 100%;
        margin-right: 0;
        margin-bottom: 8px;
        font-size: 1rem;
        padding: 10px 0;
        border-radius: 6px;
    }
}
.contact-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 32px;
    margin-bottom: 32px;
}

.contact-image-area img {
    width: 260px;    /* ajuste o tamanho conforme desejar */
    height: auto;
    display: block;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(22,155,69,0.10);
    background: #fff;
}
.contact-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 32px;
    margin-bottom: 32px;
}
.contact-image-area img {
    width: 260px;
    height: auto;
    display: block;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(22,155,69,0.10);
    background: #fff;
}
@media (max-width: 700px) {
    .contact-row {
        flex-direction: column;
        align-items: stretch;
    }
    .contact-image-area img {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
}
.contact-image-area {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
}
.contact-image-area img {
    width: 120px;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(22,155,69,0.10);
    background: #fff;
}
@media (max-width: 700px) {
    .contact-image-area {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    .contact-image-area img {
        width: 90vw;
        max-width: 320px;
    }
}
.contact-image-area {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}
.contact-image-area img {
    width: 300px;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(22,155,69,0.10);
    background: #fff;
}
.site-footer {
    width: 100%;
    background: #0d4d2c;
    color: #fff;
    padding: 24px 0 16px 0;
    text-align: center;
    margin-top: 48px;
    font-size: 1rem;
    box-shadow: 0 -2px 12px rgba(22,155,69,0.07);
}
.footer-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    justify-content: center;
}
@media (max-width: 700px) {
    .site-footer {
        font-size: 0.95rem;
        padding: 18px 0 10px 0;
    }
}
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1 0 auto;
}

/* O rodapé já está estilizado, não precisa mudar */
