:root {
    --primary: #63BFD3; /* Cor de destaque (ex: laranja) */
    --dark: #2c3e50;
    --light: #ecf0f1;
    --font-titulo: 'Bangers', system-ui;
    --font-texto: 'Sora', sans-serif;
}

.text-center {
    text-align: center;
}

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

body { font-family: var(--font-texto); line-height: 1.6; color: var(--dark); overflow-x: hidden; }

h1, h2, h3 { font-family: var(--font-titulo); letter-spacing: 2px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }


/* --- HEADER (AJUSTADO PARA FLUTUAR) --- */
.main-header {
    background: rgba(1, 31, 67, 0.5); /* Branco com transparência */
    backdrop-filter: blur(10px); /* Efeito de vidro fosco */
    -webkit-backdrop-filter: blur(10px);
    padding: 5px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

/* --- SLIDESHOW (REMOÇÃO DA MARGEM) --- */
.hero-slider {
    margin-top: -40px !important; /* Remove qualquer margem que empurre o slide para baixo */
    padding-top: 0 !important;
    height: 100vh; /* Faz o slide ocupar a tela toda */
}

.swiper-slide {
    background-size: cover;
    background-position: center center;
    height: 100vh;
}

/* --- HERO INTERNA (PAGINAS SABORES/QUEM SOMOS) --- */
.hero-interna {
    margin-top: 0 !important;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px; /* Compensa a altura do menu para o texto não ficar embaixo dele */
}

.container_produtos {
    background-color: rgba(0,0,0,0.05);
    margin-top: -80px;
}
.container_video {
    margin-bottom: 30px;
}
.container_quemsomos {
    background-color: rgba(0,0,102,0.2);
}
.header-container { display: flex; justify-content: space-between; align-items: center; }

.logo img { 
    height: 40px;
    padding-top: 10px;
    }
.logo-footer img { height: 30px; }

.navbar ul { display: flex; list-style: none; align-items: center; }

.navbar ul li a {
    text-decoration: none;
    color: #F0DD76;
    margin: 0 15px;
    font-weight: 600;
    transition: 0.3s;
    font-size: 0.9rem;
}

.btn-destaque {
    background: var(--primary);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 50px;
}

/* SEÇÕES GENÉRICAS */
section { padding: 80px 0; }

.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 3rem; color: var(--primary); }
.section-title p { font-family: var(--font-texto); color: #7f8c8d; font-size: 1.1rem; }

/* HERO SECTION (Páginas Internas) */
.hero-interna {
    height: 40vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px; /* Compensa o header fixo */
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-interna h1 { font-size: 4rem; }

/* FOOTER */
footer { background: var(--dark); color: #fff; padding: 50px 0 20px; }
.footer-content { display: flex; justify-content: space-between; align-items: center; }

/* --- SLIDESHOW (HERO) --- */
.hero-slider {
    height: 100vh;
    margin-top: 0px; /* Compensa o header fixo */
}
.swiper { width: 100%; height: 100%; }
.swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* --- GRID DE SABORES --- */
.sabores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.sabor-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    cursor: pointer;
    
}

.sabor-card:hover { transform: translateY(-10px); }

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

.sabor-card h3 {
    margin: 0px 0 5px;
    font-size: 1.8rem;
    color: var(--dark);
}

.btn-veja-mais {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 10px 25px;
    font-family: var(--font-texto);
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
}

/* --- SEÇÃO QUEM SOMOS (HOME) --- */
.flex-row { display: flex; align-items: center; gap: 50px; }
.texto-quem-somos { flex: 1; }
.texto-quem-somos h2 { font-size: 3.5rem; color: var(--dark); margin-bottom: 20px; }
.imagem-quem-somos { flex: 1; }
.imagem-quem-somos img { width: 100%; border-radius: 20px; }

/* --- INDICADORES (CONTADORES) --- */
.indicadores { background: linear-gradient(90deg,rgba(98, 191, 212, 1) 0%, rgba(178, 208, 160, 1) 50%, rgba(241, 221, 118, 1) 100%); color: #fff; text-align: center; margin-bottom: -50px;}
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.numero { font-family: var(--font-titulo); font-size: 4rem; display: block; }
.contador-box p { font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.create{
    text-align: center; 
    margin-bottom: -100px;
}
/* --- MODAL (POPUP) --- */
/* --- MODAL (Fundo/Overlay) --- */
.modal {
    display: none; 
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85); /* Escureci um pouco mais para dar destaque */
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    padding: 20px; /* Margem de segurança para mobile */
    overflow-y: auto; /* Permite rolar se o conteúdo for maior que a tela */
}

/* --- CONTEÚDO DO POPUP --- */
.modal-content {
    background-color: #fff;
    padding: 35px;
    border-radius: 25px;
    width: 90%;
    max-width: 650px; /* Aumentado para caber a imagem de 600px + respiros */
    text-align: center;
    position: relative;
    animation: fadeIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* --- IMAGEM DENTRO DO POPUP (Ajuste Principal) --- */
#modalImg {
    width: 100%;
    max-width: 650px;   /* Define o tamanho real que a imagem terá no popup */
    height: auto;        /* Remove a altura fixa de 300px */
    aspect-ratio: 1 / 1; /* Força a manter o formato quadrado */
    object-fit: contain; /* Garante que a imagem apareça inteira sem cortes */
    border-radius: 20px;
    margin-bottom: 25px;
    background: #f9f9f9; /* Fundo sutil caso a imagem seja transparente */
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 30px;
    cursor: pointer;
    color: #999;
}

#modalImg {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
}

#modalTitulo { font-size: 2.5rem; color: var(--primary); margin-bottom: 10px; }
#modalDesc { font-family: var(--font-texto); color: #555; }

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .flex-row, .grid-3 { grid-template-columns: 1fr; flex-direction: column; }
    .hero-slider { height: 50vh; }
    .section-title h2 { font-size: 2.5rem; }
}


/* --- ESTILO DO RODAPÉ --- */
footer {
    background: var(--dark);
    color: #fff;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.links-footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
    transition: 0.3s;
}

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

.footer-bottom {
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 0.8rem;
    text-align: center;
    color: #bdc3c7;
}

/* 1. O container ou o próprio footer precisa ser relativo para ancorar a imagem */
.footer-content {
    position: relative; 
    overflow: hidden; /* Garante que a imagem não crie barra de rolagem se sobrar */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0; /* Opcional: remove padding inferior do container se houver */
}

/* 2. Posicionando a div da imagem no canto zero */
.img-sabores-footer {
    position: absolute;
    right: 0;
    bottom: 0;
    line-height: 0; /* Remove pequenos espaços de respiro de texto abaixo da imagem */
    
}

.img-sabores-footer img {
    display: block; /* Remove o espaço extra de inline-block */
    filter: drop-shadow(0px 0px 5px rgba(0,0,0,0.5));
    /* O max-height e opacity podem continuar no HTML ou você pode mover para cá */
}

/* --- ESTILOS QUEM SOMOS --- */
.texto-institucional h2 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.texto-institucional p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #555;
}

