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

/* ===================================================== */
/* Botão flutuante WhatsApp (mobile/tablet/desktop) */
/* ===================================================== */
.btn-whatsapp-float {
    position: fixed;
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
    z-index: 9999;
}

.btn-whatsapp-float i {
    font-size: 1.6rem;
}

html {
    scroll-behavior: smooth;
}

/* /O background tera um degrade que ficara alternando enter as paletas (#ff0303 #ffffff )/ */
body{
    background: linear-gradient(to left,
    #f5f1ac, #c0c0c0, #002258);
    background-size: 1000% 1000%;
    height: 100vh;
    width: 100vw;
    animation: alternaDegrade 10s linear infinite alternate;
    font-family: 'Montserrat', 'Roboto', 'Inter', Arial, sans-serif;
}


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

.logoBranca
{
    display: none;
}

.logo{
    padding: 10px;
    width: 100%;
    height: auto;
    /* background-color: rgb(202, 87, 106); */
    z-index: -1;
     /* background-color: pink; */
}   

.logo  img{
    margin-top: 15px;
    width: 50%;
    height: auto;
    /* background-color: pink; */
  
} 

.headPunch {
    /* Define a cor do texto como um tom de cinza escuro */
    color: rgb(108, 108, 108);

    /* padding-top removido - controlado por responsividade.css para evitar conflitos */

    /* Faz o elemento ocupar toda a largura disponível */
    width: 100%;

    /* Altura automática para se ajustar ao conteúdo */
    height: auto;

    /* Impede que o texto quebre para a próxima linha */
    white-space: nowrap;

    /* Esconde qualquer conteúdo que ultrapasse a largura do elemento */
    overflow: hidden;

    /* Adiciona reticências (...) ao final do texto que ultrapassar o limite do elemento */
    text-overflow: ellipsis;

    /* Define o tamanho da fonte de forma responsiva, entre 12px e 34px, variando conforme a largura da tela */
    font-size: clamp(12px, 3.5vw, 34px);

    /* Centraliza o texto horizontalmente */
    text-align: center;

    /* Adiciona uma borda branca ao redor das letras para dar destaque */
    text-shadow:
        /* -0.1px -0.1px 0 #fff, */
         /* 0.1px -0.1px 0 #fff, */
        /* -1px  1px 0 #fff, */
         0.1px  0.1px 0 #fff;
    /* Define uma fonte sem serifa, com peso negrito/grosso */
    font-family: 'Montserrat', 'Roboto', 'Inter', Arial, sans-serif;
    font-weight: bold;
}

.bgImage {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background-image: url(../image/BannerTop/mobileAcademianovo.png);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
    z-index: -5;
    pointer-events: none; /* Garante que não bloqueie cliques */
}

.produtos-slider
{ 
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    z-index: 10; /* Fica acima do conteúdo mas abaixo do menu fixo */
    /* background-color: pink; */
}

.produtos-slider img {
    pointer-events: auto !important;
    cursor: pointer !important;
}

.overlay-banner-produto {
    position: absolute;
    cursor: pointer !important;
    pointer-events: auto !important;
    z-index: 100 !important;
    background: transparent;
    border: none;
    top: 0;
    left: 0;
}

#produto-rotativo { /* Seleciona o elemento de imagem rotativa do produto - BASE MOBILE */
    max-width: 100vw; /* Limita a largura máxima à largura da viewport */
    max-height: 60vh; /* Limita a altura máxima a 60% da altura da viewport */
    width: auto; /* Largura automática respeitando proporções */
    height: auto; /* Altura automática respeitando proporções */
    object-fit: contain; /* Garante que a imagem seja totalmente visível sem distorção */
    object-position: center bottom; /* Posiciona a imagem no centro e na parte inferior */
    transition: opacity 0.7s; /* Suaviza a transição de opacidade ao trocar a imagem */
    position: absolute; /* Permite posicionar o elemento em relação ao seu container pai */
    left: 50%; /* Centraliza horizontalmente */
    bottom: 0; /* Alinha pela parte de baixo do container pai */
    top: auto; /* Remove o alinhamento pelo topo */
    transform: translateX(-50%) translateZ(0); /* Centraliza horizontalmente e força aceleração de hardware */
    pointer-events: auto !important; /* Permite interação do mouse/touch com o elemento */
    cursor: pointer !important; /* Cursor de link ao passar o mouse */
    z-index: 10 !important; /* Fica acima do conteúdo mas abaixo do menu fixo */
    display: block; /* Garante que o elemento se comporte como bloco (útil para <img>) */
    /* Permite que a imagem mantenha sua proporção natural */
    /* Removido min-height e min-width forçados para evitar redimensionamento não proporcional */
    aspect-ratio: auto; /* Mantém proporção original */
    /* Propriedade para garantir renderização nítida das imagens - MOBILE */
    image-rendering: -webkit-optimize-contrast; /* Chrome/Safari: renderização nítida otimizada */
    image-rendering: -moz-crisp-edges; /* Firefox: renderização nítida */
    image-rendering: auto; /* Renderização padrão otimizada (não pixelated para evitar pixelização) */
    -ms-interpolation-mode: bicubic; /* IE: renderização de alta qualidade */
    backface-visibility: hidden; /* Evita problemas de renderização 3D */
    -webkit-backface-visibility: hidden; /* Chrome/Safari: evita problemas de renderização 3D */
    will-change: transform; /* Otimiza performance da transformação */
    /* Força renderização nítida */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Não use background-image aqui, pois a imagem é definida pelo atributo src do <img> */
    /* background-color: pink; */
}

