/* HEADER */
header {
    position: relative;
    width: 100%;
    height: 600px;
    background-color: #2A5C3B;
    overflow: hidden;
}

/* LOGO FIXO */
.logo {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 150px;
    z-index: 1000;
}

.logo img {
    width: 100%;
    transition: transform 0.3s;
}

.logo img:hover {
    transform: scale(1.1);
}

/* CARROSSEL */
.carousel {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* IMAGENS DO CARROSSEL */
.slides img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    position: absolute;
    animation: slide 18s infinite;
}

/* SOBREPOSIÇÃO ESCURA PARA MELHORAR LEITURA DO TEXTO */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Agora menos escuro para manter a elegância */
    z-index: 1;
}

/* TEXTO NO HEADER */
.header-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2; /* Para ficar sobre a overlay */
}

/* TÍTULO PRINCIPAL */
.header-text h1 {
    font-size: 3.5rem;
    font-weight: bold;
    font-family: 'Playfair Display', serif; /* Fonte elegante */
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* LINHA ABAIXO DO TÍTULO */
.header-line {
    width: 100px;
    height: 2px;
    background-color: #fff;
    margin: 10px auto;
}

/* PUV (Proposta Única de Valor) */
.puv {
    font-size: 1.3rem;
    font-style: italic;
    font-family: 'Playfair Display', serif;
    color: #fff;
}
/* CARROSSEL */
.carousel {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* IMAGENS DO CARROSSEL COM TRANSIÇÃO SUAVE */
.slides img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    position: absolute;
    opacity: 0; /* Começa invisível */
    transition: opacity 1.5s ease-in-out; /* Suavização na troca de imagens */
}

/* Garante que a primeira imagem apareça ao carregar a página */
.slides img:first-child {
    opacity: 1;
}
/* HEADER */
header {
    position: relative;
    width: 100%;
    height: 600px;
    background-color: #2A5C3B;
    overflow: hidden;
}

/* SOBREPOSIÇÃO ESCURA PARA MELHORAR CONTRASTE */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Deixa a imagem levemente escura */
    z-index: 1;
}

/* TEXTO NO HEADER */
.header-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 3; /* Garante que o texto fique acima da overlay */
}

/* TÍTULO */
.header-text h1 {
    font-size: 3.5rem;
    font-weight: bold;
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* LINHA ABAIXO DO TÍTULO */
.header-line {
    width: 100px;
    height: 2px;
    background-color: #fff;
    margin: 10px auto;
}

/* PUV */
.puv {
    font-size: 1.3rem;
    font-style: italic;
    font-family: 'Playfair Display', serif;
    color: #fff;
}

/* BOTÕES */
.header-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-whatsapp, .btn-ifood {
    text-decoration: none;
    padding: 12px 20px;
    font-size: 1rem;
    border-radius: 5px;
    transition: 0.3s;
    color: white;
    font-weight: bold;
}

/* ESTILIZAÇÃO DOS BOTÕES */
.btn-whatsapp {
    background-color: #25D366;
}

.btn-ifood {
    background-color: red;
}

.btn-whatsapp:hover, .btn-ifood:hover {
    transform: scale(1.05);
}

/* GARANTINDO QUE OS BOTÕES FIQUEM VISÍVEIS */
.header-buttons a {
    position: relative;
    z-index: 4; /* Garante que fique sobre a overlay */
}





/* SEÇÃO SOBRE NÓS */
#sobre-nos {
    background-color: #fff;
    padding: 80px 20px;
    text-align: center;
}

#sobre-nos h2 {
    font-size: 2.5rem;
    color: #2A5C3B;
    font-family: 'Playfair Display', serif;
    margin-bottom: 40px;
}

/* GRID COM 3 COLUNAS */
.sobre-nos-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* ESTILO DOS QUADRINHOS */
.sobre-item {
    width: 300px;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.sobre-item:hover {
    transform: scale(1.05);
}

/* IMAGENS CIRCULARES */
.sobre-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #2A5C3B;
    transition: transform 0.3s ease-in-out;
}

.sobre-item:hover .sobre-img {
    transform: scale(1.1);
}

/* TÍTULOS */
.sobre-item h3 {
    font-size: 1.5rem;
    color: #2A5C3B;
    margin-top: 15px;
    font-family: 'Playfair Display', serif;
}

/* PARÁGRAFOS */
.sobre-item p {
    font-size: 1rem;
    color: #333;
    margin-top: 10px;
}