.card-mini {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.card-mini h4 {
    font-family: var(--font-titulo);
    color: var(--dark);
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.card-mini p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Evita problemas de carregamento das animações */
html, body {
    overflow-x: hidden;
}

[data-aos] {
    pointer-events: none;
}

.aos-animate {
    pointer-events: auto;
}

/* Melhorando a suavidade do scroll */
html {
    scroll-behavior: smooth;
}

.swiper-slide {
    background-size: cover;
    background-position: center center; /* Mantém o meio da imagem sempre visível */
    background-repeat: no-repeat;
    width: 100%;
    height: 70vh; /* Ajusta a altura para 70% da tela do usuário */
}

.sabor-card img {
    width: 90%;
    height: 400px; /* Define uma altura fixa para o grid */

    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

/* --- SEÇÃO REVENDEDOR IMPACTANTE --- */
.chamada-revendedor {
    background: #fdfdfd;
    padding: 100px 0;
}

.revendedor-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.revendedor-imagem { flex: 1; }
.revendedor-imagem img { width: 100%; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1)); }

.revendedor-conteudo { flex: 1.2; }

.badge-tag {
    background: #3498db;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.revendedor-conteudo h2 {
    font-size: 3.2rem;
    line-height: 1.1;
    margin: 20px 0;
    color: var(--dark);
}

.revendedor-conteudo h2 span { color: var(--primary); }

.intro-text { font-size: 1.1rem; color: #666; margin-bottom: 30px; }

/* Cards de Vantagens (As Caixas de Check) */
.vantagens-lista { margin-bottom: 40px; }

.vantagem-card {
    display: flex;
    align-items: center;
    background: #f1f4f9; /* Azul clarinho suave */
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 15px;
    transition: 0.3s;
}

.vantagem-card:hover { background: #e8ecf3; transform: translateX(10px); }

.icon-check {
    font-size: 1.8rem;
    color: #3498db;
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.vantagem-texto { font-size: 0.95rem; color: #444; }

.vantagem-texto strong {
    font-family: var(--font-titulo); /* Usa a fonte bangers/impactante */
    font-size: 1.2rem;
    color: var(--dark);
    display: block; /* Faz o título ficar em cima do texto se preferir */
}

/* Botão Chamativo */
.btn-revenda {
    display: inline-block;
    background: #0077cc;
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-family: var(--font-texto);
    box-shadow: 0 10px 20px rgba(0, 119, 204, 0.3);
    transition: 0.3s;
}

.btn-revenda:hover { background: #005fa3; transform: scale(1.05); }

/* Responsividade */
@media (max-width: 992px) {
    .revendedor-flex { flex-direction: column; text-align: center; }
    .vantagem-card { text-align: left; }
    .revendedor-conteudo h2 { font-size: 2.5rem; }
}

.language-selector {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: 20px; /* Ajuste conforme seu layout */
}

.lang-icon img {
    width: 24px;
    height: auto;
    border-radius: 3px;
    transition: transform 0.2s, filter 0.2s;
    filter: grayscale(80%); /* Ficam cinzas quando não selecionadas */
}

.lang-icon:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.lang-icon.active img {
    filter: grayscale(0%);
    border: 2px solid #3498db; /* Cor de destaque para a língua ativa */
}

/* Seção Sabores no Sobre - Ajustado */
.sabor-item-mini {
    background: #fff;
    padding: 3px; /* Reduzi um pouco para dar mais espaço à imagem */
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.sabor-item-mini:hover {
    transform: translateY(-5px);
}

.sabor-item-mini img {
    width: 100%;
    height: 200px; /* Define uma altura fixa para todas as imagens serem iguais */
    object-fit: cover; /* Faz a imagem preencher a div e corta as sobras sem distorcer */
    object-position: center; /* Garante que o centro da imagem seja o foco */
    border-radius: 10px;
    margin-bottom: 15px;
    display: block;
}

.sabor-item-mini h3 {
    font-family: var(--font-titulo);
    font-size: 1.2rem;
    color: var(--dark);
    margin: 0;
}
@media (max-width: 768px) {
    .sabores-about-grid {
        grid-template-columns: 1fr; /* No celular, uma imagem por linha */
        gap: 30px;
    }
    
    .sabor-item-mini img {
        height: 250px; /* Pode aumentar um pouco a altura no mobile se desejar */
    }
}






















/* --- AJUSTES DE RESPONSIVIDADE FINAL --- */

/* 1. Reset para Computador (Garante que o menu apareça no PC) */
@media (min-width: 993px) {
    .navbar {
        display: flex !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        opacity: 1 !important;
        visibility: visible !important;
        right: auto !important;
    }
    .menu-toggle {
        display: none !important;
    }
    .logo-site {
        height: 60px; /* Tamanho normal no PC */
        width: auto;
    }
}

/* 2. Estilo para Celular e Tablet (Até 992px) */
@media (max-width: 992px) {
    .menu-toggle {
        display: block !important;
        font-size: 2rem;
        color: #fff;
        cursor: pointer;
        z-index: 1100;
    }

    .logo-site {
        height: 40px !important; /* Logo menor no celular */
    }

    .navbar {
        position: fixed;
        top: 0;
        right: -100%; /* Escondido à direita */
        width: 100% !important;
        height: 100vh !important;
        background: #011f43 !important; /* Cor sólida do seu tema */
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease-in-out;
        z-index: 1000;
        visibility: hidden;
    }

    /* Quando o menu está aberto */
    .navbar.active {
        right: 0 !important;
        visibility: visible;
    }

    .navbar ul {
        flex-direction: column !important;
        gap: 30px !important;
        padding: 0;
    }

    .navbar ul li a {
        font-size: 1.5rem !important;
        color: #fff !important;
    }

    .btn-destaque {
        width: 80%;
        text-align: center;
        margin-top: 10px;
    }
}

.banner-container {
    position: relative;
    width: 350px; /* Largura do vídeo */
    /* Removi o height fixo para o container crescer com o vídeo */
    margin: 180px auto -100px auto; /* Aumentei a margem superior para a frase não bater no topo do site */
    display: flex;
    justify-content: center;
    overflow: visible; 
}

.video-reels {
    position: relative; /* Mudado de absolute para relative */
    width: 100%;
    height: auto; 
    aspect-ratio: 9/16; /* Garante a proporção correta */
    z-index: 1;
    border-radius: 15px;
    display: block;
}

.imagem-topo {
    position: absolute;
    /* Ajuste o 'top' para definir a distância: 
       - Mais negativo (ex: -200px) = Mais longe do vídeo
       - Menos negativo (ex: -100px) = Mais perto/encostando no vídeo */
    top: -260px; 
    
    width: 320%; /* Sua frase gigante */
    left: 50%; /* Centralização horizontal para imagens maiores que o container */
    transform: translateX(-50%); 
    
    z-index: 2;
    pointer-events: none;
}



/* Estilo específico para esta seção */
.section-banner-full .grid-12 {
    width: 100%;
    max-width: 100%; /* Remove qualquer limite de largura apenas aqui */
    padding: 0;      /* Remove margens internas que a grid possa ter */
    margin: 0;
}

/* Estilo da imagem para garantir o preenchimento */
.img-full-width {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    /* Ajuste de altura opcional para mobile */
    min-height: 200px; 
}