.menu-eclipse {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 101; /* Acima do overlay do banner (z-index: 100) */
    align-items: end;
    gap: 3px; /* Gap reduzido para aliviar visão do banner */
    margin: 4px 0; /* Margens verticais reduzidas para aliviar visão do banner */
    margin-right: 15px;
}

.menu-eclipse button {
    width: 145px; /* Largura reduzida mas suficiente para "REPRESENTANTE" não ser cortado */
    min-width: 145px; /* Largura mínima igual à largura para garantir alinhamento */
    max-width: 145px; /* Largura máxima igual à largura para garantir alinhamento */
    height: auto;
    padding: 4px 12px; /* Padding reduzido para aliviar visão do banner */
    border: 2px solid #b0b0b0;
    border-radius: 15px;
    background: #00112d;
    color: #ffffff;
    font-weight: bold;
    font-size: 0.75rem; /* Fonte reduzida para mobile */
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, transform 1.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
    outline: none;
    position: relative;
    overflow: hidden; /* Contém o efeito de brilho dentro do botão */
    white-space: nowrap; /* Mantém o texto em uma linha */
    box-sizing: border-box; /* Garante que padding e border sejam incluídos na largura */
}

/* Animação de brilho que passa pelos botões - Mobile */
.menu-eclipse button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 215, 0, 0.3), 
        rgba(255, 215, 0, 0.5), 
        rgba(255, 215, 0, 0.3), 
        transparent
    );
    z-index: 0;
    animation: brilhoPassante 3s ease-in-out infinite;
    border-radius: 15px; /* Mantém o brilho dentro das bordas arredondadas */
}

@keyframes brilhoPassante {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.menu-eclipse button span {
    position: relative;
    z-index: 1;
}

.menu-eclipse button:hover::before,
.menu-eclipse button:focus::before {
    animation: brilhoPassanteRapido 0.6s ease-in-out;
}

@keyframes brilhoPassanteRapido {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.menu-eclipse button:hover,
.menu-eclipse button:focus {
    border-color: #EBC447;
    color: #fff457;
    transform: scale(1.3) translateX(-25px);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4), 0 0 40px rgba(255, 215, 0, 0.2);
}

.nossaHistoria {
    position: relative;
    z-index: 1; /* Garante que fique acima do fundo, mas abaixo de overlays */
    max-width: 90%;              /* Define a largura máxima do container para 90% */
    margin: 60vh auto 20% auto;    /* Centraliza horizontalmente e posiciona a partir de 60% da altura da viewport */
    padding: 40px;                /* Espaçamento interno aumentado */
    padding-bottom: 80px;         /* Padding-bottom extra para não cobrir o WhatsApp */
    background: rgba(20, 20, 20, 0.9); /* Fundo preto translúcido */
    backdrop-filter: blur(10px);  /* Efeito de desfoque atrás */
    border: 1px solid rgba(255, 215, 0, 0.3); /* Borda dourada sutil */
    border-radius: 15px;          /* Bordas arredondadas */
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); /* Sombra suave */
    font-size: 1.15rem;          /* Tamanho da fonte levemente maior que o padrão */
    color: #e0e0e0;              /* Cor do texto em cinza claro */
    line-height: 1.6;            /* Altura da linha para melhor legibilidade */
    font-family: 'Montserrat', 'Roboto', 'Inter', Arial, sans-serif; /* Fonte moderna */
    display: block;              /* Garante que cada box fique separada */
}

/* Estilo Premium para o título "Quem Somos" */
.nossaHistoria h2 {
    color: #FFD700;              /* Cor dourada */
    font-family: 'Montserrat', 'Roboto', 'Inter', Arial, sans-serif;
    font-weight: 700;            /* Negrito */
    text-transform: uppercase;   /* Caixa alta */
    margin-bottom: 24px;         /* Espaçamento abaixo do título */
    padding-bottom: 16px;        /* Espaço para a linha decorativa */
    border-bottom: 2px solid rgba(255, 215, 0, 0.5); /* Linha decorativa dourada */
    font-size: 1.8rem;           /* Tamanho do título */
    letter-spacing: 1.5px;       /* Espaçamento entre letras */
}

/* Estilo para os parágrafos */
.nossaHistoria p {
    color: #e0e0e0;              /* Cinza claro */
    font-family: 'Montserrat', 'Roboto', 'Inter', Arial, sans-serif;
    line-height: 1.6;            /* Espaçamento entre linhas */
    text-align: left;            /* Alinhamento à esquerda */
    margin-bottom: 16px;         /* Espaçamento entre parágrafos */
}

.nossoCompromisso {
    position: relative;
    z-index: 1; /* Garante que fique acima do fundo, mas abaixo de overlays */
    max-width: 90%;              /* Define a largura máxima do container para 90% */
    margin: 10vh auto 0 auto;    /* Centraliza horizontalmente e posiciona a partir de 60% da altura da viewport */
    padding: 40px;                /* Espaçamento interno aumentado */
    padding-bottom: 80px;         /* Padding-bottom extra para não cobrir o WhatsApp */
    background: rgba(20, 20, 20, 0.9); /* Fundo preto translúcido */
    backdrop-filter: blur(10px);  /* Efeito de desfoque atrás */
    border: 1px solid rgba(255, 215, 0, 0.3); /* Borda dourada sutil */
    border-radius: 15px;          /* Bordas arredondadas */
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); /* Sombra suave */
    font-size: 1.15rem;          /* Tamanho da fonte levemente maior que o padrão */
    color: #e0e0e0;              /* Cor do texto em cinza claro */
    line-height: 1.6;            /* Altura da linha para melhor legibilidade */
    font-family: 'Montserrat', 'Roboto', 'Inter', Arial, sans-serif; /* Fonte moderna */
    display: block;              /* Garante que cada box fique separada */
}

