@font-face {
    font-family: 'Cocogoose Classic';
    src: url('fonts/Cocogoose-Classic-Medium-trial.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cocogoose Classic';
    src: url('fonts/Cocogoose-Classic-ExtraBold-trial.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/*
 * Fonte fallback apenas para dígitos (0-9) e caracteres numéricos comuns.
 * O browser usa 'ArialNumerals' SOMENTE para os caracteres do unicode-range;
 * todo o resto continua usando Cocogoose Classic normalmente.
 */
@font-face {
    font-family: 'ArialNumerals';
    src: local('Arial'), local('Helvetica Neue'), local('sans-serif');
    unicode-range: U+0030-0039, U+002B, U+002D, U+002E, U+002C, U+0025, U+0028, U+0029, U+002F, U+003A;
    font-display: swap;
}

:root {
    --primary-color: #7CB342;
    --secondary-color: #AED581;
    --accent-color: #558B2F;
    /* cor padrão de texto em laranja Pantone 7583 C */
    --text-color: #CA612F;
    /* Fundo geral do site em verde Pantone 2298 C */
    --light-bg: #B7DA59;
    --white: #FFFFFF;
    --soft-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Adicionando transição suave global */
html {
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden;
    width: 100vw;
    max-width: 100vw;
}

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

body {
    font-family: 'ArialNumerals', 'Cocogoose Classic', sans-serif;
    line-height: 1.0;
    letter-spacing: -0.03em;
    color: var(--text-color);
    background-color: var(--light-bg);
    opacity: 0;
    transition: opacity 1s ease;
}

/* .numeros mantida por retrocompatibilidade — o unicode-range já resolve globalmente */
.numeros {
    font-family: 'ArialNumerals', Arial, Helvetica, sans-serif;
}

.emoji-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.emoji-bg__item {
    position: absolute;
    font-size: 2.2rem;
    opacity: 0.18;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
    will-change: transform;
    transition: transform 0.2s linear;
}

body.loaded {
    opacity: 1;
}

header {
    background-color: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    background-color: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    align-items: center;
    padding: 1rem 5%;
    transition: all 0.3s ease;
}

.mobile-nav-socials {
    display: none;
}

.logo {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo h1 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    opacity: 1;
    transform: translateX(0);
}

.logo h1 .genuino {
    color: #B7DA59; /* Pantone 2298 C */
}

.logo h1 .campo {
    color: #CA612F; /* Pantone 7583 C */
}

header.scrolled .logo h1 {
    opacity: 0;
    transform: translateX(-30px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    justify-content: flex-end;
    flex: 2;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

header.scrolled .nav-links a {
    color: var(--text-color);
}

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

.nav-link-black {
    color: #111 !important;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link-black:hover {
    color: var(--primary-color, #B7DA59) !important;
}

.nav-link-produtos {
    background: var(--primary-color);
    color: #fff !important;
    padding: 0.4rem 1.1rem;
    border-radius: 30px;
    font-weight: 600;
    transition: background 0.25s ease, transform 0.2s ease !important;
}

.nav-link-produtos:hover {
    background: var(--accent-color) !important;
    color: #fff !important;
    transform: translateY(-1px);
}

header.scrolled .nav-link-produtos {
    color: #fff !important;
}

#hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 2rem;
    animation: fadeIn 1.5s ease-in-out;
    position: relative;
    z-index: 1;
}

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

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

.hero-content h1 .genuino {
    color: #B7DA59;
}

.hero-content h1 .campo {
    color: #CA612F;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(.4,0,.2,1);
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section h2 {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

#produtos-destaque {
    background: linear-gradient(rgba(241, 248, 233, 0.9), rgba(241, 248, 233, 0.9)),
                url('images/fundohero2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 4rem 0;
    width: 100%;
    position: relative;
}

#produtos-destaque::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(241, 248, 233, 0.7);
    z-index: 1;
}

#produtos-destaque h2 {
    text-align: left;
    margin: 0;
    padding: 0 0 2rem 0;
    font-size: 2.8rem;
    color: var(--text-color);
    position: relative;
    left: 0;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding-left: 0;
    z-index: 2;
}

/* Mobile Menu */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-color);
    cursor: pointer;
    z-index: 1001;
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: block;
    }
    
    .nav-links {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--white);
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        padding: 6rem 2rem 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
        justify-content: flex-start;
        align-items: center;
        gap: 1.5rem;
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-nav-socials {
        display: flex;
        gap: 0.9rem;
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }

    .mobile-nav-socials a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: var(--primary-color);
        color: var(--white);
        font-size: 1.15rem;
        transition: transform 0.2s ease, background 0.2s ease;
    }

    .mobile-nav-socials a:hover {
        background: var(--accent-color);
        transform: translateY(-2px);
    }
}

/* Grid Mais Vendidos Original */
#produtos-destaque-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
    align-items: start;
    justify-content: center;
}

@media (max-width: 1100px) {
    #produtos-destaque-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    #produtos-destaque-grid {
        grid-template-columns: 1fr;
    }
}