/* Importação das novas fontes */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Poppins:wght@300;400;600&display=swap');

/* Aplicando as novas fontes */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #fff;
}

/* Títulos elegantes */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #2A5C3B;
}

/* Texto principal */
p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
}
/* TÍTULO DO HEADER - FORÇANDO A COR BRANCA */
.header-text h1 {
    font-size: 3.5rem;
    font-weight: bold;
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff !important; /* Força a cor branca */
}






/* SEÇÃO "POR QUE COMPRAR?" */
#porque-comprar {
    background-color: #f8f8f8;
    padding: 80px 20px;
    text-align: center;
}

#porque-comprar h2 {
    font-size: 2.5rem;
    color: #2A5C3B;
    font-family: 'Playfair Display', serif;
    margin-bottom: 40px;
}

/* GRID COM 3 EM CIMA E 3 EMBAIXO */
.grid-beneficios {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

/* ESTILO DOS QUADRINHOS */
.beneficio {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.beneficio:hover {
    transform: scale(1.05);
}

/* ÍCONES */
.beneficio i {
    font-size: 40px;
    color: #2A5C3B;
    margin-bottom: 15px;
}

/* TÍTULOS */
.beneficio h3 {
    font-size: 1.5rem;
    color: #2A5C3B;
    font-family: 'Poppins', sans-serif;
}

/* TEXTO */
.beneficio p {
    font-size: 1rem;
    color: #333;
    margin-top: 10px;
}

/* RESPONSIVIDADE - MOBILE */
@media (max-width: 768px) {
    .grid-beneficios {
        grid-template-columns: 1fr;
    }
}



/* SEÇÃO GALERIA */
#galeria {
    background-color: #fff;
    padding: 80px 20px;
    text-align: center;
}

#galeria h2 {
    font-size: 2.5rem;
    color: #2A5C3B;
    font-family: 'Playfair Display', serif;
    margin-bottom: 40px;
}

/* GRID DA GALERIA COM 3x3 */
.grid-galeria {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

/* ESTILO DAS IMAGENS */
.galeria-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.galeria-img:hover {
    transform: scale(1.05);
}

/* MODAL (TELA CHEIA) */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* IMAGEM EXPANDIDA */
.modal-conteudo {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
}

/* BOTÃO DE FECHAR */
.fechar {
    position: absolute;
    top: 15px;
    right: 25px;
    color: white;
    font-size: 35px;
    cursor: pointer;
}

/* SETAS DE NAVEGAÇÃO */
.setas {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.anterior, .proximo {
    color: white;
    font-size: 40px;
    cursor: pointer;
    padding: 10px;
}

.anterior {
    position: absolute;
    left: 10px;
}

.proximo {
    position: absolute;
    right: 10px;
}

/* RESPONSIVIDADE - MOBILE */
@media (max-width: 768px) {
    .grid-galeria {
        grid-template-columns: 1fr;
    }
}




/* SEÇÃO DEPOIMENTOS */
#depoimentos {
    background-color: #f8f8f8;
    padding: 80px 20px;
    text-align: center;
}

#depoimentos h2 {
    font-size: 2.5rem;
    color: #2A5C3B;
    font-family: 'Playfair Display', serif;
    margin-bottom: 40px;
}

/* GRID COM 3 EM CIMA E 3 EMBAIXO */
.grid-depoimentos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

/* IMAGENS DOS DEPOIMENTOS */
.depoimento-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.depoimento-img:hover {
    transform: scale(1.05);
}

/* RESPONSIVIDADE - MOBILE */
@media (max-width: 768px) {
    .grid-depoimentos {
        grid-template-columns: 1fr;
    }
}





/* SEÇÃO FAQ */
#faq {
    background-color: #fff;
    padding: 80px 20px;
    text-align: center;
}

#faq h2 {
    font-size: 2.5rem;
    color: #2A5C3B;
    font-family: 'Playfair Display', serif;
    margin-bottom: 40px;
}

/* CONTAINER DO FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ITENS DO FAQ */
.faq-item {
    background: #f8f8f8;
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.faq-item:hover {
    background: #eaeaea;
}

/* PERGUNTAS */
.faq-question {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2A5C3B;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ÍCONE DE EXPANSÃO */
.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2A5C3B;
    transition: transform 0.3s ease-in-out;
}

/* RESPOSTAS (INICIALMENTE ESCONDIDAS) */
.faq-answer {
    font-size: 1rem;
    color: #333;
    margin-top: 10px;
    display: none;
    padding-top: 10px;
    border-top: 1px solid #ddd;
}

/* RESPONSIVIDADE - MOBILE */
@media (max-width: 768px) {
    .faq-container {
        width: 100%;
        padding: 0 10px;
    }
}




/* SEÇÃO DE PREÇOS */
#precos {
    background-color: #fff;
    padding: 80px 20px;
    text-align: center;
}