/* Estilo Premium para o título "Nosso Compromisso" */
.nossoCompromisso h2 {
    color: #FFD700;              /* Cor dourada */
    font-family: 'Montserrat', 'Roboto', 'Inter', Arial, sans-serif;
    font-weight: 700;            /* Negrito */
    text-transform: uppercase;   /* Caixa alta */
    margin-bottom: 24px;         /* Espaçamento abaixo do título */
    padding-bottom: 16px;        /* Espaço para a linha decorativa */
    border-bottom: 2px solid rgba(255, 215, 0, 0.5); /* Linha decorativa dourada */
    font-size: 1.8rem;           /* Tamanho do título */
    letter-spacing: 1.5px;       /* Espaçamento entre letras */
}

/* Estilo para os parágrafos */
.nossoCompromisso p {
    color: #e0e0e0;              /* Cinza claro */
    font-family: 'Montserrat', 'Roboto', 'Inter', Arial, sans-serif;
    line-height: 1.6;            /* Espaçamento entre linhas */
    text-align: left;            /* Alinhamento à esquerda */
    margin-bottom: 16px;         /* Espaçamento entre parágrafos */
}



.bannerDeserto img
{
    margin-top: 30px;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}


/* CSS antigo do carrossel removido - substituído por produtos-grid */
.carrossel-produtos h2 {
    text-align: center;
    margin-bottom: 24px;
    color: #000000;
    font-family: 'Montserrat', 'Roboto', 'Inter', Arial, sans-serif;
    
}
.carrossel-container {
    position: relative;
    width: 90vw;
    max-width: 420px;
    overflow: hidden;
    border-radius: 15px;

    /* Esta linha aplica uma sombra ao redor de todo o container do carrossel.
       O box-shadow: 0 8px 20px rgba(0,0,0,0.95); significa:
       - 0: deslocamento horizontal (sem deslocamento para os lados)
       - 8px: deslocamento vertical (a sombra fica 8px abaixo do elemento)
       - 20px: raio de desfoque (quanto maior, mais "borrada" a sombra)
       - rgba(0,0,0,0.95): cor da sombra (preto quase opaco, 95% de opacidade)
       Isso cria um efeito de profundidade, destacando o carrossel do fundo. */
    box-shadow: 0 8px 20px rgba(0,0,0,0.95);
}


    
    

.carrossel-cards {
    display: flex;
    transition: transform 1s ease;
    }
.card-produto {
    min-width: 100%;
    box-sizing: border-box;
    padding: 24px;
    gap: 50px;
    background: linear-gradient(to left,
    #b4b3b3, #c2c1c1, #c6c5c5, #b9b9b9, #c9c8c8, #9a9a9a);
    /* #c5c4c4, #c9c8c8, #b9b9b9, #8c8c8c, #7d7d7d, #3a3a3a); */
    

    
    display: flex;
    flex-direction: column;
    align-items: center;
}
.card-produto img {
    width: 380px;
    /* height: 120px; */
    object-fit: contain;
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    filter: drop-shadow(4px 6px 8px rgba(0,0,0,0.6));  
}


.descicaoProduto
{
    padding-right: 20px;
    /* background-color: yellow; */
}


.card-produto h3 {
    margin-bottom: 8px;
    color: #000000;
    font-family: 'Montserrat', 'Roboto', 'Inter', Arial, sans-serif;
}
.card-produto p {
    text-align: center;
    color: #000000;
}
.produto-accordion {
    width: 100%;
    margin-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.25);
}
.accordion-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
    padding: 0;
}
.accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: transparent;
    border: none;
    color: #0f0f0f;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 16px 0;
    cursor: pointer;
    transition: color 0.25s ease;
}
.accordion-trigger:focus-visible {
    outline: 2px solid rgba(0, 0, 0, 0.45);
    outline-offset: 4px;
}
.accordion-trigger span:first-child {
    text-align: left;
}
.chevron {
    border: solid #0f0f0f;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 6px;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}
.accordion-item.active .chevron {
    transform: rotate(135deg);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.35s ease;
    opacity: 0;
    color: #1c1c1c;
    line-height: 1.5;
    padding: 0;
}
.accordion-item.active .accordion-content {
    padding: 12px 0 20px;
}
.btn-carrossel {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    width: 36px;
    height: 36px;
    cursor: pointer;
    font-size: 1.5rem;
    color: #3a3a3a;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-carrossel.anterior {
    left: 8px;
}
.btn-carrossel.proximo {
    right: 8px;
}
.indicadores-carrossel {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}
.indicador {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #b9b9b9;
    display: inline-block;
    cursor: pointer;
    transition: background 0.3s;
}
.indicador.ativo {
    background: #3a3a3a;
}

/* aqui esta a imagem desfilada em tiras - nigth training */
.imgNigth
{
    display: flex;
    justify-content: center;
}

.imgNigth img {
    width: 95%;
    height: auto;
    /* Adiciona uma sombra em cada traço da imagem */
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.95)) drop-shadow(-2px -2px 4px rgba(0,0,0,0.15));
    padding-bottom: 20px;
}


/* aqui sera o destaque com imagem-Raio */

.destaqueRaio
{
    margin-top: 0;
    width: 100vw;
    height: 80vh;
    min-height: 100vh;
    min-width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* background-color: pink; */


}

.textoDestaqueRaio
{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    font-family: 'Montserrat', 'Roboto', 'Inter', Arial, sans-serif;
    gap: 10px;
    

    /* background-color: pink; */
}

