/*
    ESTILOS GERAIS DO SITE (DESKTOP)
*/
html {
    scroll-behavior: smooth;
    
}

body {
    /* Novo degradê de fundo */
    background: linear-gradient(to bottom, #e0f2f1, #ffffff);
    font-family: 'Montserrat', Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #1A2F2D;
}

h1, h2 {
    font-family: 'Cabin Sketch', cursive;
    color: #1A2F2D;
    text-align: center;
    font-size: 55px;
}

.banner-slogan {
    font-family: 'Cabin Sketch', cursive;
    font-size: 25px;
    font-weight: 400;
}

/*
    ESTILOS DO CABEÇALHO (HEADER) - DESKTOP
*/
header {
    background: linear-gradient(to right, #03EC48, #3BFBFD );
    padding: 1em 5%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-height: 70px;
    margin-top: -55px;
    /* Configuração principal do Flexbox */
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    
    position: relative;
    border-bottom: none;
}

/* FAIXA DE GRADIENTE CUSTOMIZADA ABAIXO DO HEADER */
header::after {
    content: ''; 
    position: absolute;
    bottom: 0; 
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #3BFBFB,#041655); 
    z-index: 5; 
}

/* Container da Logo - Lado esquerdo */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    flex: 0 0 auto; /* A logo nunca encolhe */
    margin-right: 20px;
    z-index: 10;
}

.site-logo {
    max-width: 250px; 
    height: auto;
    margin-right: 10px;
}

/*
    ESTILOS DO MENU DE NAVEGAÇÃO (DESKTOP)
*/
.menu-nav {
    background-color: transparent; 
    padding: 0;
    
    flex: 1 1 0%; /* Permite crescer e encolher */
    min-width: 0;
    
    text-align: right;
    position: relative;
    height: auto;
    
    display: flex; 
    justify-content: flex-end;
    margin: 0; 
    z-index: 5;
}

.menu-links {
    list-style-type: none;
    font-size: 22px;
    margin: 0;
    padding: 0;
    
    display: flex;
    justify-content: flex-end; 
    align-items: center;
    
    flex-wrap: nowrap;
    flex: 1 1 0%; 
    min-width: 0;
}

.menu-links li {
    margin: 0 10px;
    white-space: nowrap; 
    flex-shrink: 1; 
    min-width: 0;
}

.menu-links a {
    color: #1A2F2D;
    text-decoration: none;
    font-weight: 600;
    padding: 5px 10px;
    transition: background-color 0.3s ease, color 0.3s ease; 
    border-radius: 4px;
    margin-left: 10px; 
    display: inline-block; 
}

.menu-links a:hover {
    background-color:#fbc97a;
    color:#041655;
}

.whatsapp-link {
    background-color: #25d366;
    color: white !important;
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    flex-shrink: 0; 
    margin-left: 10px; 
}

.whatsapp-link:hover {
    background-color: #128C7E; 
    transform: scale(1.05); 
}

.whatsapp-link i {
    margin-right: 5px;
}

/* Esconde o botão do hambúrguer no desktop */
.menu-hamburguer {
    display: none;
}

/*
    BANNER PRINCIPAL
*/
.main-banner {
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('img/banner.jpg');
    height: 400px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
    color: white; 
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); 
    padding: 0 20px; 
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.main-banner h1 {
    font-size: 3.5rem; 
    margin-bottom: 5px;
    color: rgb(255, 255, 255); 
}

.main-banner p {
    font-size: 1.5rem; 
    font-weight: 600;
}


/*
    ESTILOS DAS SEÇÕES PRINCIPAIS E SCROLL REVEAL 
*/
main {
    padding: 20px 5%;
}

.fale-conosco .contato-info .contato-link {
    font-family: 'Cabin Sketch', cursive; 
    color: #388e3c;
    font-size: 20px; 
    text-decoration: none;
    transition: color 0.3s;
}

.fale-conosco .contato-info .contato-link:hover {
    color: #1A2F2D;
}


.quem-somos, .onde-encontrar, .fale-conosco, .nossos-valores, .receita-destaque {
    background-color: white;
    padding: 40px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.quem-somos.is-visible, 
.onde-encontrar.is-visible,
.nossos-valores.is-visible, 
.receita-destaque.is-visible,
.fale-conosco.is-visible,
.produtos.is-visible {
    opacity: 1;
    transform: translateY(0);
}


.quem-somos-content, .onde-encontrar-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.quem-somos-text, .onde-encontrar-text {
    flex: 2;
    opacity: 0;
    transform: translateX(-100px); 
    transition: opacity 1s ease-out, transform 1s ease-out; 
}

.quem-somos-image, .onde-encontrar-image {
    flex: 1;
    text-align: center;
    opacity: 0;
    transform: translateX(100px); 
    transition: opacity 1s ease-out 0.3s, transform 1s ease-out 0.3s; 
}

.quem-somos.is-visible .quem-somos-text,
.quem-somos.is-visible .quem-somos-image,
.onde-encontrar.is-visible .onde-encontrar-text,
.onde-encontrar.is-visible .onde-encontrar-image { 
    opacity: 1; 
    transform: translateX(0);
}

.quem-somos-image img, .onde-encontrar-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: block;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.destaques-casa, .destaques-casa-clone {
    background-color: white; 
    padding: 40px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.destaques-casa h2, .destaques-casa-clone h2 {
    color: #1A2F2D;
    margin-bottom: 30px;
}

.destaques-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 30px;
}

.destaque-item, .destaque-item-clone {
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: all 0.3s ease-in-out, opacity 1s ease-out, transform 1s ease-out; 
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.destaque-item:hover, .destaque-item-clone:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.destaque-item.item-esquerda, .destaque-item-clone.item-esquerda {
    transform: translateX(-100px); 
}

.destaque-item.item-direita, .destaque-item-clone.item-direita {
    transform: translateX(100px); 
}

.destaque-item.is-visible, .destaque-item-clone.is-visible {
    opacity: 1;
    transform: translateX(0); 
}

.destaque-item-clone {
    height: 400px;
    background-image: url('img/limao.jpg'); 
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat; 
    background-color: #f5f5f5; 
    position: relative;
}
.destaque-item {
    height: 300px;
    background-image: url('img/fundo.jpg'); 
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f5f5f5; 
    position: relative;
}

.destaque-item img, .destaque-item-clone img {
    width: 100%; 
    height: 100%; 
    object-fit: contain; 
    padding: 10px 0; 
    box-sizing: border-box; 
    transition: transform 0.3s ease-in-out;
}

.destaque-item-clone img {
    width: 90%; 
    height: 80%; 
    padding: 0; 
}

.destaque-item:hover img, .destaque-item-clone:hover img {
    transform: scale(1.05);
}

.produtos {
    background-color:#1A2F2D;
    padding: 30px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.produtos h2 {
    color: #ffffff; 
    margin-bottom: 20px;
}

#produtos-container {
    overflow-x: auto;
    width: 100%;
}

#produtos-container table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
    text-align: left;
    margin: 0 auto;
    font-size: 1.1em;
}

#produtos-container thead th {
    background-color: #388e3c;
    color: white;
    padding: 15px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px 5px 0 0;
}

#produtos-container tbody tr {
    color: white;
    transition: transform 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: default;
}