#precos h2 {
    font-size: 2.5rem;
    color: #2A5C3B;
    font-family: 'Playfair Display', serif;
    margin-bottom: 40px;
}

/* LISTA DE PREÇOS */
.preco-lista {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

/* ITEM DE PREÇO */
.preco-item {
    background: #f8f8f8;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

/* NOME DO PRODUTO */
.preco-item h3 {
    font-size: 1.2rem;
    color: #2A5C3B;
    margin-bottom: 5px;
}

/* PREÇO */
.preco-item p {
    font-size: 1rem;
    color: #333;
}

/* BOTÃO DE COMPRA */
.btn-whatsapp {
    display: inline-block;
    background-color: #25D366;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 10px;
    display: block;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.btn-whatsapp i {
    margin-right: 8px;
}

.btn-whatsapp:hover {
    transform: scale(1.05);
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .preco-lista {
        grid-template-columns: 1fr;
    }
}






/* SEÇÃO COMPRA NO IFOOD */
#ifood {
    background-color: #f8f8f8;
    padding: 80px 20px;
    text-align: center;
}

#ifood h2 {
    font-size: 2.5rem;
    color: #2A5C3B;
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
}

/* TEXTO INFORMATIVO */
#ifood p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 20px;
}

/* BOTÃO DO IFOOD */
.botao-ifood {
    margin-top: 20px;
}

.btn-ifood {
    display: inline-block;
    background-color: red;
    color: white;
    font-size: 1.3rem;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    transition: transform 0.3s ease-in-out;
}

.btn-ifood:hover {
    transform: scale(1.1);
}





/* SEÇÃO LOCALIZAÇÃO */
#localizacao {
    background-color: #fff;
    padding: 80px 20px;
    text-align: center;
}

#localizacao h2 {
    font-size: 2.5rem;
    color: #2A5C3B;
    font-family: 'Playfair Display', serif;
    margin-bottom: 40px;
}

/* GRID PARA MAPA E INFORMAÇÕES */
.localizacao-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

/* MAPA */
.mapa iframe {
    width: 100%;
    height: 350px;
    border-radius: 10px;
}

/* INFORMAÇÕES DA LOJA */
.info h3 {
    font-size: 1.8rem;
    color: #2A5C3B;
    margin-bottom: 10px;
}

.info p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
}

.info a {
    text-decoration: none;
    color: #2A5C3B;
    font-weight: bold;
}

.info h4 {
    font-size: 1.4rem;
    margin-top: 20px;
    color: #2A5C3B;
}

/* HORÁRIOS */
.horarios {
    list-style: none;
    padding: 0;
}

.horarios li {
    font-size: 1rem;
    color: #333;
    margin-bottom: 5px;
}

/* REDES SOCIAIS */
.redes-sociais {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.redes-sociais a {
    font-size: 1.8rem;
    color: #2A5C3B;
    transition: transform 0.3s ease-in-out;
}

.redes-sociais a:hover {
    transform: scale(1.2);
    color: #1f4b2e;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .localizacao-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .redes-sociais {
        justify-content: center;
    }
}



/* FOOTER */
footer {
    background-color: #8B0000; /* Vermelho escuro para combinar com o estilo da marca */
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 1rem;
}

footer a {
    color: #FFA500; /* Laranja/dourado para destaque */
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}







/* SEÇÃO COMPRA NO ATACADO */
#atacado {
    background-color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

#atacado h2 {
    font-size: 2.5rem;
    color: #2A5C3B;
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
}

#atacado p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 20px;
}

/* BOTÃO DE COMPRA NO ATACADO */
.botao-atacado {
    margin-top: 20px;
}

.btn-atacado {
    display: inline-block;
    background-color: #2A5C3B;
    color: white;
    font-size: 1.3rem;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    transition: transform 0.3s ease-in-out;
}

.btn-atacado:hover {
    transform: scale(1.1);
    background-color: #244d32;
}

#atacado {
    background-color: #f8f8f8; /* fundo suave */
    padding: 80px 20px;
    text-align: center;
}

