@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

/*
 * ==============================
 * 1. RESET E BASE
 * ==============================
*/

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

body {
    font-family: 'Montserrat', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #331f1f;
}

:root {
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 3.75rem;
}

h1, h2, h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

button,
input,
textarea,
select {
    font: inherit;
}

/*
 * ==============================
 * 2. HEADER E NAV
 * ==============================
*/

header {
    padding-top: 0px;
    padding-bottom: 10px;
    position: fixed;
    z-index: 10;
    background: linear-gradient(270deg, #fff204, #ecb902, #c22400);
    top: 0;
    left: 0;
    width: 100%;
    transition: top 0.15s ease-in-out;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 5%;
    background: linear-gradient(270deg, #fff204, #ecb902, #c22400);
    flex-wrap: wrap;
    position: relative;
}

.hamburger {
    display: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    transition: max-height 0.4s ease;
    overflow: hidden;
    max-height: 500px;
    position: relative;
}

.nav-left, .nav-right {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-left { margin-right: 20px; }
.nav-right { margin-left: 250px; }

.nav-left a,
.nav-right a {
    color: #ffffffad;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
}

.nav-left a:hover,
.nav-right a:hover { color: #ffffff; }

.nav-left a.active,
.nav-right a.active { color: rgb(255, 255, 255); }

.icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    margin-left: 5px;
}

.logo-sobreposta {
    position: absolute;
    left: 50%;
    bottom: -60%;
    transform: translateX(-50%);
    z-index: 24;
    top: -30px;
}

.logo-sobreposta img { height: 170px; }

.logo-mobile {
    display: none;
    position: relative;
    top: 0%;
}

.logo-mobile img { height: 60px; }

@media (max-width: 768px) {
    .hamburger { display: block; }

    .nav-menu {
        flex-direction: column;
        gap: 10px;
        background: linear-gradient(270deg, #fff204, #ecb902, #c22400);
        width: 100%;
        padding: 0;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.4s ease;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 999;
    }

    .nav-menu.active {
        max-height: 500px;
        padding: 10px 0;
    }

    .nav-left, .nav-right {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        margin: 0;
    }

    .nav-left a, .nav-right a {
        padding: 8px 20px;
        width: 100%;
        font-size: 0.95rem;
    }

    .logo-sobreposta { display: none; }
    .logo-mobile { display: block; }
    .logo-mobile img { height: 60px; }
}

@media (max-width: 480px) {
    .logo-mobile img { height: 50px; }
    .icon { width: 18px; height: 18px; }
}

/*
 * ==============================
 * 3. BOTÕES GERAIS
 * ==============================
*/

.btn {
    background: transparent;
    border: 2px solid #c22400;
    border-radius: 50px;
    padding: 12px 30px;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #c22400;
    transition: 0.3s ease;
    text-decoration: none;
    display: inline-block;
}
.btn:hover {
    background: #c22400;
    color: #fff;
    transform: translateY(-2px);
}

.btn2 {
    background: transparent;
    border: 2px solid #c22400;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #c22400;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}
.btn2:hover {
    background: #c22400;
    color: #fff;
    transform: translateY(-2px);
}

/*
 * ==============================
 * 4. BANNER ROTATIVO
 * ==============================
*/

.produto-carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}

.produto-carousel {
    display: flex;
    gap: 20px;
    justify-content: center;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.seta {
    display: none;
    cursor: pointer;
    font-size: 2rem;
    padding: 10px;
    user-select: none;
}

@media (max-width: 768px) {
    .seta { display: block; }
    .produto-carousel {
        justify-content: flex-start;
        padding: 0 10px;
    }
}

.banner-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 6;
    height: clamp(240px, 45vw, 500px);
    min-height: 240px;
    width: 100%;
}

.banner-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.banner-slide {
    min-width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: gray;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active { background-color: white; }

.curva {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1;
    pointer-events: none;
}

.curva svg { width: 100%; height: 100%; display: block; }

.curva::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    height: 100%; width: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 10 Q 25 0, 50 10 T 100 10' fill='none' stroke='white' stroke-width='1.5' opacity='0.07'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 100px 20px;
    z-index: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    .banner-container {
        aspect-ratio: 16 / 8.5;
        height: clamp(220px, 52vw, 360px);
        min-height: 220px;
    }

    .dots { bottom: 20px; }
}

@media (max-width: 480px) {
    .banner-container {
        aspect-ratio: 16 / 10;
        height: clamp(190px, 58vw, 280px);
        min-height: 190px;
    }
    .dot { height: 8px; width: 8px; margin: 0 3px; }
}

/*
 * ==============================
 * 5. SEÇÃO PRODUTOS (CARROSSEL HOME)
 * ==============================
*/

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.produtos {
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='10' viewBox='0 0 100 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 5 Q 12.5 4, 25 5 T 50 5 T 75 5 T 100 5' fill='none' stroke='white' stroke-width='1.2' opacity='0.08'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 100px 10px;
    background-color: #f7d40b;
    padding: 6.25rem 5% 3.125rem;
    text-align: center;
    position: relative;
    z-index: 1;
    background: linear-gradient(270deg, #c22400, #ecb902, #fff204);
    background-size: 100% 200%;
    animation: gradientMove 2s ease infinite;
    height: 700px;
}

.produtos::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    height: 100%; width: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 10 Q 25 0, 50 10 T 100 10' fill='none' stroke='white' stroke-width='1.5' opacity='0.07'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 100px 20px;
    z-index: 0;
    pointer-events: none;
}

.titulo-produtos, h2 {
    color: white;
    font-size: 45px;
    margin-top: 0;
    margin-bottom: 40px;
}

.produto-carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.produto-carousel {
    display: flex;
    gap: 30px;
    justify-content: flex-start;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    max-width: 100%;
}

.produto-carousel::-webkit-scrollbar { display: none; }

.produto {
    flex: 0 0 auto;
    width: 200px;
    scroll-snap-align: start;
    text-align: center;
    position: relative;
    transition: transform 0.3s;
}

.produto-img {
    height: 280px;
    position: relative;
    border-radius: 50%;
    padding: 30px;
    transition: transform 0.3s;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.produto-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    width: 300%;
    height: auto;
    transition: transform 0.3s;
}

.produto-img::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 200px; height: 200px;
    background: #783d92;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease;
    z-index: -1;
}

.produto:hover .produto-img::before { transform: translate(-50%, -50%) scale(1); }
.produto:hover .produto-img img { transform: scale(1.1) rotate(-5deg); }

.produto-nome {
    background-color: #ffffff00;
    color: white;
    padding: 10px 20px;
    border-radius: 15px;
    text-align: center;
    display: inline-block;
    max-width: 100%;
    line-height: 1.3;
    font-weight: bold;
}

.produto:hover .produto-nome {
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    transform: scale(1.1);
}

.produto.alho .produto-img::before { background: #7a4671; }
.produto.tradicional .produto-img::before { background: #d46606; }
.produto.cebola .produto-img::before { background: #7b931b; }
.produto.pimenta .produto-img::before { background: #99311e; }

.produto.alho:hover .produto-nome { background: #7a4671; }
.produto.tradicional:hover .produto-nome { background: #d46606; }
.produto.cebola:hover .produto-nome { background: #7b931b; }
.produto.pimenta:hover .produto-nome { background: #99311e; }

.botao-centro { margin-top: 30px; text-align: center; }

.produtos .btn {
    border: 1.5px solid #FFFFFF;
    color: #FFFFFF;
    background: transparent;
    font-weight: 500;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.produtos .btn:hover {
    background: #FFFFFF;
    color: #c22400;
}

.seta {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    color: white;
    background: rgba(235, 228, 228, 0);
    padding: 8px 12px;
    border-radius: 50%;
    z-index: 2;
    cursor: pointer;
    user-select: none;
}

.seta-esquerda { left: 10px; }
.seta-direita { right: 10px; }

@media (max-width: 768px) {
    .titulo-produtos { font-size: 2.5rem; }
    .produto { width: 160px; }
    .produto-carousel-container { position: relative; }
    .seta { display: block; }
}

@media (max-width: 480px) {
    .produto { width: 140px; }
    .produto-img img { max-width: 120px; }
    .btn { width: 80%; padding: 12px 0; }
}

/*
 * ==============================
 * 6. SEÇÃO A QUALYMESA
 * ==============================
*/

.section-qualymesa {
    background: #ffffff;
    padding: 5rem 1.25rem;
}

.section-qualymesa h2 {
    text-align: center;
    font-size: 36px;
    color: #e06900;
    margin-bottom: 50px;
    margin-top: 0;
}

.section-qualymesa .content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.section-qualymesa .content img {
    width: 400px;
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0);
}

.section-qualymesa .text {
    flex: 1;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/*
 * ==============================
 * 7. SEÇÃO PROCESSO
 * ==============================
*/

.processo {
    text-align: center;
    padding: 3.125rem 1.25rem;
    background: url("img/temperos2.png") no-repeat center center;
    background-size: cover;
    background-position-y: 90px;
}

.processo h2 { font-size: 2rem; color: #7a0c0c; margin-bottom: 40px; }

.cards-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    top: -150px;
}

.card {
    width: 500px;
    background: #ffc800;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.card:hover { transform: translateY(-8px); }
.card img { width: 100%; height: 160px; object-fit: cover; display: block; }

.card-text {
    padding: 15px;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #ffffff;
    font-weight: bold;
    text-align: justify;
    hyphens: auto;
}

/*
 * ==============================
 * 8. MVV
 * ==============================
*/

.mvv {
    position: relative;
    background: #b70107;
    padding: 5rem 5% 3.75rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    overflow: hidden;
}

.mvv-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    z-index: 1;
    max-width: 1200px;
}

.mvv .card {
    background: white;
    color: #aa1116;
    border-radius: 25px;
    padding: 20px;
    width: 280px;
    min-height: 320px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
}

.mvv .card:hover { transform: translateY(-5px); }
.mvv .card h3 { margin-bottom: 15px; font-size: 1.4rem; }
.mvv .card p { font-size: 1rem; line-height: 1.4; }

.mvv2 { background: #b70107; padding: 1.875rem 0; text-align: center; }

@media (max-width: 768px) {
    .mvv .card { width: 90%; min-height: auto; }
    .mvv { padding: 60px 5% 40px; }
    .mvv2 .btn2 { width: 100%; padding: 14px 0; font-size: 1rem; }
}

/*
 * ==============================
 * 9. PÁGINA PRODUTOS
 * ==============================
*/

.banner-fixo { width: 100%; aspect-ratio: 4 / 1; overflow: hidden; position: relative; }
.banner-fixo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.produtos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    max-width: 1200px;
    margin: 100px auto;
}

.produto-card {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    color: #fff;
    border-radius: 20px;
    cursor: pointer;
    transition: flex 0.5s ease, opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    opacity: 0.4;
}

.produto-card.ativo { opacity: 1; }

.conteudo {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

.info-produto { text-align: center; }
.info-produto img { max-height: 180px; transition: transform 0.20s ease; }
.produto-card:hover .info-produto img { transform: scale(1.50) rotate(-10deg); }

.conteudo-extra { display: none; animation: fadeIn 0.5s ease; }
.conteudo-extra img { max-height: 180px; border-radius: 10px; box-shadow: 0 2px 8px rgba(0,0,0,0.2); }

.produto-card:hover { flex: 2; opacity: 1; }
.produto-card:hover .conteudo-extra { display: block; }

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

.produtos-card { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; }
.conteudo { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 40px; }
.conteudo .tabela img { width: 360px; height: auto; }
.conteudo .descricao { flex: 1; text-align: justify; }

@media (max-width: 768px) {
    .banner-fixo { aspect-ratio: 4 / 1; }
    .produtos-container { flex-direction: column; margin: 50px 20px; }
    .produto-card { flex: unset; width: 100%; min-width: unset; }
    .conteudo { flex-direction: column; }
    .conteudo-extra { display: block; }
    .conteudo .tabela img { width: 100%; max-width: 360px; }
}

/*
 * ==============================
 * 10. RODAPÉ
 * ==============================
*/

.site-footer {
    background: linear-gradient(270deg, #c22400, #ecb902, #fff204);
    color: #ffffff;
    padding: 50px 1.25rem 60px;
    font-size: 14px;
}

.site-footer .container { max-width: 1200px; margin: 0 auto; }

.footer-top { 
    display: flex; 
    justify-content: space-between; 
    align-items: flex-start; 
    gap: 30px; 
    margin-bottom: 40px; 
    flex-wrap: wrap;
}

.footer-brand { 
    flex: 1; 
    min-width: 200px; 
    margin-top: 0; 
    padding-top: 0; 
}
.footer-brand img { 
    max-width: 180px; 
    margin-top: -10px; /* Ajuste fino para compensar o espaço em branco da imagem */
    display: block; 
}
.footer-brand p { margin-top: 15px; color: white; opacity: 0.9; line-height: 1.5; }
.footer-social-icons { display: flex; gap: 15px; margin-top: 15px; }
.footer-social-icons a { color: white; font-size: 1.5rem; transition: 0.3s; }
.footer-social-icons a:hover { opacity: 0.8; transform: translateY(-3px); }

.footer-navs { display: flex; flex: 2; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer-navs h4 { font-size: 1.1rem; margin-bottom: 20px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-navs ul { list-style: none; padding: 0; margin: 0; }
.footer-navs a { color: #ffffffb4; text-decoration: none; transition: color 0.3s ease; }
.footer-navs a:hover { color: #c22400; }

.nav-column { flex: 1; min-width: 200px; }
.nav-column ul li { margin-bottom: 10px; }
.nav-column p { line-height: 1.6; opacity: 0.9; }
.nav-column i { margin-right: 10px; width: 20px; text-align: center; }
.footer-group { margin-bottom: 25px; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.482);
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}

.socials { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.socials .follow { font-weight: 500; }
.socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(232, 8, 8, 0.168);
    color: #ffffff;
    transition: background 0.3s ease, color 0.3s ease;
}
.socials a:hover { background: #c22400; color: #fff; }

.contact { font-size: 14px; }
.contact .whatsapp:hover { text-decoration: underline; }

.footer-bottom .credits { font-size: 13px; color: #44444473; margin: 0 auto; display: block; }

@media (min-width: 820px) {
    .footer-top { grid-template-columns: 1fr 2fr; }
    .footer-navs { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}

/*
 * ==============================
 * 11. JOGO
 * ==============================
*/

.jogo-background {
    background-image: url('img/back_jogo.png');
    background-size: cover;
    background-position: center;
    height: 420px;
    width: 100%;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    display: block;
}

.jogo-background::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: 1;
}

.jogo-conteudo {
    display: none;
}

.jogo-logo-img { width: 220px; margin-bottom: 15px; filter: drop-shadow(0 5px 15px rgba(0,0,0,0.2)); }
.jogo-descricao { color: #fff; text-shadow: 0 2px 4px rgba(0,0,0,0.5); margin-bottom: 20px; }

.jogo-cta {
    background: linear-gradient(135deg, #e06900, #c22400);
    color: #fff;
    border: 2px solid #000;
    padding: 12px 36px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 0px #8b0000;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    transition: all 0.15s ease;
}
.jogo-cta:hover {
    transform: translateY(2px);
    box-shadow: 0 2px 0px #8b0000;
}
@keyframes pulsar-suave {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.6); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(255, 102, 0, 0); }
    100% { transform: scale(1); }
}

.jogo-ativo { width: 100%; height: 100%; position: absolute; border-bottom: none; }

#placar {
    position: absolute;
    top: 20px; right: 20px;
    background: rgba(255, 176, 30, 0.922);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 10px 25px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 1000;
}

.personagem-correndo {
    position: absolute;
    bottom: 5px; left: 10%;
    width: 180px !important;
    height: auto !important;
    transition: bottom 0.05s linear;
    z-index: 10;
}

.obstaculo {
    position: absolute;
    bottom: 5px;
    width: 60px; height: 60px;
    background-size: contain;
    background-repeat: no-repeat;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.3));
}

.hidden { display: none !important; }

#modal-game-over {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(73, 59, 59, 0.049);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    backdrop-filter: blur(8px);
}

.vidro-modal {
    background: rgba(255, 255, 255, 0.007);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 40px;
    text-align: center;
    width: 85%;
    max-width: 400px;
}

.titulo-game-over { color: #ff6600; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 2.2rem; margin-bottom: 15px; }
.pontuacao-final, .recorde-modal { color: #ffffff; font-family: 'Montserrat', sans-serif; font-size: 1.3rem; }
#pontos-finais, #recorde-final { color: #ffcc00; font-weight: bold; }

.btn-reiniciar {
    margin-top: 25px;
    background: linear-gradient(135deg, #ff6600, #ff9900);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.3);
}

.jogo-personagem {
    position: absolute;
    bottom: 0; left: 20%;
    z-index: 3;
    height: auto;
    filter: drop-shadow(0 5px 20px rgba(53, 29, 1, 0.4));
    left: 20%;
    transform: translateX(-50%);
}

.video-pequeno { width: 200px; height: auto; }

.jogo-instrucao {
    position: absolute;
    bottom: 10px; right: 20px;
    z-index: 3;
    color: rgb(255, 255, 255);
    font-size: 0.9em;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 10px 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.tecla {
    background: rgba(255, 255, 255, 0.8);
    color: #000;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9em;
}

.acucar { background-image: url('img/acucar.png'); }
.panela { background-image: url('img/panela.png'); }
.prato  { background-image: url('img/prato.png');  }

/*
 * ==============================
 * 12. WHATSAPP FLUTUANTE
 * ==============================
*/

.whats-flutuante {
    position: fixed !important;
    bottom: 20px; right: 20px;
    z-index: 999999 !important;
    background-color: #25d366;
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: transform .3s ease, box-shadow .3s ease;
}

.whats-flutuante img { width: 32px; }
.whats-flutuante:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(0,0,0,0.35); }

@media (max-width: 480px) {
    .whats-flutuante { width: 55px; height: 55px; bottom: 15px; right: 15px; }
    .whats-flutuante img { width: 28px; }
}

/*
 * ==============================
 * 13. SETAS CARROSSEL (FINAL)
 * ==============================
*/

.seta {
    position: relative;
    z-index: 100;
    cursor: pointer;
    font-size: 30px;
    color: #e06900;
    background: rgba(255, 255, 255, 0.8);
    width: 50px; height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    user-select: none;
}

.seta:hover { background: #e06900; color: white; }
.produto { transition: transform 0.3s ease; }
.produto:hover { transform: translateY(-10px); }

.produto-carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.produto-carousel {
    display: flex;
    gap: 30px;
    justify-content: center;
    overflow-x: hidden;
    padding: 20px 0;
}

.seta { display: none; }

@media (max-width: 768px) {
    .seta {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        background: rgba(255, 255, 255, 0.7);
        border-radius: 50%;
        width: 40px; height: 40px;
        cursor: pointer;
    }
    .seta-esquerda { left: 10px; }
    .seta-direita { right: 10px; }
    .produto-carousel {
        justify-content: flex-start;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 20px 50px;
    }
    .produto { scroll-snap-align: center; }
}

.section-qualymesa .content img {
    width: 45%;
    max-width: 1000px;
    height: auto;
}

.btn-enviar { 
    transition: all 0.3s ease; 
}
.btn-enviar:hover { 
    background: rgba(255, 255, 255, 0.2); 
    border-color: rgba(255, 255, 255, 0.6); 
    transform: translateY(-1px); 
}

.produtos { position: relative; padding: 50px 0; z-index: 10; }

.produto-carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 90%;
    margin: 0 auto;
}

.produto-carousel {
    display: flex;
    overflow-x: visible;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 20px 0;
    width: 100%;
    justify-content: center;
}

.produto { flex: 0 0 250px; text-align: center; }

.produto-carousel-container > .seta { display: none; }

@media (max-width: 768px) {
    .produto-carousel-container {
        width: 100%;
        padding: 0 38px;
    }

    .produto-carousel {
        overflow-x: auto;
        justify-content: flex-start;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .produto-carousel::-webkit-scrollbar { display: none; }

    .produto-carousel-container > .seta {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 3;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border: 1px solid rgba(224, 105, 0, 0.25);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.92);
        color: #cf6500;
        font-size: 15px;
        line-height: 1;
        cursor: pointer;
        user-select: none;
        box-shadow: 0 6px 18px rgba(0,0,0,0.12);
        transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    }

    .produto-carousel-container > .seta:hover {
        background: #e06900;
        color: #fff;
        border-color: #e06900;
    }

    .produto-carousel-container > .seta:focus-visible {
        outline: 2px solid #e06900;
        outline-offset: 2px;
    }

    .seta-esquerda { left: 4px; }
    .seta-direita { right: 4px; }
}

.card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.card h3 {
    font-family: 'Montserrat', sans-serif;
    color: #4a3321;
    font-size: 1.3rem;
    margin-top: 20px;
    line-height: 1.3;
}

.card p { color: #666; font-size: 0.95rem; margin-top: 15px; line-height: 1.7; }

.icon-box { transition: transform 0.3s ease; }
.card:hover .icon-box { transform: scale(1.1); }

.cards-container { display: flex; justify-content: center; gap: 30px; padding: 40px 20px; flex-wrap: wrap; }

.card { background: #ffffff; border-radius: 15px; padding: 30px; width: 320px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: transform 0.3s ease; }
.card:hover { transform: translateY(-10px); }

.icon-box {
    background-color: #fff4e6;
    width: 80px; height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-box i { font-size: 35px; color: #e67e22; }
.card h3 { font-size: 1.25rem; color: #333; margin-bottom: 15px; font-weight: 700; }
.card p { font-size: 0.95rem; color: #666; line-height: 1.6; }