#produtos-container tbody tr:hover {
    transform: translateY(-2px);
}

#produtos-container td {
    padding: 15px;
    border: none;
    background-color: #264441;
    transition: background-color 0.3s;
}

#produtos-container tbody tr:hover td {
    background-color: #305853;
}
#produtos-container tbody tr:hover td:first-child {
    border-radius: 8px 0 0 8px; 
}
#produtos-container tbody tr:hover td:last-child {
    border-radius: 0 8px 8px 0; 
}

#produtos-container td.preco {
    font-weight: bold;
    color: #ffeb3b;
    font-size: 1.4em;
    font-family: 'Cabin Sketch', cursive;
}

.produtos .preco a.link-whatsapp-produto {
    color: #ffeb3b; 
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.produtos .preco a.link-whatsapp-produto:hover {
    color: #25d366; 
    text-decoration: underline;
}

.produtos .preco a.link-whatsapp-produto i {
    font-size: 0.9em;
    color: #25d366; 
}


.onde-encontrar-text iframe {
    width: 100%;
    max-width: 100%;
    border-radius: 8px;
    margin-top: 15px;
}

/*
    ESTILOS DO RODAPÉ (FOOTER) - DESKTOP
*/
footer {
    background-color: #1A2F2D;
    color: #e0f2f1;
    padding: 40px 5% 20px;
    border-top: 5px solid #3BFBFD;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

.footer-content {
    display: flex; 
    flex-wrap: wrap; 
    justify-content: space-between; 
    max-width: 1200px;
    margin: 0 auto; 
    text-align: left;
}

.footer-section {
    width: 250px; 
    margin-bottom: 30px;
    padding: 0 10px;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 18px;
    color: #3BFBFD;
    text-transform: uppercase;
    border-bottom: 2px solid #507A76;
    padding-bottom: 5px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #A9C9C7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #FFA94C;
}

.footer-info {
    width: 250px;
}
.footer-info p {
    margin: 5px 0;
    line-height: 1.5;
}

.social-icons a {
    display: inline-block;
    margin-right: 15px;
    color: #e0f2f1;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s;
}
.social-icons a:hover {
    color: #25d366;
}

.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    padding-top: 20px;
    border-top: 1px solid #507A76;
    text-align: center;
    font-size: 12px;
    color: #A9C9C7;
    line-height: 1.6;
}
.footer-bottom a {
    color: #3BFBFD;
    text-decoration: none;
}
.footer-bottom a:hover {
    text-decoration: underline;
}

/* =============================== */
/* BOTÃO FLUTUANTE DE WHATSAPP */
/* =============================== */
.whatsapp-flutuante {
    position: fixed; /* Isso faz ele flutuar! */
    bottom: 25px;    /* 25px do fundo */
    right: 25px;     /* 25px da direita */
    /* ... e todos os outros estilos que você definiu para ele */
    z-index: 1000;


    
    /* Estilo e Aparência */
    background-color: #25D366; /* Cor oficial do WhatsApp */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%; /* Faz um círculo perfeito */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px; /* Tamanho do ícone */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 1000; /* Garante que fique acima de outros elementos */
    text-decoration: none; /* Remove sublinhado */
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.whatsapp-flutuante:hover {
    background-color: #128C7E; /* Tom mais escuro ao passar o mouse */
    transform: scale(1.05); /* Efeito de leve aumento ao passar o mouse */
}

/* Ajuste para telas menores */
@media (max-width: 600px) {
    .whatsapp-flutuante {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 15px; /* Menos margem no celular */
        right: 15px; /* Menos margem no celular */
    }
}

    /* Reduz a distância dos cantos em telas menores */
    .botoes-flutuantes {
        bottom: 15px !important;
        right: 15px !important;
    }

.legal-page-main {
    padding-top: 120px;
    min-height: 100vh;
}

.legal-page {
    padding: 80px 5%;
    background-color: #f9f9f9;
    line-height: 1.6;
}

.container-legal {
    max-width: 900px;
    margin: 0 auto;
}

.legal-page .section-title {
    font-size: 2.5em;
    color: #4CAF50;
    margin-bottom: 20px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
    text-align: left;
}

.legal-page h3 {
    font-size: 1.5em;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-page h4 {
    font-size: 1.25em;
    color: #555;
    margin-top: 20px;
    margin-bottom: 10px;
    border-left: 4px solid #4CAF50;
    padding-left: 10px;
}

.legal-page p, .legal-page ul {
    font-size: 1em;
    color: #666;
    margin-bottom: 15px;
}

.legal-page ul {
    padding-left: 20px;
    list-style-type: disc;
}

.legal-page li {
    margin-bottom: 8px;
}

.legal-page strong {
    font-weight: 700;
    color: #333;
}

.data-atualizacao {
    font-style: italic;
    color: #999;
    margin-bottom: 40px;
}

.receita-destaque {
    padding: 60px 40px;
    background-color: #f7fff7;
}

.receita-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.receita-texto {
    flex: 1;
}

.receita-imagem {
    flex: 1;
    text-align: center;
    padding-top: 50px;
}

.receita-imagem iframe {
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.video-titulo {
    font-size: 1.2em;
    color: #4CAF50;
    margin-bottom: 15px;
}

.video-link-texto a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
}


/*
    ========================================================
    MEDIA QUERY para TABLET (1250px a 1051px)
    ========================================================
*/
@media (max-width: 1300px) and (min-width: 1051px) {

    /* 1. CABEÇALHO E MENU */
    header {
        padding: 1em 3%;
    }

    .site-logo {
        max-width: 250px;
    }

    .menu-links {
        font-size: 18px;
    }

    .menu-links li {
        margin: 0 5px;
    }

    .menu-links a {
        padding: 3px 8px;
    }
    
    .whatsapp-link {
        font-size: 16px;
        padding: 4px 12px;
    }
    
    /* 2. SEÇÕES DE CONTEÚDO */
    h1, h2 {
        font-size: 45px;
    }

    .destaques-grid {
        gap: 20px;
    }

    .destaque-item, .destaque-item-clone {
        height: 250px;
    }

    .quem-somos-content, .onde-encontrar-content {
        gap: 20px;
    }
    
    /* 3. RODAPÉ */
    .footer-section, .footer-info {
        width: 200px;
    }
}


/*
    ========================================================
    MEDIA QUERY para CELULAR (MENU HAMBÚRGUER) - 1050px e abaixo
    ========================================================
*/
@media (max-width: 1050px) { 

    /* 1. CABEÇALHO E NAVEGAÇÃO */
    header {
        padding: 1em 20px;
        flex-wrap: wrap;
    }
    
    .site-logo {
        max-width: 200px;
    }

    /* ESTILO PROFISSIONAL AJUSTADO PARA O BOTÃO HAMBÚRGUER */
    .menu-hamburguer {
        display: block;
        background-color: #041655; /* Cor de fundo escura para contraste */
        color: #3AFBFB; /* Cor do ícone */
        border: none;
        
        /* Ajuste do tamanho e padding para parecer um botão */
        font-size: 2.5em; /* Define o tamanho do ícone Font Awesome */
        width: 60px;
        height: 55px;
        border-radius: 5px;
        
        display: flex; /* Para centralizar o ícone */
        justify-content: center;
        align-items: center;
        
        cursor: pointer;
        margin-left: auto;
        
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        transition: background-color 0.3s, transform 0.2s;
        z-index: 2001; /* Fica acima do menu lateral e de tudo */
    }

    .menu-hamburguer:hover {
        background-color: #020B2A;
        transform: scale(1.05);
    }
    
    .menu-nav {
        /* Oculta a navegação desktop e prepara para o slide-in */
        display: none; 
        flex: auto;
        
        position: fixed;
        top: 0;
        left: 0; 
        height: 100vh;
        width: 70%; 
        max-width: 300px; 
        z-index: 2000;
        background-color: #FFA94C;
        box-shadow: 4px 0 10px rgba(0, 0, 0, 0.2); 
        
        transform: translateX(-100%); 
        transition: transform 0.3s ease-in-out;
        
        padding: 50px 0 20px; 
        overflow-y: auto; 
    }

    .menu-nav.aberto {
        display: block;
        transform: translateX(0); 
    }

    .menu-links {
        display: flex;
        flex-direction: column;
        justify-content: flex-start; 
        align-items: center;
        flex-wrap: wrap; 
    }

    .menu-links li {
        margin: 5px 0;
        width: 100%;
        text-align: center;
        white-space: normal; 
    }
    
    .menu-links a {
        color: #020B2A ;
        display: block;
        padding: 10px;
        margin-left: 0; 
    }
    
    .whatsapp-link {
        margin-top: 20px;
        padding: 10px 30px;
        width: 80%;
    }
    
    .overlay-fundo {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1500;
        display: none;
    }

    .overlay-fundo.visivel {
        display: block;
    }

    /* 2. CONTEÚDO PRINCIPAL */
    main {
        padding: 10px; 
    }
    
    h1, h2 {
        font-size: 35px;
    }
    
    .quem-somos-content, .onde-encontrar-content, .receita-content {
        flex-direction: column;
    }
    
    .quem-somos-text, .onde-encontrar-text {
        flex: auto;
        text-align: center;
    }
    
    .destaques-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .destaque-item, .destaque-item-clone {
        height: 200px;
    }

    /* 3. TABELA */
    #produtos-container table, #produtos-container thead, #produtos-container tbody, #produtos-container th, #produtos-container td, #produtos-container tr {
        display: block;
    }

    #produtos-container thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    
    #produtos-container tbody tr {
        margin-bottom: 20px;
        border-radius: 8px;
    }

    #produtos-container td {
        border: none;
        border-bottom: 1px solid #3d5a57;
        position: relative;
        padding-left: 50% !important; 
        text-align: right;
    }

    #produtos-container td:before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: bold;
        color: #3BFBFD;
        margin-top: -10px;
    }

    .produtos .preco a.link-whatsapp-produto {
        width: 100%;
        justify-content: flex-end;
        padding-right: 10px;
    }
    
    /* 4. RODAPÉ */
    .footer-content {
        flex-direction: column;
        align-items: center; 
    }
    .footer-section, .footer-info {
        width: 90%;
        text-align: center;
        padding: 0;
    }
    .footer-section h4 {
        text-align: center;
    }
    .footer-section ul {
        text-align: center; 
    }

    .legal-page-main {
        padding-top: 90px;
    }
    
    .receita-imagem {
        padding-top: 0;
    }
}
