 @import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@700&family=Roboto:wght@400;700&display=swap');
:root {
    --bege: #FDFBF4;          
    --marrom-claro: #A35642;     
    --marrom-escuro: #7D3B2B;   
    --verde-escuro: #244A0C;  
    --cinza-suave: #F4F4F2;    
    --texto-escuro: #2B2B2A;   
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;  
    scroll-padding-top: 80px; 
}

body {
   display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    padding-top: 80px;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);  
    
    position: fixed;
    top: 0;
    left: 0;
    width: 100%; 
    background-color: white;
    z-index: 1000;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--verde-escuro);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.abas { 
    display: flex;
    justify-content: center;
    align-items: center;
    
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    
    gap: 4px;
}

.abas a {
    font-size: 1rem; 
    color: var(--texto-escuro);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 20px;  
    transition: all 0.3s ease;
    border-radius: 25px;
}

.abas a.active {
    color: var(--verde-escuro);
    background-color: rgba(36, 74, 12, 0.08);
    font-weight: 600;
}

.abas a:hover {
    color: white;
    background-color: var(--marrom-claro);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);  
}

.abas a.active:hover {
    color: white;
    background-color: var(--marrom-claro);
}

 

.container-principal {
    display: flex;
    background-color: var(--bege);
    width: 100%;
    min-height: 90vh; 
    margin: 0;
    padding: 0;
     
}

.coluna-imagem {
    flex: 1;
    min-height: 450px; 
    overflow: hidden;
    position: relative;
}

.coluna-imagem::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.35), transparent);
    z-index: 1;
}

.coluna-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 60% 10%;
    transform: scale(1.1);  
    filter: brightness(1.1) saturate(1.2);
}

.frase-foto-mobile {
    display: none; 
}
 
 
.coluna-texto {
    flex: 1;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: flex-start;
}

h1 {
    font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
    color: var(--verde-escuro);
    font-size: 2.5rem;  
    margin-bottom: 20px; 
}

.coluna-texto h1 {
    font-size: 3.2rem;
    margin-bottom: 12px;
    line-height: 1.15;
}

.coluna-texto h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--marrom-claro);
    margin-top: 12px;
    border-radius: 2px;
}

.coluna-texto p {
    font-size: 1.1rem;
    line-height: 1.8; 
    color: black;
    max-width: 48ch;
    margin-bottom: 30px;
}

.coluna-texto strong {
    color: var(--verde-escuro);
    font-weight: 700;
}

#sobre {
    align-items: center;
    text-align: center;
}

#sobre p {
    max-width: 100%;
}

#sobre h1::after {
    margin: 12px auto 0;
}

 
.btn {
    background-color: var(--marrom-claro);
    color: white;
    padding: 16px 40px;
    border-radius: 12px;  
    font-weight: 700;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease; 
    font-size: 1rem;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 14px rgba(163, 86, 66, 0.25);
}

.btn:hover {
    background-color: var(--marrom-escuro);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(125, 59, 43, 0.3);
}



footer {
    background-color: var(--verde-escuro);
    padding: 20px 0px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    
    margin: 0 auto;
    padding: 0 40px;
    max-width: 1200px;
    
}

.footer-content h3 {
    font-family: 'Merriweather', serif;
    color: white;
    margin-bottom: 15px;
}

.footer-content p {
    color: white;
}

.footer-content a {
    color: white;
    text-decoration: none;
    font-style: italic;
}

.footer-content a:hover {
    text-decoration: underline;
    color: rgba(255, 255, 255, 0.77);
}



/*página produto*/

/* HERO */
.hero-produtos {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.banner-produto {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
    filter: saturate(1.06) contrast(1.06);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.15), rgba(36, 74, 12, 0.35));
    text-align: center;
    padding: 20px;
}

.hero-titulo {
    font-family: 'Merriweather', serif;
    font-size: 2.8rem;
    color: white;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    margin-bottom: 10px;
}

.hero-subtitulo {
    font-family: 'Roboto', sans-serif;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: 1px;
}

/* SEÇÃO PRODUTOS */
#sobre-produtos {
    background: var(--bege);
    padding: 60px 20px;
    align-items: center;
    text-align: center;
}

#sobre-produtos .descricao-secao {
    max-width: 600px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--texto-escuro);
    font-style: italic;
    font-weight: 300;
    margin-bottom: 10px;
}

/* FILTROS */
.filtros {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 30px 0 40px;
    flex-wrap: wrap;
}

.filtro-btn {
    background: transparent;
    border: 1px solid rgba(36, 74, 12, 0.2);
    color: var(--texto-escuro);
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filtro-btn:hover {
    border-color: var(--verde-escuro);
    color: var(--verde-escuro);
    background: rgba(36, 74, 12, 0.04);
}

.filtro-btn.active {
    background: var(--verde-escuro);
    border-color: var(--verde-escuro);
    color: white;
}

/* CARDS */
.produtos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 0 60px 20px;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
}

.produto-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.produto-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(36, 74, 12, 0.12);
    border-color: rgba(36, 74, 12, 0.15);
}

.produto-logo {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.06));
}

.produto-card:hover .produto-logo {
    transform: scale(1.06);
}

.produto-card__body {
    padding: 20px 16px 22px;
}

.produto-card h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.15rem;
    color: var(--verde-escuro);
    margin-bottom: 4px;
}

.produto-card .tipo {
    color: #555;
    font-size: 1rem;
    letter-spacing: 0.3px;
    margin-bottom: 10px;
}

.produto-card__desc {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.5;
    margin-bottom: 14px;
}

.produto-card__tags {
    display: none;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
}

.produto-card__tags span {
    background: var(--bege);
    color: var(--verde-escuro);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 0.3px;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none; 
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    position: relative;
    overflow: hidden;
    animation: modalFadeIn 0.3s ease-out;
}

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

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