/* O problema de alinhamento e largura reduzida está relacionado ao uso de width: 100vw e max-width: 80vw em .imgRaio, e width: 100vh em .tabelaNutricional. 
   O uso de vw (viewport width) e vh (viewport height) pode causar barras de rolagem horizontais e limitar a largura do conteúdo, especialmente em telas menores ou quando há margens/paddings no body/html.
   Recomenda-se usar porcentagens relativas ao container pai ou valores máximos em px/rem para melhor responsividade e alinhamento. */

.imgRaio
{
    background-image: url(../image/night/raio-frutas.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    max-width: 800px;
    height: 60vh;
    max-height: 500px;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(4px 6px 8px rgba(0,0,0,0.6)); 

}

.tabelaNutricional
{
    display: none !important;
    /* background-image: url(../image/Nigth/tabelaNigth.png); */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    max-width: 600px;
    height: 60vh;
    max-height: 400px;
    margin: 32px auto 0 auto;
    display: block;
    filter: drop-shadow(4px 6px 8px rgba(0,0,0,0.6)); 
}


/* call to action - instagram*/

.instagram-chamada
{
    width: 100%;
    margin-top: 60px; /* Aumenta o espaçamento superior no mobile */
    /* height: 100vh; */
}  

.instagram-chamada-conteudo
{
    height: 100vh;
    display: flex;
    flex-direction: column; /* Alinha os elementos verticalmente */
    justify-content: center; /* Centraliza verticalmente */
    align-items: center;     /* Centraliza horizontalmente */
    /* background-color: green; */
    gap: 32px; /* Espaçamento entre os elementos */
    text-align: center; /* Garante que o texto fique centralizado */

    color: #000000;
}

/* Estilo limpo para o h2 da seção Instagram */
.instagram-chamada-conteudo h2 {
    font-family: 'Montserrat', 'Roboto', 'Inter', Arial, sans-serif;
    font-weight: bold;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: #000000;
    text-shadow: none; /* Remove qualquer sombra */
    letter-spacing: 0.05em;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    text-transform: uppercase; /* Padroniza com os títulos dos produtos */
}


.instagram-chamada-conteudoImg {
    width: 100%;       /* ou um valor fixo */
    height: 100%;     /* defina uma altura */
    background-image: url(../image/img-instagram.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent; /* remove o fundo branco */
}


/* Start of Selection */
/* ============================= */
/* SEÇÃO DE DEPOIMENTOS (MOBILE) */
/* ============================= */

.testimonials-section {
    position: relative;
    width: 100%;
    min-height:80vh;
    background: url('../image/bgDepoimentos.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 2rem 1rem;
}

/* Garantir que os elementos de fundo não interfiram */
.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.turbex-logo {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    z-index: 3;
}

.content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
}

.testimonials-carousel {
    position: relative;
    width: 100vw; /* Expande até as margens da tela */
    margin-left: calc(-50vw + 50%); /* Quebra o limite do container pai e expande */
    overflow: visible;
}

.section-title {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: white;
    margin: 0;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 0px 4px 8px rgba(0,0,0,0.6);
    letter-spacing: 2px;
    text-align: center;
    width: 100%;
    z-index: 10;
    padding: 0 2rem;
}

/* Título dos testimonials fora da seção */
.testimonials-title {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    font-size: 2rem;
    color: #000;
    margin: 3rem 0;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: none;
    letter-spacing: 0.05em;
    text-align: center;
    width: 100%;
    z-index: auto;
    padding: 0 2rem;
    background: transparent;
    font-family: 'Montserrat', 'Roboto', 'Inter', Arial, sans-serif;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden; /* Esconde cards que estão fora da viewport */
    z-index: 10;
}

.carousel-track {
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: max-content; /* Garante que o track tenha largura suficiente para todos os 16 cards */
    animation: scrollInfinite 40s linear infinite; /* Animação usando porcentagem relativa (-50%) */
    will-change: transform;
    z-index: 15;
}

.testimonial-card {
    flex: 0 0 300px;
    height: 300px;
    margin: 0 15px;
    background: rgba(255, 255, 255, 0.05); /* Aumentada transparência de 0.08 para 0.05 - mobile mais transparente */
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1); /* Borda ainda mais transparente */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 20;
    position: relative;
    opacity: 1;
    visibility: visible;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.10); /* Aumentada transparência no hover de 0.15 para 0.10 - mobile mais transparente */
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.profile-pic {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #ffd700;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
}

.profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-info {
    display: flex;
    flex-direction: column;
}

.client-name {
    font-weight: bold;
    font-size: 1.1rem;
    margin: 0;
    color: #000000;
    text-shadow: none;
}

.client-role {
    font-size: 0.8rem;
    color: #666;
}

.testimonial-text {
    font-size: 0.9rem;
    line-height: 1.5;
    font-style: italic;
    color: #000000;
    margin-bottom: 1rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rating {
    display: flex;
    gap: 0.2rem;
    justify-content: center;
}

.star {
    color: #ffd700;
    font-size: 1rem;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

/* ============================================
   ESTILO LIFESTYLE & RESULTADOS
   ============================================ */

/* Ajuste do card quando contém estrutura lifestyle */
.testimonial-card:has(.lifestyle-img-container) {
    padding: 0;
    align-items: stretch;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Container da Imagem dentro do Card */
.lifestyle-img-container {
    width: 100%;
    height: 100%;
    flex: 1;
    overflow: hidden;
    border-radius: 20px; /* Arredonda todo o card */
    margin-bottom: 0;
}

/* A Imagem em si */
.lifestyle-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que preencha sem distorcer */
    transition: transform 0.5s ease;
    border-radius: 20px; /* Bordas arredondadas */
}

/* Efeito Zoom Suave no Hover */
.testimonial-card:hover .lifestyle-img {
    transform: scale(1.1);
}

/* Ajuste do Texto abaixo da imagem */
.lifestyle-content {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03); /* Fundo ainda mais transparente para mobile */
    border-radius: 0 0 20px 20px; /* Arredonda embaixo, seguindo o border-radius do card */
    text-align: left; /* Texto alinhado à esquerda fica mais moderno */
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lifestyle-title {
    color: #FFD700;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.lifestyle-text {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
    margin-bottom: 10px;
}

.lifestyle-role {
    color: #FFD700;
    font-size: 0.85rem;
    font-weight: 600;
    font-style: italic;
    margin-top: 8px;
    opacity: 0.9;
}

@keyframes scrollInfinite {
    0% {
        /* Começa com o primeiro card original encostado na esquerda */
        transform: translateX(0);
    }
    100% {
        /* Move exatamente metade da trilha (o tamanho dos 8 cards originais) */
        /* Quando chega aqui, o card 1 do clone está na posição exata onde o card 1 original começou */
        transform: translateX(-50%);
    }
}

.carousel-container:hover .carousel-track {
    animation-play-state: paused;
}
/* End of Selection */
  


/* Seção Turbex Business - Representantes (CSS Isolado com #representante) */

/* Container Principal Isolado */
#representante {
    background-color: #050505;
    color: #ffffff;
    padding: 5rem 1rem;
    border-top: 1px solid #222;
    position: relative;
    z-index: 1;
    margin-top: 4rem; /* Espaço entre Instagram e Representantes */
}

#representante .biz-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

/* Tipografia Específica desta Seção - Sans-serif Bold */
#representante .biz-title {
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: #fff;
    font-family: 'Montserrat', 'Roboto', 'Inter', Arial, sans-serif;
}

#representante .biz-text {
    color: #a0a0a0;
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 90%;
    font-family: 'Montserrat', 'Roboto', 'Inter', Arial, sans-serif;
}