/* Card do Slider de Todos os Produtos */
.slider-single-card-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 3rem auto;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    padding: 2rem;
}

.slider-single-card {
    width: 100%;
    overflow: hidden;
}

#produtos-slider-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease-in-out;
    width: max-content;
    margin: 0;
}

.produto-slide {
    width: 250px;
    flex-shrink: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.produto-slide img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.8rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.produto-slide h3 {
    font-size: 1.1rem;
    color: var(--text-color);
}

.slider-arrow {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 10;
    flex-shrink: 0;
    transition: background 0.3s ease, transform 0.2s ease;
}

.slider-arrow:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

.prev-arrow {
    margin-right: -25px;
}

.next-arrow {
    margin-left: -25px;
}

@media (max-width: 768px) {
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .prev-arrow { margin-right: -15px; }
    .next-arrow { margin-left: -15px; }
}

#produtos-destaque-grid .produto-card {
    width: 100%;
    max-width: 360px;
    min-width: 260px;
    padding: 1.2rem;
    background: #FFFFFF; /* card branco destacado */
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

#produtos-destaque-grid .produto-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

#produtos-destaque-grid .produto-card:hover {
    background: rgba(183, 218, 89, 0.98);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

#produtos-destaque-grid .produto-card h3 {
    color: var(--text-color); /* título em laranja */
    font-weight: 600;
}

#produtos-destaque-grid .produto-card p {
    color: #FFFFFF; /* descrição em branco */
    font-weight: 500;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    justify-items: center;
    align-items: start;
}

.produto-card {
    width: 100%;
    max-width: 300px;
    min-width: 250px;
    padding: 1.5rem;
    background: #FFFFFF; /* card branco destacado */
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.produto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.produto-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.produto-card h3 {
    font-size: 1.2rem;
    color: var(--text-color); /* título em laranja */
    margin-bottom: 0.5rem;
    width: 100%;
}

.produto-card p {
    font-size: 0.9rem;
    color: #FFFFFF; /* descrição em branco */
    line-height: 0.9;
    width: 100%;
}

@media (max-width: 1200px) {
    .produtos-grid {
        grid-template-columns: repeat(3, minmax(250px, 1fr));
    }
}

@media (max-width: 900px) {
    .produtos-grid {
        grid-template-columns: repeat(2, minmax(250px, 1fr));
    }
}

@media (max-width: 600px) {
    .produtos-grid {
        grid-template-columns: minmax(250px, 1fr);
    }
}

.processo-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.step {
    padding: 2rem;
    background: #FFFFFF; /* card branco destacado */
    border-radius: 10px;
    box-shadow: var(--soft-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.step i {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.step h3 {
    color: var(--text-color); /* título em laranja */
}

.step p {
    color: #444; /* descrição em preto suave */
}

.parceiros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.parceiro-card {
    padding: 2rem;
    background: #FFFFFF; /* card branco destacado */
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.parceiro-card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.parceiro-card img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.parceiro-card:hover img {
    transform: scale(1.1);
}

.parceiro-card h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin: 0;
    transition: color 0.3s ease;
}

.parceiro-card:hover h3 {
    color: var(--text-color);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.diferencial {
    padding: 2rem;
    background: #FFFFFF; /* card branco destacado */
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diferencial:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.diferencial i {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.diferencial h3 {
    font-size: 1.5rem;
    color: var(--text-color); /* título em laranja */
    margin-bottom: 1rem;
}

.diferencial p {
    font-size: 1rem;
    line-height: 0.9;
    color: #444; /* descrição em preto suave */
    margin: 0;
}

.diferencial.hidroponico,
.diferencial.higienizacao {
    max-width: 800px;
    width: 100%;
    padding: 3rem;
    background: #FFFFFF; /* card branco destacado */
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diferencial.hidroponico:hover,
.diferencial.higienizacao:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.diferencial.hidroponico i,
.diferencial.higienizacao i {
    font-size: 3.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.diferencial.hidroponico h3,
.diferencial.higienizacao h3 {
    font-size: 2.2rem;
    color: var(--text-color); /* título em laranja */
    margin-bottom: 1.5rem;
}

.diferencial.hidroponico p,
.diferencial.higienizacao p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444; /* descrição em preto suave */
    margin: 0;
}

.contato-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

#contato-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#contato-form input,
#contato-form textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: Arial, Helvetica, sans-serif;
}

#contato-form textarea {
    height: 150px;
    resize: vertical;
}

#contato-form button {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

#contato-form button:hover {
    background-color: var(--accent-color);
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-item i {
    font-size: 1.5rem;
    color: white;
}

footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--light-bg);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    /* nav-links css is now handled at the top */
    
    .contato-container {
        grid-template-columns: 1fr;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .diferenciais-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .diferencial {
        padding: 1.5rem;
    }
    
    .diferencial h3 {
        font-size: 1.3rem;
    }
    
    .diferencial p {
        font-size: 0.9rem;
    }
}

#galeria-fotos {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

#galeria-fotos img {
    border-radius: 8px;
    box-shadow: var(--soft-shadow);
    max-width: 200px;
    max-height: 200px;
    object-fit: cover;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    /* Remover sobrescrita de fundo e sombra */
}

.sobre-text {
    padding: 2.2rem 2.5rem;
    border-radius: 15px;
    max-width: 480px;
    min-height: 280px;  /* altura aumentada */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sobre-text h2 {
    font-size: 2.8rem; /* reforça o destaque do título dentro do card */
}

.sobre-text p {
    font-size: 1.15rem; /* descrição maior e mais legível */
    line-height: 1.0;
    color: #FFFFFF;
}

.horta-video {
    display: flex;
    justify-content: center ;
    align-items: center;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--soft-shadow);
}

.horta-video video {
    width: 100%;
    max-width: 1200px;
    margin: 0;
    align-items: center;
    height: auto;
    display: block;
}

.horta-overlay {
    position: relative;
    width: 100%; /* Preenche toda a largura da tela */
    height: 100vh; /* Ocupa a altura da tela inteira */
    margin: 0;
    background: url('images/hortasection.png') center center/cover no-repeat;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0; /* Fundo atrás do vídeo */
}

#horta.section > *:not(.horta-overlay) {
    position: relative;
    z-index: 2;
    
}

.sobre-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.32);
    z-index: 1;
    pointer-events: none;
}

#sobre.section > *:not(.sobre-overlay) {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .sobre-content {
        grid-template-columns: 1fr;
    }
}