.modal-body {
    padding: 25px;
}

.embalagens-container {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.embalagens-container label {
    display: block;
    width: 100%;
    font-size: 0.9rem;
    color: var(--marrom-escuro);
    margin-bottom: 5px;
}

.embalagem-tag {
    background: var(--marrom-claro);
    border: 1px solid var(--marrom-claro);
    color: var(--bege);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: bold;
}

.close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    border-radius: 50%;
    border: none;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 10;
}
 

.linha-disclaimer {
    width: 100%;
    max-width: 1100px;
    margin: 60px auto; 
    text-align: center;
    position: relative;
}

.linha-disclaimer::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--verde-escuro), transparent);
    z-index: 1;
}

.linha-disclaimer p {
    position: relative;
    display: inline-block;
    background-color: var(--bege);
    padding: 0 20px;
    z-index: 2;
    color: var(--verde-escuro);
    font-size: 0.85rem;
    font-style: italic;
    letter-spacing: 0.5px;
}

/*página contato*/

.container-contato {
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1 0 auto;
    background: var(--bege);
}

.contato-card {
    background: white;
    border-radius: 24px;
    padding: 50px 48px 48px;
    max-width: 560px;
    width: 100%;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.contato-card h1 {
    font-size: 2.8rem;
    margin-bottom: 6px;
}

.contato-card h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--marrom-claro);
    margin-top: 10px;
    border-radius: 2px;
}

.contato-sub {
    color: var(--texto-escuro);
    font-size: 0.95rem;
    margin: 16px 0 28px;
    line-height: 1.5;
}

.input-group {
    display: flex;
    gap: 16px;
    width: 100%;
}

.input-group > div {
    flex: 1;
}

label {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--texto-escuro);
    margin-bottom: 6px;
    letter-spacing: 0.2px;
}

form {
    width: 100%;
}

form input,
form textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 20px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    outline: none;
    background-color: #fff;
    transition: all 0.25s ease;
    color: var(--texto-escuro);
}

form input::placeholder,
form textarea::placeholder {
    color: #aaa;
}

form input:focus,
form textarea:focus {
    border-color: var(--verde-escuro);
    box-shadow: 0 0 0 3px rgba(36, 74, 12, 0.1);
    background-color: #fff;
}

form button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--marrom-claro);
    color: white;
    padding: 16px;
    width: 100%;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
    transition: all 0.25s ease;
    margin-top: 8px;
    box-shadow: 0 4px 14px rgba(163, 86, 66, 0.25);
}

form button:hover {
    background-color: var(--marrom-escuro);
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(125, 59, 43, 0.3);
}

form button:active {
    transform: scale(0.98);
}

form button img {
    height: 20px;
    filter: brightness(0) invert(1);
}

.contato-confianca {
    text-align: center;
    font-size: 0.82rem;
    color: #999;
    margin-top: 16px;
    font-style: italic;
}

h3 {
    font-family: 'Roboto', sans-serif;
    color: var(--verde-escuro);
    font-size: 1.5rem;
    margin-bottom: 20px;
}
@media (max-width: 1024px) {
    .hero-produtos {
        height: 250px;
    }

    .hero-titulo {
        font-size: 2.2rem;
    }

    .produtos {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 40px 20px;
        gap: 30px;
    }
}

/* responsividade */
@media (max-width: 768px) {

    .coluna-imagem {
        position: relative;
        height: 60vh; 
        width: 100%;
        display: block;
        overflow: hidden;
    }

    .coluna-imagem img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .frase-foto-mobile {
        display: block;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        color: white;
        text-align: center;
        z-index: 10;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    }

    .frase-foto-mobile:nth-of-type(1) {
        bottom: 80px; 
        font-family: 'Merriweather', serif;
        font-size: 1.8rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .frase-foto-mobile:nth-of-type(2) {
        bottom: 50px; 
        font-family: 'Roboto', sans-serif;
        font-size: 1.1rem;
        font-style: italic;
        opacity: 0.9;
    }
 
    .container-principal {
        display: block;  
        height: auto; 
       
    }


    h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    .coluna-texto p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .coluna-texto {
        padding: 40px 24px;
        margin-top: -5px;
        text-align: center;
        align-items: center;
    }

    .coluna-texto h1 {
        font-size: 2.2rem;
    }

    .coluna-texto h1::after {
        margin: 10px auto 0;
    }

    .coluna-texto p {
        max-width: 100%;
    }

    .navbar {
        padding: 14px 20px;
    }

    .menu-toggle {
        display: flex;
    }

    .abas {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: white;
        padding: 16px 20px;
        gap: 6px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        transform: none;
    }

    .abas.active {
        display: flex;
    }

    .abas a {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }

    .hero-produtos {
        height: 200px;
    }

    .hero-titulo {
        font-size: 1.8rem;
    }

    .hero-subtitulo {
        font-size: 1rem;
    }

    #sobre-produtos {
        padding: 40px 16px;
    }

    #sobre-produtos .descricao-secao {
        font-size: 0.95rem;
    }

    .filtros {
        display: none;
    }

    .filtro-btn {
        padding: 6px 16px;
        font-size: 0.85rem;
    }

    .produtos {
        grid-template-columns: 1fr;
        padding: 0 16px 20px;
        gap: 20px;
    }

    .container-contato {
        padding: 60px 16px;
    }

    .contato-card {
        padding: 32px 24px;
    }

    .contato-card h1 {
        font-size: 2.2rem;
    }

    .input-group {
        flex-direction: column;
        gap: 0;
    }

    form input,
    form textarea {
        margin-bottom: 16px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        padding: 0 20px;

        flex-shrink: 0;
    }
}