/* Lista Isolada */
#representante .biz-list {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
}

#representante .biz-list li {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    background: rgba(255,255,255,0.03);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
}

#representante .biz-icon {
    color: #000;
    background: #FFD700;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1rem;
    flex-shrink: 0;
}

#representante .biz-list strong {
    display: block;
    font-size: 1.1rem;
    color: #fff;
    font-family: 'Montserrat', 'Roboto', 'Inter', Arial, sans-serif;
    font-weight: 700;
}

#representante .biz-list small {
    display: block;
    color: #888;
    font-size: 0.9rem;
    font-family: 'Montserrat', 'Roboto', 'Inter', Arial, sans-serif;
}

/* Botão Específico */
#representante .biz-btn {
    display: inline-block;
    background: #FFD700;
    color: #000;
    padding: 18px 36px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    text-transform: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    border: none;
    font-family: 'Montserrat', 'Roboto', 'Inter', Arial, sans-serif;
}

#representante .biz-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
    background: #ffdb1a;
}

/* Área de Imagem */
#representante .biz-image-area {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

#representante .biz-picture {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

#representante .biz-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #333;
    display: block;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

/* Overlay gradiente dourado no hover */
#representante .biz-picture::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0) 0%, rgba(255, 215, 0, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 12px;
    z-index: 2;
    pointer-events: none;
}

/* Efeito de brilho que se move */
#representante .biz-picture::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 215, 0, 0.1) 50%,
        transparent 70%
    );
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.8s ease;
    z-index: 3;
    pointer-events: none;
}

/* Hover Effects */
#representante .biz-image-area:hover .biz-image {
    transform: scale(1.08);
    border-color: #FFD700;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.4),
                0 0 40px rgba(255, 215, 0, 0.2);
}

#representante .biz-image-area:hover .biz-picture::before {
    opacity: 1;
}

#representante .biz-image-area:hover .biz-picture::after {
    transform: rotate(45deg) translateX(100%);
}

/* Tablets e Notebooks - Evitar que menu lateral tampe o conteúdo */
@media (min-width: 502px) and (max-width: 1400px) {
    #representante {
        padding-left: 80px; /* Espaço para o menu lateral fixo (60px + margem) */
    }
}

/* Mobile */
@media (max-width: 768px) {
    #representante { padding: 3rem 1.5rem; }
    #representante .biz-container { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
    #representante .biz-title { font-size: 2rem; }
    #representante .biz-text { margin: 0 auto 2rem auto; }
    #representante .biz-list li { text-align: left; }
    #representante .biz-btn { width: 100%; display: block; }
    #representante .biz-image { height: 300px; }
}

/* MOBILE - Área de ícones (evitar cortar nas laterais) */
@media (max-width: 768px) {
    .areaIcones {
        padding-left: 24px !important;
        padding-right: 24px !important;
        box-sizing: border-box;
    }

    .areaIcones > div {
        width: 100% !important;
        max-width: 520px;
        margin-left: auto !important;
        margin-right: auto !important;
        flex-wrap: wrap;
        gap: 24px !important;
        box-sizing: border-box;
    }
}

/* Footer */