#hero2 {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('images/fundohero2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

#hero2.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero2-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

#hero2.visible .hero2-content {
    opacity: 1;
    transform: translateY(0);
}

.hero2-content h2 {
    text-align: center;
    margin: 0;
    padding: 0 0 2rem 0;
    font-size: 2.8rem;
    color: var(--white);
    width: 100%;
}

#produtos-destaque-grid {
    margin-bottom: 50px;
    padding: 0;
    width: 100%;
    position: relative;
    z-index: 2;
}

#produtos-destaque-grid .produto-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    border: none;
}

#produtos-destaque-grid .produto-card:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

#produtos-destaque-grid .produto-card h3 {
    color: var(--primary-color);
    font-weight: 600;
}

#produtos-destaque-grid .produto-card p {
    color: #444;
    font-weight: 500;
}

#hero2 #produtos-destaque-grid .produto-card--hero-destaque {
    width: 450px;
    max-width: 450px;
    margin: 20px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border: none;
}

#hero2 #produtos-destaque-grid .produto-card--hero-destaque img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#hero2 #produtos-destaque-grid .produto-card--hero-destaque h3 {
    font-size: 2em;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

#hero2 #produtos-destaque-grid .produto-card--hero-destaque p {
    font-size: 1.3em;
    color: #444;
    font-weight: 500;
}

@media (max-width: 768px) {
    #hero2 {
        min-height: auto;
        padding: 4rem 1rem 3rem;
    }

    .hero2-content h2 {
        font-size: 2rem;
        padding-bottom: 1.5rem;
    }

    #produtos-destaque-grid {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    #hero2 #produtos-destaque-grid .produto-card--hero-destaque {
        width: 100%;
        max-width: 290px;
        margin: 8px auto;
        padding: 16px;
    }

    #hero2 #produtos-destaque-grid .produto-card--hero-destaque img {
        height: 210px;
        margin-bottom: 12px;
    }

    #hero2 #produtos-destaque-grid .produto-card--hero-destaque h3 {
        font-size: 1.35em;
        margin-bottom: 10px;
    }

    #hero2 #produtos-destaque-grid .produto-card--hero-destaque p {
        font-size: 1em;
    }
}

.produto-card--grid {
    width: 300px;
    margin: 20px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    background: var(--white);
}

.produto-card--grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.produto-card--grid h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.produto-card--grid p {
    font-size: 1.1em;
    color: #666;
}

.btn-ver-todos {
    display: inline-block;
    background: var(--primary-color, #B7DA59);
    color: rgb(255, 255, 255);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0.9rem 2.2rem;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    margin-top: 1rem;
}

.btn-ver-todos:hover {
    background: var(--accent-color, #CA612F);
    color: #B7DA59;
    transform: translateY(-2px) scale(1.04);
} 

.novidades-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    padding: 2rem 0;
    max-width: 900px;
    margin: 0 auto;
    justify-items: center;
    justify-content: center;
}

.novidade-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.13);
    padding: 2.8rem 2.2rem 2.2rem 2.2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s;
    max-width: 420px;
    width: 100%;
}


.novidade-card img {
    width: 100%;
    max-width: 340px;
    height: 240px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 1.4rem;
}

.novidade-card h3 {
    color: var(--text-color); /* título em laranja */
    font-size: 1.75rem;
    margin-bottom: 0.8rem;
}

.novidade-card p {
    color: #000000c9; /* descrição em branco */
    font-size: 1.15rem;
}

.novidade-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.16);
    transform: translateY(-4px) scale(1.03);
}

@media (max-width: 700px) {
    .novidades-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
} 

.titulo-clientes-categoria {
    font-size: 2.1rem;
    color: var(--text-color);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
} 

#sobre.section {
    background:
        url('images/horta.jpg') center center/cover no-repeat;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 70vh;
    width: 100vw;
    margin: 0 !important;
    padding: 0;
    border: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 100vw !important;
    position: relative;
}

/* Overlay com fundo ondulado com opacidade reduzida */
#sobre.section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/fundoondulado.png') left center/contain no-repeat;
    opacity: 0.9; /* opacidade reduzida para ficar mais suave */
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 768px) {
    #sobre.section::before {
        content: none;
    }
}

#sobre.section .sobre-content {
    margin: 0;
    width: 100%;
    max-width: 100%;
    background: transparent;
    box-shadow: none;
    padding: 4rem 2rem 4rem 4vw; /* mais espaço à esquerda */
    display: flex;
    justify-content: flex-start; /* empurra o texto para o canto esquerdo */
    align-items: center;
    position: relative;
    z-index: 2;
} 

#sobre.section h2 {
    color: #FFFFFF;
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-size: 5.0rem; /* maior que os demais títulos de seção */
} 

#horta.section h2 {
    color: #FFFFFF;
}

/* --- Página e expansão de cards (produtos.html) --- */
.produto-card-lista {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 1rem;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: box-shadow 0.3s, transform 0.3s, background 0.3s;
}

.produto-card-lista:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.13);
    transform: translateY(-2px) scale(1.03);
}

.produto-card-lista img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 1.2rem;
}

.produto-card-lista .produto-card-info h3 {
    margin: 0 0 0.3rem 0;
    color: var(--primary-color);
}

.produto-card-lista .produto-card-info p {
    margin: 0;
    color: #666;
}

.produto-card-lista .produto-card-expandido {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
    padding: 0 0;
}
.produto-card-lista.expandido {
    background: #f7ffe7;
    box-shadow: 0 8px 32px rgba(124,179,66,0.18);
    z-index: 2;
    transform: scale(1.02);
}
.produto-card-lista.expandido .produto-card-expandido {
    max-height: 500px;
    padding: 1rem 0 1.5rem 0;
}
.produto-card-lista .expandido-conteudo {
    animation: fadeInExpand 0.5s;
}

.produto-card-lista .expandido-conteudo img {
    width: 100%;
    max-width: 350px;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    margin: 1.2rem auto;
    display: block;
}

.produto-card-lista .expandido-conteudo h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-align: center;
}

.produto-card-lista .expandido-conteudo p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.2rem;
    text-align: center;
}

@keyframes fadeInExpand {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 600px) {
    .produto-card-lista .produto-card-expandido {
        max-height: 350px;
    }
}

/* --- Página de produtos (produtos.html) --- */
.produtos-page-container {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem;
}

.produtos-lista {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* --- Cabeçalhos de categoria --- */
.categoria-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 2.5rem 0 1.2rem 0;
    padding-bottom: 0.6rem;
    border-bottom: 3px solid var(--primary-color);
    position: relative;
}

.categoria-header::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--text-color);
    border-radius: 2px;
}

.categoria-emoji {
    font-size: 2rem;
    line-height: 1;
}

.categoria-titulo {
    font-size: 1.7rem;
    color: var(--text-color);
    font-weight: 700;
    margin: 0;
}