/* ===================================================== */
/* FOOTER - MOBILE (do zero) */
/* ===================================================== */
@media (max-width: 768px) {
    .site-footer {
        background: #050505;
        color: #ffffff;
        padding: 2rem 1.25rem 5.5rem 1.25rem; /* espaço pro botão flutuante */
        font-family: 'Montserrat', 'Roboto', 'Inter', Arial, sans-serif;
    }

    .site-footer .footer-container {
        width: 100%;
        max-width: 560px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 1.75rem;
    }

    .site-footer .footer-col {
        width: 100%;
    }

    /* Brand */
    .site-footer .footer-col.brand-col {
        text-align: center;
    }

    .site-footer .footer-logo {
        display: block;
        width: min(200px, 70%);
        height: auto;
        margin: 0 auto 0.75rem auto;
    }

    .site-footer .footer-slogan {
        margin: 0;
        font-size: 0.95rem;
        line-height: 1.45;
        color: rgba(255, 255, 255, 0.78);
    }

    /* No mobile, usamos os ícones do bloco dedicado */
    .site-footer .footer-col.brand-col .social-links {
        display: none;
    }

    /* Links (navegação + institucional) */
    /* Ocultar coluna "Institucional" no mobile */
    .site-footer .footer-col.links-col.institucional-col {
        display: none;
    }

    .site-footer .footer-col.links-col h4 {
        margin: 0 0 0.75rem 0;
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        color: #ffffff;
    }

    .site-footer .footer-col.links-col ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem 1rem;
    }

    .site-footer .footer-col.links-col ul li {
        margin: 0;
    }

    .site-footer .footer-col.links-col ul li a {
        color: rgba(255, 255, 255, 0.88);
        text-decoration: none;
        font-size: 0.95rem;
        line-height: 1.3;
        display: block;
        padding: 0.35rem 0;
    }

    .site-footer .footer-col.links-col ul li a:active,
    .site-footer .footer-col.links-col ul li a:focus,
    .site-footer .footer-col.links-col ul li a:hover {
        color: #FFD700;
    }

    /* Contato */
    .site-footer .footer-col.contact-col h4 {
        margin: 0 0 0.75rem 0;
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        color: #ffffff;
    }

    .site-footer .footer-col.contact-col .contact-list {
        list-style: none;
        padding: 0;
        margin: 0 0 1rem 0;
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
        color: rgba(255, 255, 255, 0.78);
        font-size: 0.95rem;
        line-height: 1.35;
    }

    .site-footer .footer-col.contact-col .contact-list li a {
        color: rgba(255, 255, 255, 0.78);
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        transition: color 0.2s ease;
        cursor: pointer;
    }

    .site-footer .footer-col.contact-col .contact-list li a:hover {
        color: #FFD700;
    }

    .site-footer .footer-col.contact-col .contact-list li i {
        color: #FFD700;
        margin-right: 0.5rem;
    }

    .site-footer .footer-col.contact-col .btn-footer-zap {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        width: 100%;
        padding: 0.9rem 1rem;
        border-radius: 12px;
        background: #25D366;
        color: #06130b;
        font-weight: 700;
        text-decoration: none;
        box-shadow: 0 10px 24px rgba(37, 211, 102, 0.25);
    }

    /* Social (mobile) */
    .site-footer .footer-social-mobile {
        display: flex;
        justify-content: center;
    }

    .site-footer .footer-social-mobile .social-links {
        display: flex;
        gap: 0.75rem;
    }

    .site-footer .footer-social-mobile .social-links a {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #ffffff;
        border: 1px solid rgba(255, 255, 255, 0.18);
        background: rgba(255, 255, 255, 0.06);
    }

    .site-footer .footer-social-mobile .social-links a:active,
    .site-footer .footer-social-mobile .social-links a:hover {
        border-color: rgba(255, 215, 0, 0.5);
        color: #FFD700;
    }

    /* Footer bottom */
    .site-footer .footer-bottom {
        margin-top: 0.25rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 0.35rem;
    }

    .site-footer .footer-bottom p {
        margin: 0;
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.7);
    }

    /* WhatsApp flutuante (mobile) */
    .site-footer .btn-whatsapp-float {
        position: fixed;
        right: 16px;
        bottom: 16px;
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: #25D366;
        color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
        z-index: 9999;
    }

    .site-footer .btn-whatsapp-float i {
        font-size: 1.6rem;
    }
}


/* =========================================== */
/* SEÇÃO DE PRODUTOS PREMIUM - LAYOUT NETFLIX */
/* =========================================== */

.produtos-section {
    width: 100%;
    padding: 4rem 1rem;
    margin: 2rem 0;
    /* margin-left: 15%; */
}

.produtos-container {
    max-width: 4000px;
    margin: 0 auto;
}

.produtos-titulo {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: bold;
    color: #000000;
    margin-bottom: 3rem;
    font-family: 'Montserrat', 'Roboto', 'Inter', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Container de Categoria */
.categoria-produtos {
    margin-bottom: 3rem;
}

.categoria-titulo {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: bold;
    color: #000000;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    font-family: 'Montserrat', 'Roboto', 'Inter', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Wrapper para botões de navegação */
.produtos-row-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

/* Botões de Navegação */
.btn-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #333333;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001; /* Acima do menu lateral fixo (z-index: 10000) */
    transition: all 0.3s ease;
    opacity: 0.8;
    pointer-events: all;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.produtos-row-wrapper:hover .btn-nav {
    opacity: 1;
}

.btn-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-color: rgba(255, 255, 255, 0.5);
    color: #000000;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.btn-nav-prev {
    left: 10px;
}

.btn-nav-next {
    right: 10px;
}

/* Linha de Produtos - Carrossel Horizontal Infinito (Estilo Netflix) */
.produtos-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    gap: 20px;
    align-items: flex-start;
    padding: 0 3rem 1rem 3rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE e Edge */
    flex: 1;
}

.produtos-row::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Card de Produto Premium */
.produto-card {
    background: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #333;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    width: 300px;
    min-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    scroll-snap-align: center;
}

.produto-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
    border-color: #555;
}