.categoria-produtos {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.produtos-page-header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

.produtos-page-header .logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.produtos-page-header .logo h1 {
    margin-left: 0.5rem;
}

.produtos-page-title {
    text-align: center;
    color: var(--primary-color);
    margin: 2rem 0 1.5rem 0;
}

@media (max-width: 900px) {
    .produtos-page-container {
        flex-direction: column;
        gap: 2rem;
    }
}

/* ═══════════════════════════════════════════════════════
   PÁGINA DE PRODUTOS — SISTEMA DE CATEGORIAS
═══════════════════════════════════════════════════════ */

/* Hero da página de produtos */
.categorias-hero {
    text-align: center;
    padding: 5rem 2rem 2.5rem;
    background: linear-gradient(135deg, #f6ffe8 0%, #e8f5c8 100%);
    border-bottom: 3px solid rgba(124,179,66,0.18);
}

.categorias-hero h1 {
    font-size: 3rem;
    color: var(--text-color);
    margin-bottom: 0.8rem;
}

.categorias-hero p {
    font-size: 1.15rem;
    color: #555;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Grade de cards de categoria */
.categorias-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1000px;
    margin: 3.5rem auto 4rem;
    padding: 0 2rem;
}

@media (max-width: 700px) {
    .categorias-grid { grid-template-columns: 1fr; }
    .categorias-hero h1 { font-size: 2rem; }
}

/* Card de categoria */
.categoria-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 30px rgba(0,0,0,0.10);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.28s cubic-bezier(.4,0,.2,1), box-shadow 0.28s;
    display: flex;
    flex-direction: column;
}

.categoria-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0,0,0,0.16);
}

.categoria-card-img-wrap {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.categoria-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.categoria-card:hover .categoria-card-img-wrap img {
    transform: scale(1.08);
}

.categoria-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.05) 60%);
    display: flex;
    align-items: flex-end;
    padding: 1rem 1.2rem;
}

.categoria-card-emoji {
    font-size: 2.8rem;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}

.categoria-card-body {
    padding: 1.5rem 1.8rem 1.8rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.categoria-card-body h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.categoria-card-body p {
    font-size: 0.98rem;
    color: #666;
    line-height: 1.5;
    flex: 1;
    margin-bottom: 1.2rem;
}

.btn-ver-categoria {
    align-self: flex-start;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 0.65rem 1.6rem;
    font-size: 1rem;
    font-family: 'Cocogoose Classic', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-ver-categoria span {
    transition: transform 0.2s;
}

.btn-ver-categoria:hover {
    background: var(--accent-color);
    transform: translateX(3px);
}

.btn-ver-categoria:hover span {
    transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════
   SEÇÃO INDIVIDUAL DE CATEGORIA
═══════════════════════════════════════════════════════ */

.categoria-section {
    animation: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(.4,0,.2,1);
}

.categoria-section.secao-visivel {
    opacity: 1;
    transform: translateY(0);
}

/* Hero banner da seção de categoria */
.categoria-section-hero {
    width: 100%;
    min-height: 340px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.categoria-section-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.62) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem 3rem;
    gap: 1rem;
}

.btn-voltar {
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    background: rgba(255,255,255,0.18);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.55);
    border-radius: 30px;
    padding: 0.55rem 1.3rem;
    font-family: 'Cocogoose Classic', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: background 0.2s, transform 0.2s, border-color 0.2s;
    letter-spacing: 0.01em;
}

.btn-voltar:hover {
    background: rgba(255,255,255,0.32);
    border-color: #fff;
    transform: translateX(-4px);
}

.categoria-section-hero-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-emoji {
    font-size: 3rem;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.categoria-section-hero-text h2 {
    font-size: 3rem;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.categoria-section-hero-text p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin: 0;
    max-width: 520px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.3);
    line-height: 1.5;
}

/* Grade de produtos dentro da categoria */
.categoria-produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 4rem;
    padding: 0 2.5rem;
}

@media (max-width: 600px) {
    .categoria-produtos-grid { grid-template-columns: 1fr; padding: 0 1rem; }
    .categoria-section-hero-overlay { padding: 2rem 1.5rem; }
    .categoria-section-hero-text h2 { font-size: 2rem; }
    .btn-voltar { top: 1rem; left: 1rem; font-size: 0.85rem; }
}

/* Card de produto dentro da categoria */
.cat-produto-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.09);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.cat-produto-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.15);
}

.cat-produto-img-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.cat-produto-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.cat-produto-card:hover .cat-produto-img-wrap img {
    transform: scale(1.06);
}

.cat-produto-info {
    padding: 1.3rem 1.4rem 1.5rem;
}

.cat-produto-info h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 0.4rem;
}

.cat-produto-info p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}