/* Container da Imagem */
.produto-imagem-container {
    position: relative;
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    overflow: visible;
    border-radius: 8px;
    background: #ffffff;
    padding: 10px;
}

.produto-imagem {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5)) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.produto-card:hover .produto-imagem {
    transform: scale(1.05);
}

/* Informações do Produto */
.produto-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-grow: 1;
}

.produto-categoria {
    font-size: 0.85rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    font-family: 'Montserrat', 'Roboto', 'Inter', Arial, sans-serif; /* Fonte sans-serif */
}

.produto-nome {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    margin: 0;
    font-family: 'Montserrat', 'Roboto', 'Inter', Arial, sans-serif; /* Fonte sans-serif */
}

.produto-subtitulo {
    font-size: 0.9rem;
    color: #999;
    line-height: 1.5;
    margin: 0.5rem 0 0 0;
    font-style: italic;
    font-family: 'Montserrat', 'Roboto', 'Inter', Arial, sans-serif; /* Fonte sans-serif */
}

.produto-descricao-curta {
    font-size: 1rem;
    color: #999;
    line-height: 1.5;
    margin: 0.5rem 0 0 0;
    font-family: 'Montserrat', 'Roboto', 'Inter', Arial, sans-serif; /* Fonte sans-serif */
    /* font-style: italic; */
}

/* Accordion de Detalhes - Estilo transferido do botão "Eu Quero" */
.produto-accordion {
    width: 100%;
    margin-top: 1.5rem;
}

.accordion-item {
    border-bottom: none;
    padding: 0;
}

.accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 1rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #EBC447, #d5a001);
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    font-family: 'Montserrat', 'Roboto', 'Inter', Arial, sans-serif; /* Fonte sans-serif */
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(235, 196, 71, 0.3);
}

.accordion-trigger:hover {
    background: linear-gradient(135deg, #d5a001, #EBC447);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(235, 196, 71, 0.5);
}

.accordion-trigger:active {
    transform: translateY(0);
}

.accordion-trigger:focus-visible {
    outline: 2px solid rgba(235, 196, 71, 0.5);
    outline-offset: 4px;
    border-radius: 8px;
}

.accordion-trigger span:first-child {
    text-align: left;
    flex: 1;
}

.chevron {
    border: solid #000;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 6px;
    transform: rotate(-45deg);
    transition: transform 0.3s ease, border-color 0.3s ease;
    flex-shrink: 0;
}

.accordion-item.active .chevron {
    transform: rotate(135deg);
    border-color: #000;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.35s ease;
    opacity: 0;
    color: #ccc;
    line-height: 1.6;
    padding: 0;
}

.accordion-item.active .accordion-content {
    padding: 1rem 0 1.5rem;
    opacity: 1;
}

/* Detalhes do Produto */
.produto-detalhes {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detalhe-secao h4 {
    color: #EBC447;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Montserrat', 'Roboto', 'Inter', Arial, sans-serif; /* Fonte sans-serif */
}

.detalhe-secao p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
    font-family: 'Montserrat', 'Roboto', 'Inter', Arial, sans-serif; /* Fonte sans-serif */
}

/* Tabela Nutricional */
.tabela-nutricional {
    overflow-x: auto;
    margin-top: 0.5rem;
}

.tabela-nutricional table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
    color: #ccc;
    font-family: 'Montserrat', 'Roboto', 'Inter', Arial, sans-serif; /* Fonte sans-serif */
}

.tabela-nutricional th,
.tabela-nutricional td {
    padding: 0.5rem;
    text-align: left;
    border-bottom: 1px solid #333;
    font-family: 'Montserrat', 'Roboto', 'Inter', Arial, sans-serif; /* Fonte sans-serif */
}

.tabela-nutricional th {
    color: #EBC447;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-family: 'Montserrat', 'Roboto', 'Inter', Arial, sans-serif; /* Fonte sans-serif */
}

.tabela-nutricional tr:last-child td {
    border-bottom: none;
}

/* Lista de Benefícios */
.lista-beneficios {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
}

.lista-beneficios li {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.8;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', 'Roboto', 'Inter', Arial, sans-serif; /* Fonte sans-serif */
}

.lista-beneficios li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #EBC447;
    font-weight: bold;
    font-size: 1rem;
}

/* Nota da Tabela */
.nota-tabela {
    font-size: 0.75rem;
    color: #999;
    font-style: italic;
    margin-top: 0.5rem;
    margin-bottom: 0;
    font-family: 'Montserrat', 'Roboto', 'Inter', Arial, sans-serif; /* Fonte sans-serif */
}

/* Aviso Legal */
.aviso-legal {
    font-size: 0.85rem;
    color: #EBC447;
    font-weight: 600;
    margin-top: 0.75rem;
    margin-bottom: 0;
    font-family: 'Montserrat', 'Roboto', 'Inter', Arial, sans-serif; /* Fonte sans-serif */
}

/* Texto de Ingredientes */
.texto-ingredientes {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
    font-family: 'Montserrat', 'Roboto', 'Inter', Arial, sans-serif; /* Fonte sans-serif */
}

/* ============================= */
/* SLIDESHOW AUTOMÁTICO PRODUTOS */
/* ============================= */

/* Container relativo para segurar as imagens absolutas */
.slideshow-container {
    position: relative;
    overflow: hidden;
    /* Garante que o container tenha a altura do design do card (ajuste se necessário) */
    height: 300px; 
    width: 100%;
}

/* Estilo base para todas as imagens do slide */
.img-slide {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%); /* Centraliza horizontalmente */
    width: auto;
    height: 100%; /* Ocupa toda a altura do container */
    object-fit: contain; /* Garante que a imagem não distorça */
    opacity: 0; /* Começam invisíveis */
    transition: opacity 0.5s ease-in-out;
    pointer-events: none; /* Permite clicar no container pai */
}

/* A primeira imagem é visível por padrão quando não há interação */
.img-slide.slide-1 {
    opacity: 1;
    z-index: 10;
}

/* KEYFRAMES PARA O LOOP (Total 6 segundos: 2s visível + transições) */
@keyframes slideshowFade {
    0% { opacity: 0; z-index: 1; }
    8.33%, 33.33% { opacity: 1; z-index: 20; } /* Aparece rápido e fica */
    41.67%, 100% { opacity: 0; z-index: 1; } /* Some e fica invisível */
}

/* LÓGICA DE ATIVAÇÃO (Hover Desktop OU Classe .active no Mobile) */
/* Slide 1 */
.produto-card:hover .slide-1, .slideshow-container.active .slide-1 {
    animation: slideshowFade 6s infinite;
    animation-delay: 0s;
}
/* Slide 2 (Começa após 2s) */
.produto-card:hover .slide-2, .slideshow-container.active .slide-2 {
    animation: slideshowFade 6s infinite;
    animation-delay: 2s;
}
/* Slide 3 (Começa após 4s) */
.produto-card:hover .slide-3, .slideshow-container.active .slide-3 {
    animation: slideshowFade 6s infinite;
    animation-delay: 4s;
}

/* PAUSAR ANIMAÇÃO QUANDO CLICAR */
.slideshow-container.paused .slide-1,
.slideshow-container.paused .slide-2,
.slideshow-container.paused .slide-3 {
    animation-play-state: paused;
}

/* =========================================== */
/* REGRAS MOBILE - PRODUTOS (Mobile First) */
/* =========================================== */

@media (max-width: 768px) {
  .categoria-titulo {
    padding-left: 1rem;
    margin-bottom: 1rem;
  }

  .produtos-row {
    padding: 0 1rem 1rem 1rem;
    position: relative;
  }

  /* Gradiente no final do carrossel para indicar mais conteúdo - REMOVIDO */
  .produtos-row::after {
    display: none;
  }

  /* Esconde o gradiente quando está no final do scroll */
  .produtos-row.scrolled-to-end::after {
    display: none;
  }

  /* Botões de navegação visíveis no mobile com estilo destacado */
  .btn-nav {
    display: flex !important; /* Mostra os botões no mobile */
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #333333;
    font-size: 1.1rem;
    opacity: 1 !important; /* Sempre visível no mobile */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 15;
  }

  .btn-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-color: rgba(255, 255, 255, 0.5);
    color: #000000;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .btn-nav-prev {
    left: 5px;
  }

  .btn-nav-next {
    right: 5px;
  }

  /* Indicador de "Arraste para ver mais" */
  .produtos-row-wrapper::after {
    content: '← Deslize para ver mais →';
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: #FFD700;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
    opacity: 0.9;
    pointer-events: none;
    z-index: 10;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    animation: pulseIndicator 2s ease-in-out infinite;
  }

  /* Animação sutil para o indicador */
  @keyframes pulseIndicator {
    0%, 100% {
      opacity: 0.7;
      transform: translateX(-50%) translateY(0);
    }
    50% {
      opacity: 1;
      transform: translateX(-50%) translateY(-3px);
    }
  }

  /* Esconde o indicador quando não há mais conteúdo para rolar */
  .produtos-row-wrapper.no-more-content::after {
    display: none;
  }

  .produto-card {
    width: 85vw;
    min-width: 85vw;
    padding: 1.5rem;
  }

  .produto-imagem-container {
    height: 250px;
    overflow: visible;
    padding: 10px;
  }

  .produto-nome {
    font-size: 1.25rem;
  }
}

/* =========================================== */
/* SEÇÃO DE DESTAQUES - EFEITO CONTRASTE */
/* Alterna entre preto e cinza */
/* =========================================== */

/* Efeito de contraste animado nos ícones */
.areaIcones > div > div i {
    animation: contrasteIcone 10s ease-in-out infinite;
    transition: filter 0.3s ease;
}

/* Efeito de contraste animado nos textos */
.areaIcones > div > div span {
    animation: contrasteTexto 10s ease-in-out infinite;
    transition: text-shadow 0.3s ease;
}
 
/* Animação de contraste na cor do ícone (preto ↔ cinza) */
@keyframes contrasteIcone {
    0% {
        color: #00112d;
        filter: drop-shadow(0 0 0px rgba(0, 0, 0, 0));
    }
    50% {
        color: #818181;
        filter: drop-shadow(0 0 6px rgba(128, 128, 128, 0.5));
    }
    100% {
        color: #c9ab03;
        filter: drop-shadow(0 0 0px rgba(0, 0, 0, 0));
    }
}

/* Animação de contraste na cor do texto (preto ↔ cinza) */
@keyframes contrasteTexto {
    0% {
        color: #c9ab03;
        text-shadow: 0 0 0px rgba(0, 0, 0, 0);
    }
    50% {
        color: #818181;
        text-shadow: 0 0 4px rgba(128, 128, 128, 0.5);
    }
    100% {
        color: #00112d;
        text-shadow: 0 0 0px rgba(0, 0, 0, 0);
    }
}

/* Efeito no hover - mantém contraste */
.areaIcones > div > div:hover i {
    filter: drop-shadow(0 0 8px rgba(128, 128, 128, 0.7));
}

.areaIcones > div > div:hover span {
    text-shadow: 0 0 6px rgba(128, 128, 128, 0.7);
}


