/* PALETA OFICIAL NUTRISCIENCE */
:root {
    --nutri-red: #354584;      /* Vermelho Logo - Energia e Ação */
    --nutri-gold: #328bf0;     /* Dourado Rótulo - Premium / Especialista */
    --nutri-light-1: #f4e7bc;  /* Auxiliar Verde Água bem leve */
    --nutri-light-2: #fffae9;  /* Auxiliar Creme/Pêssego leve */
    --nutri-text: #2d3436;     /* Cor de texto para leitura */
}

body {
    background-color: #d6f4ff !important;
}
.section-nutriscience {
  background-color: ##8ebd5; /* Cor base off-white */
  background-image:
  /* Blob de luz da esquerda (suave peach) */ radial-gradient(circle at 15% 50%, #b69c50 0%, #f5dec7 40%), /* Blob de luz da direita (suave peach) */ radial-gradient(circle at 85% 50%, #7d6829 0%, #f5dec7 70%), /* Base dourada no topo central */ radial-gradient(ellipse at 50% 0%, #f4e7bc 0%, #e9d1ba 75%);
  background-blend-mode: hard-light; /* Mistura as luzes */
  min-height: 100vh; /* Para garantir que preencha a section */
}

.section-nutriscience-clean {
  background-color: #ffffff; /* Base branca pura */
  background-image:
    /* Apenas um toque de luz dourada suave no topo central */
    radial-gradient(ellipse at 50% 0%, #f2e1c3 0%, #ffffff 85%);
  background-blend-mode: soft-light; /* Mistura ainda mais sutil */
  min-height: 100vh;
}

.section-nutriscience-deep {
  background-color: #fffae9; /* Base creme */
  background-image:
    /* Dourado mais intenso na esquerda */
    radial-gradient(circle at 10% 50%, #e0c598 0%, #fffae9 75%),
    /* Dourado mais intenso na direita */
    radial-gradient(circle at 90% 50%, #e0c598 0%, #fffae9 75%),
    /* Base creme no topo central para clarear */
    radial-gradient(ellipse at 50% 0%, #ffffff 0%, #fffae9 70%);
  background-blend-mode: normal; /* Mistura padrão */
  
}

.section-nutri-beneficios {
    background-color: var(--nutri-light-2); /* Usando o fundo creme suave */
    padding: 70px 0;
}

.card-beneficio {
    padding: 30px 20px !important;
    border-radius: 20px !important;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent !important; /* Invisível até o hover */
    background: #fff !important;
    box-shadow: 0 4px 15px rgba(225, 17, 25, 0.05) !important;
}

.card-beneficio:hover {
    transform: translateY(-8px);
    border-color: var(--nutri-gold) !important; /* Borda dourada no foco */
    box-shadow: 0 12px 30px rgba(235, 188, 44, 0.15) !important;
}

.icon-circle {
    width: 65px;
    height: 65px;
    background-color: var(--nutri-light-1); /* Fundo verdinho leve */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-circle i {
    color: var(--nutri-red); /* Ícone em vermelho para destaque */
    font-size: 32px;
}

.titulo-beneficio {
    color: var(--nutri-red);
    font-weight: 800;
    font-size: 1.15rem;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.texto-beneficio {
    color: var(--nutri-text);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ESTRUTURA ÓRBITA NUTRISCIENCE */
.nutri-vortex-section {
    background-color: var(--nutri-light-2);
    padding: 80px 0;
    overflow: hidden;
}


.nutri-item {
    background: #fff; /* Fundo branco fixo */
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); /* Transição suave */
    border: 2px solid transparent; /* Borda invisível por padrão */
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    position: relative;
    cursor: default;
}

/* O EFEITO QUE VOCÊ GOSTOU: UP + BORDA */
.nutri-item:hover {
    transform: translateY(-10px); /* Efeito de subir */
    border-color: var(--nutri-gold); /* A borda dourada aparece */
    box-shadow: 0 15px 30px rgba(235, 188, 44, 0.2); /* Sombra dourada leve */
}

/* Alinhamento dos itens */
.item-left { text-align: right; flex-direction: row-reverse; }
.item-right { text-align: left; flex-direction: row; }

.nutri-icon {
    min-width: 50px;
    height: 50px;
    background-color: var(--nutri-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.nutri-item:hover .nutri-icon {
    transform: scale(1.1) rotate(5deg); /* Ícone dá uma vibrada no hover */
}

.item-left .nutri-icon { margin-left: 15px; }
.item-right .nutri-icon { margin-right: 15px; }

.nutri-icon i { color: #ffffff; font-size: 24px; }

.nutri-item h4 {
    color: var(--nutri-red);
    font-weight: 800;
    font-size: 1.35rem;
    margin: 0 0 5px 0;
}

.nutri-item p { color: #283d47; font-size: 1rem; margin: 0; line-height: 1.4; }

/* Mantém o frasco com o efeito de flutuar */
.bottle-container img { 
    max-width: 100%; 
    height: auto; 
    filter: drop-shadow(0 20px 35px rgba(0,0,0,0.1));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Centralização do Frasco */
.bottle-container { display: flex; align-items: center; justify-content: center; height: 100%; }
.bottle-container img { 
    max-width: 100%; 
    height: auto; 
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.15));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* AJUSTE MOBILE */
@media (max-width: 992px) {
    .item-left, .item-right { 
        text-align: center; 
        flex-direction: column !important; 
        margin-bottom: 30px;
    }
    .item-left .nutri-icon, .item-right .nutri-icon { margin: 0 0 15px 0; }
    .bottle-container { margin: 40px 0; }

    
}

/* ==========================================
   FAÇANHA MACGYVER: BOTÃO PROTEINCOLLA ELITE
   - Estilo Nutriscience: Vermelho e Dourado
   - Efeito de Deslize e Micro-animação
   ========================================== */

.btn-nutri-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* Gradiente Vermelho Nutriscience */
    background-image: linear-gradient(263deg, #354584 16%, #b00e14 99%);
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    text-transform: uppercase; /* Deixa mais imponente */
    font-size: 18px;
    letter-spacing: 1px;
    height: 62px;
    padding: 0 45px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
    /* Sombra em tom de vermelho */
    box-shadow: 0 10px 30px rgba(225, 17, 25, 0.35);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* O Ícone de Seta Material Icon 'east' */
.btn-nutri-premium i {
    font-size: 20px;
    margin-left: 12px;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    vertical-align: middle;
}

/* ==============================================
   O EFEITO DE DESLIZE (THE SWEEP) - AGORA DOURADO
   ============================================== */
.btn-nutri-premium::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%; 
    height: 100%;
    
    /* Gradiente de Hover: Transição do Dourado para um Vermelho mais vivo */
    background-image: linear-gradient(263deg, #ebbc2c 0%, #354584 100%);
    
    transition: width 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: -1;
}

/* ==============================================
   A MICRO-ANIMAÇÃO DO HOVER
   ============================================== */
.btn-nutri-premium:hover {
    transform: translateY(-7px); /* Levanta um pouco mais para dar destaque */
    color: #ffffff !important;
    /* A sombra muda para um tom mais quente no hover */
    box-shadow: 0 15px 40px rgba(235, 188, 44, 0.3); 
}

/* O fundo preenche da esquerda para a direita */
.btn-nutri-premium:hover::before {
    width: 100%;
}

/* A seta dá o "passinho" convidando ao clique */
.btn-nutri-premium:hover i {
    transform: translateX(8px);
}

/* ESTRUTURA DE HEADLINES NUTRISCIENCE */
.nutri-header-container {
    padding-bottom: 40px;
    text-align: center;
}

.nutri-main-title {
    color: var(--nutri-red);
    font-weight: 900;
    font-size: 2.8rem; /* Ajuste conforme o gosto */
    margin-bottom: 15px;
    line-height: 1.1;
    
}


h3 {
    font-weight: 900 !important;
    font-size: 2.5rem !important; /* Ajuste conforme o gosto */
    margin: 10px !important;
    line-height: 1 !important;

}

.nutri-sub-title {
    color: var(--nutri-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin: 0 auto;
    line-height: 1.6;
    
    /* Ajuste de Largura Solicitado * /
    width: 80%;  Desktop */
}

.nutri-divider {
    width: 70px;
    height: 5px;
    background: var(--nutri-gold);
    margin: 25px auto;
    border-radius: 5px;
}

/* RESPONSIVIDADE HEADLINES */
@media (max-width: 992px) {
    .nutri-main-title {
        font-size: 2rem;
    }
    .nutri-sub-title {
        width: 95%; /* Mobile um pouco mais largo para não quebrar tanto */
        font-size: 0.9rem;
    }
}


/* SEÇÃO DE INGREDIENTES 4x2 - FOCO TOTAL */
.section-ingredients-red {
    background-color: rgb(188,24,24);
    padding: 80px 0;
}

.ingredient-card-dark {
    background: #ca202699 !important; /* Vermelho escuro para destacar o branco */
    border: 2px solid var(--nutri-light-1);
    border-radius: 15px;
    padding: 25px 15px;
    margin-bottom: 30px;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.ingredient-card-dark:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(235, 188, 44, 0.3);
    border-width: 2px;
}

.ingredient-img-white {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    display: block;
    object-fit: contain;
}

.ingredient-card-dark h4 {
    color: var(--nutri-light-2) !important;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.ingredient-card-dark p {
    color: #fffae9 !important;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* CARD HORIZONTAL (EXCLUSIVO PARA OS 2 DE BAIXO) */
.ingredient-card-horizontal {
    background: #ca202699 !important;
    border: 2px solid var(--nutri-light-1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    height: 100%;
    display: flex; /* Mágica do alinhamento */
    align-items: center;
    transition: all 0.4s ease;
    text-align: left; /* Alinhamento à esquerda */
}

.ingredient-card-horizontal:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(235, 188, 44, 0.3);
    border-width: 2px;
}

.ingredient-horizontal-img {
    width: 100px;
    height: 100px;
    margin-right: 25px; /* Espaço entre imagem e texto */
    object-fit: contain;
    flex-shrink: 0; /* Impede a imagem de amassar */
}

.ingredient-card-horizontal h4 {
    color: var(--nutri-light-2) !important;
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.ingredient-card-horizontal p {
    color: #fffae9 !important;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* AJUSTE MOBILE: No celular, volta a ser um embaixo do outro para não espremer */
@media (max-width: 600px) {
    .ingredient-card-horizontal {
        flex-direction: column;
        text-align: center;
    }
    .ingredient-horizontal-img {
        margin: 0 0 20px 0;
    }
}

/* VARIANTE DO BOTÃO: DOURADO (Para fundo vermelho) */
.btn-nutri-gold {
    background-image: linear-gradient(263deg, #ebbc2c 16%, #d4a726 99%) !important;
    color: var(--nutri-red) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

.btn-nutri-gold::before {
    background-image: linear-gradient(263deg, #fff 0%, #ebbc2c 100%) !important;
}

.btn-nutri-gold:hover {
    color: var(--nutri-red) !important;
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2) !important;
}

/* ==========================================
   SISTEMA DE SHAPES NUTRISCIENCE (VERSÃO SÓBRIA)
   ========================================== */

.nutri-shapes-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

/* Os Blobs agora funcionam como gradientes de canto */
.nutri-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px); /* Aumentei o blur para ficar mais suave */
    opacity: 0.3;
    z-index: 1;
}

/* VARIAÇÃO PARA DOBRA VERMELHA - Gradiente Lateral Escuro */
.bg-red-shapes .nutri-blob { 
    background-color: #5f0a0d; /* Um vermelho bem profundo */
}
.bg-red-shapes .shape-1 { width: 600px; height: 600px; top: -200px; right: -250px; }
.bg-red-shapes .shape-2 { width: 500px; height: 500px; bottom: -150px; left: -200px; }

/* VARIAÇÃO PARA DOBRA CREME - Gradiente Lateral Dourado Suave */
.bg-light-shapes .nutri-blob { 
    background-color: var(--nutri-gold); 
    opacity: 0.12; 
}
.bg-light-shapes .shape-1 { width: 600px; height: 600px; top: -200px; left: -250px; }
.bg-light-shapes .shape-2 { width: 500px; height: 500px; bottom: -150px; right: -200px; }



/* ==========================================
   HERO WHATSTV - ADAPTADA PARA NUTRISCIENCE (MANTENDO CLASSES ORIGINAIS)
   ========================================== */
.hero-whatstv {
    padding-top: 5px; /* Reduzi o topo global para ajudar no mobile e desktop */
    /*padding-bottom: 60px; 
    background-color: #fffae9; /* Fundo Creme Nutriscience */
}

.hero-whatstv-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.hero-whatstv-logo {
    text-align: left;
    margin-bottom: 20px;
}

.hero-whatstv-logo img {
    max-width: 250px; /* Levemente maior para a logo da Nutri */
}

.hero-whatstv-text {
    text-align: left;
    padding-right: 20px; /* Dá um respiro para não grudar no vídeo */
}

.hero-whatstv-text h1 {
    font-weight: 900;
    font-size: 2.6rem; 
    line-height: 1.2;
    margin-bottom: 40px;
    color: #344d73; 
}

/* O TEXTO EM DESTAQUE NA COR DA NUTRISCIENCE */
.hero-whatstv-text h1 span {
    color: #354584; /* Vermelho Nutriscience! */
}

.hero-whatstv-text h2 {
    font-size: 1.25rem;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #546e7a; 
    line-height: 1.2;
    margin: 0.373333rem 0 1.424rem 0;
}

.hero-whatstv-text h2 b, .hero-whatstv-text h2 strong {
    color: #354584; 
}

.hero-whatstv-btn-row {
    margin-left: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

/* --- BOTÃO PRINCIPAL (CTA) COM O DEGRADÊ VERMELHO --- */
.btn-whatstv, .btn-whatstv-infine, .btn-nutri-premium {
    border-radius: 50px;
    padding: 0 35px;
    height: 60px;
    line-height: 60px;
    font-weight: 900;
    font-size: 1.1rem;
    background-color: transparent;
    background-image: linear-gradient(263deg, #354584 16%, #b00e14 99%); 
    color: #ffffff !important;
    box-shadow: 0 10px 30px rgba(225, 17, 25, 0.3); 
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    border: none;
    text-transform: uppercase;
}

.btn-whatstv:hover, .btn-whatstv-infine:hover, .btn-nutri-premium:hover {
    background-image: linear-gradient(263deg, #b00e14 16%, #8a0b0f 99%);
    box-shadow: 0 15px 40px rgba(225, 17, 25, 0.5);
    transform: translateY(-4px); 
}

.btn-whatstv i.left, .btn-whatstv-infine i.left {
    margin-right: 10px;
}


/* ==========================================
   DISCLAIMER / SELOS (Horizontal & Compacto)
   ========================================== */
.pricing-disclaimer-nutri {
    display: flex;
    flex-direction: row; /* Alinha em linha */
    justify-content: center; /* Centraliza no card */
    align-items: center;
    flex-wrap: wrap; /* Quebra linha no mobile se necessário */
    gap: 10px; /* Espaço entre os selos */
    
    margin-top: 15px;
    padding: 10px;
    font-size: 0.8rem; /* Fonte levemente menor para garantir o alinhamento */
    color: #546e7a;
    background: #fffae96b;
    border-radius: 12px;
    border: 1px dashed var(--nutri-gold);
    text-align: center;
}

/* Ajuste dos itens internos (divs ou spans que envolvem ícone+texto) */
.pricing-disclaimer-nutri span, 
.pricing-disclaimer-nutri div {
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap; /* Garante que o texto de um selo não quebre sozinho */
}

/* Ícones Dourados */
.pricing-disclaimer-nutri i {
    font-size: 1.1rem;
    color: #ebbc2c; /* Cor Gold da Nutri */
    vertical-align: middle;
}

/* ==========================================
   AJUSTE DISCLAIMER - PRIMEIRA DOBRA (HERO)
   ========================================== */
.hero-disclaimer-fix {
    display: flex; /* Faz a caixa encolher e abraçar o conteúdo */
    justify-content: flex-start; /* Alinha tudo à esquerda, acompanhando o botão */
    padding: 10px 20px; /* Deixa a caixinha mais elegante e enxuta */
    margin-top: 15px;
}

/* No celular, a gente devolve pro centro para ficar bonito na tela pequena */
@media only screen and (max-width: 600px) {
    .hero-disclaimer-fix {
        display: flex;
        justify-content: center;
        width: 100%;
    }
}


/* ==========================================
   DISCLAIMER / PREÇO 2
   ========================================== */
.pricing-disclaimer-nutri2 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
    padding: 10px;
    font-size: 1rem;
    color: #3a4a51;
    background: #fffae96b;
    border-radius: 12px;
    border: 1px dashed #25bb66;
    text-align: center;
    font-weight: 900;
}

/* Ajuste dos itens internos (divs ou spans que envolvem ícone+texto) */
.pricing-disclaimer-nutri2 span, 
.pricing-disclaimer-nutri2 div {
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap; /* Garante que o texto de um selo não quebre sozinho */
}

/* Ícones Dourados */
.pricing-disclaimer-nutri2 i {
    font-size: 1.5rem !important;
    color: #25bb66;
    vertical-align: middle;
}


/* --- ESTILOS DO VÍDEO (A MÁGICA PRO VÍDEO VERTICAL) --- */
.video-hero-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 46px rgb(40 48 78 / 54%);
    border: 3px solid #e3f6ff;
    background-color: #28304e;
    max-width: 320px;
    margin: 0 auto;
    box-shadow: 0 10px 20px rgb(85 98 149 / 49%);
}

.video-hero-wrapper video {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* --- BOTÃO DE SOM (ESPIÃO) --- */
.btn-sound-whatstv {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgb(50 139 240);
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(5px);
    z-index: 10;
    font-weight: bold;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

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

.btn-sound-whatstv.sound-active {
    background: #354584; 
}


/* ==========================================
   A MÁGICA DO MOBILE (O REBAIXAMENTO DO CHASSI)
   ========================================== */
@media (max-width: 992px) {
    .hero-whatstv {
        padding-top: 15px; /* Quase gruda a logo no topo da tela */
        
    }
    .hero-whatstv-text {
        text-align: center;
        padding-right: 0;
    }
    .hero-whatstv-logo {
        text-align: center;
        margin-bottom: 10px; /* Puxa os textos pra cima */
    }
    .hero-whatstv-logo img {
        max-width: 250px; /* Diminui a logo no celular pra economizar espaço */
    }
    .hero-whatstv-text h1 {
        font-size: 1.8rem; /* Headline menor e mais direta */
        line-height: 1.2;
        margin-bottom: 10px;
    }
    .hero-whatstv-text h2 {
        font-size: 1rem;
        line-height: 1;
        margin-bottom: 20px;
    }

    /* O pulo do gato: Compactar a lista de benefícios no celular */
    .info-beneficios {
        margin-top: 40px !important;
        margin-bottom: 15px;
        text-align: left; /* Fica mais elegante manter a lista alinhada à esquerda */
        display: inline-block; /* Para manter ela centralizada na tela, mas com texto à esquerda */
        padding: 0 10px;

    }
    .info-beneficios ul {
        margin: 0;
        padding-left: 15px;
    }
    .info-beneficios ul li {
        margin-bottom: 20px; /* Gruda bem os tópicos */
        font-size: 0.85rem; /* Fonte menor na lista */
        
    }
    .info-beneficios ul li i {
        font-size: 12px;
        color: #fff; /* Deixa o check douradinho */
    }

    /* Botão tela toda (Full-width) converte mais no Mobile */
    .hero-whatstv-btn-row {
        justify-content: center;
        margin-top: 10px;
    }
    .btn-whatstv, .btn-whatstv-infine, .btn-nutri-premium {
        height: 50px;
        line-height: 50px;
        font-size: 1rem;
        padding: 0 20px;
        width: 90%; 
        justify-content: center;
    }
    .hero-whatstv-garantia, .pricing-disclaimer-nutri {
        margin-top: 10px;
        margin-left: 0;
        width: 100%;
        text-align: center;
        font-size: 0.8rem;
    }

    /* O Vídeo espiando na tela */
    .video-hero-wrapper {
        margin-top: 20px; 
        max-width: 200px; /* Estreitei o vídeo só no mobile pra ele não afundar tanto */
        border-width: 3px; /* Borda mais fina */
    }
}

/* ==========================================
   EFEITO SANDUÍCHE (CONTROLE DE VÍDEO MOBILE/DESKTOP)
   ========================================== */

/* 1. Esconde o vídeo mobile quando estiver no computador */
.video-mobile-only {
    display: none;
}

@media (max-width: 992px) {
    /* 2. Esconde o vídeo da coluna direita no celular */
    .video-desktop-only {
        display: none !important;
    }
    
    /* 3. Acorda o vídeo no meio do texto e dá um respiro nas margens */
    .video-mobile-only {
        display: block;
        margin: 15px auto 20px auto; 
        max-width: 240px; /* Segura o tamanho pra não ficar estourado na tela */
    }

    /* 4. Centraliza o botão e a garantia embaixo de tudo */
    .btn-hero-area {
        text-align: center;
        width: 100%;
        margin-top: 20px !important;
    }
    .btn-hero-area .btn-nutri-premium {
        width: 100%;
        justify-content: center;
    }
    .btn-hero-area .pricing-disclaimer-nutri {
        text-align: center !important;
        margin-left: 0;
    }
}


/* ==========================================
   EFEITO SOFTING: FUNDO ORGÂNICO ANIMADO (HERO NUTRISCIENCE)
   ========================================== */

/* O container das formas - fica preso atrás de tudo */
.hero-shapes-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none; /* Para não atrapalhar o clique do mouse no site */
    overflow: hidden;
}

/* Base das bolhas (Blobs) */
.shape-blob {
    position: absolute;
    filter: blur(60px); /* Aumentei o blur para uma mistura de cores mais luxuosa e suave */
    z-index: 0;
    opacity: 0.7; /* Opacidade controlada para não ofuscar o texto */
}

/* Bolha 1: Dourado Nutriscience no canto superior direito */
.shape-1 {
    top: -10%;
    right: -5%;
    width: 600px;
    height: 750px;
    background: linear-gradient(to right, rgb(19 91 174 / 68%), rgb(91 232 255 / 69%));
    /* Essa matemática maluca cria uma forma orgânica em vez de um círculo perfeito */
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morphBlob 12s ease-in-out infinite alternate;
}

/* Bolha 2: Vermelho Nutriscience no canto inferior esquerdo */
.shape-2 {
    bottom: -15%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: linear-gradient(to right, rgba(137, 202, 255, 0.71),#d6f4ff);
    border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
    animation: morphBlob 15s ease-in-out infinite alternate-reverse;
}

/* Padrão de Pontinhos (Dots) - Dourado suave para aspecto Premium/Science */
.shape-dots {
    position: absolute;
    top: 20%;
    left: 50%;
    width: 160px;
    height: 160px;
    background-image: radial-gradient(rgb(16 138 197 / 74%) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.4;
    animation: floatDots 10s ease-in-out infinite alternate;
}

/* ==============================================
   AS ANIMAÇÕES DE RESPIRAÇÃO (KEYFRAMES)
   ============================================== */

@keyframes morphBlob {
    0% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    100% {
        border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
        transform: translate(-30px, 30px) rotate(15deg) scale(1.05);
    }
}

@keyframes floatDots {
    0% { transform: translateY(0); }
    100% { transform: translateY(30px); }
}

/* Ajustes para o Celular */
@media (max-width: 992px) {
    .shape-1 { width: 350px; height: 350px; top: -5%; right: -20%; }
    .shape-2 { width: 350px; height: 350px; bottom: 0; left: -20%; }
    .shape-dots { display: none; } /* Removemos os pontos no mobile pra deixar a leitura mais limpa */
}

/* ==========================================
   LISTA DE BENEFÍCIOS (ESTILO SOFTING)
   ========================================== */
.info-beneficios {
    margin-top: 10px;
    margin-bottom: 5px;
    background: #b4dae978;
    padding: 15px 1px 5px 15px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgb(85 98 149 / 49%);
}

.softing-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.softing-list li {
    display: flex;
    align-items: flex-start; /* Mantém o ícone no topo caso o texto quebre em duas linhas */
    margin-bottom: 18px;
}

/* O Halo effect (círculo duplo translúcido) copiado da Softing */
.softing-check {
    width: 30px;
    height: 30px;
    background-color: var(--nutri-gold); /* Dourado Nutriscience sólido no centro */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    margin-top: 2px; /* Alinhamento fino com o texto */
    flex-shrink: 0;
    /* A mágica do círculo duplo está aqui no box-shadow com opacidade */
    box-shadow: 0 0 0 6px rgb(44 175 235 / 25%); 
}

.softing-check i {
    font-size: 20px;
    color: #ffffff;
    font-weight: 900;
}

.softing-list li span {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    color: #455a64;
    font-weight: 500;
    line-height: 2.2;
}

/* Trava de segurança para o Vídeo Vertical não engolir a tela */
.portrait-video {
    max-width: 320px;
    margin: 0 auto;
}


/* ==========================================
   SELOS DE CONFIANÇA (ABAIXO DO BOTÃO CTA)
   ========================================== */
.trust-badges-nutri {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Alinha à esquerda no computador */
    gap: 15px; /* Espaço perfeito entre um selo e outro */
    margin-top: 15px;
    flex-wrap: wrap; /* Se a tela encolher, eles descem de linha organizados */
}

.trust-badges-nutri .badge-item {
    display: flex;
    align-items: center;
    gap: 5px; /* Espaço entre o ícone e o texto */
    color: #7f8c8d; /* Cinza sóbrio para não roubar a atenção do botão */
}

.trust-badges-nutri .badge-item span {
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

.trust-badges-nutri .badge-item i {
    font-size: 16px;
    color: #ebbc2c; /* Dourado Nutriscience Premium */
}


/* AJUSTE MOBILE */
@media (max-width: 992px) {
    /* Centraliza os selos de segurança no Celular */
    .trust-badges-nutri {
        justify-content: center !important;
        margin-top: 20px;
        gap: 10px; /* Diminui um pouquinho o espaço pra caber na tela do celular */
    }
    .trust-badges-nutri .badge-item span {
        font-size: 0.75rem; /* Fonte um pouco menor pro mobile */
    }
}

/* ==========================================
   MODIFICADORES DOS SELOS (PARA FUNDOS VERMELHOS/ESCUROS)
   ========================================== */

/* Força o alinhamento centralizado no computador e celular */
.trust-badges-nutri.badges-center {
    justify-content: center !important;
}

/* Pinta o texto de branco para dar contraste no fundo escuro */
.trust-badges-nutri.badges-light .badge-item span {
    color: #ffffff !important;
}

/* Opcional: Se quiser que o ícone fique branco também em vez de dourado, 
   é só descomentar a linha abaixo. Mas dourado costuma ficar top! */
/* .trust-badges-nutri.badges-light .badge-item i { color: #ffffff !important; } */


/* ==========================================
   BOTÃO WHATSAPP FLUTUANTE (EFEITO SCROLL)
   ========================================== */

/* Estado inicial: invisível e levemente rebaixado */
#btn_whats_flutuante {
    position: fixed;
    z-index: 999; /* Fica por cima de tudo */
    bottom: 25px;
    right: 38px;
    opacity: 0; /* Totalmente transparente */
    visibility: hidden; /* Não é clicável enquanto invisível */
    transform: translateY(30px); /* Dá um pulinho de baixo pra cima */
    transition: all 0.4s ease-in-out; /* Transição macia como suspensão a ar */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* A classe que o JavaScript vai injetar quando o cliente rolar a tela */
#btn_whats_flutuante.whats-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); /* Volta pra posição normal */
}

/* Arrumando a imagem do ícone que estava bugada no código antigo */
#btn_whats_flutuante .icone-whats-img {
    width: 32px; /* Tamanho padrão para não estourar o botão */
    height: auto;
}

/* Para o celular, a gente empurra um pouco mais pra beirada da tela */
@media (max-width: 992px) {
    #btn_whats_flutuante {
        right: 20px;
        bottom: 20px;
    }
}

/* Floating WhatsApp Button */
        .btn_whats_flutuante {
          font-family: 'Outfit', sans-serif;
          font-size: 14px;
          width: 110px;
          line-height: 15px;
          font-weight: 400;
          text-align: left;
          text-transform: capitalize;  
          z-index: 1000;
          cursor: pointer;
          transition: all 0.3s ease;
          animation: pulse 2s infinite;
          background: #48b555;
        }
  

        .btn_whats_flutuante :hover {
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
        }

        .floating-whatsapp svg {
            width: 35px;
            height: 35px;
            fill: white;
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            }
            50% {
                box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
            }
        }



/* Forçar a Thumbnail a ser sempre Horizontal (16:9) */
.nutri-thumb-horizontal {
    width: 100%;
    object-fit: cover;    /* Garante que a imagem não estique */
    display: block;
}

/* Ajuste fino nos cards para não ficarem muito colados no mobile */
@media only screen and (max-width: 992px) {
    .case-card-whatstv {
        margin-bottom: 25px;
    }
}

/* Garantir que o conteúdo do card tenha uma altura mínima para alinhar os 4 cards */
.case-card-whatstv .case-info {
    min-height: 140px; 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px !important;
}

/* Opcional: Se quiser tirar a logo de TV que tinha no original */
.case-card-whatstv .case-logo {
    display: none;
}


/* Cores Nutriscience */

/* Botão de Compra Estilo Nutri */
.btn-nutri-buy {
    background-color: #e63946 !important; /* Vermelho Alerta/Compra */
    color: #fff !important;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.2rem;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
    width: 100%;
    text-align: center;
    
}

.btn-nutri-buy:hover {
    background-color: #c1121f !important;
    transform: scale(1.05);
}

/* Ajuste das imagens dos produtos nos cards */
.pricing-product-img {
    padding: 20px;
    text-align: center;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-product-img img {
    max-height: 360px;
    transition: transform 0.3s ease;
}

.pricing-card:hover .pricing-product-img img {
    transform: scale(1.1);
}
.pricing-card .pricing-header h3 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    color: #434d58 !important;
}

/* Banner de Garantia */
.guarantee-banner {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    border-left: 8px solid #2bc1aa;
}

/* Ajuste de Flexibilidade dos Cards */
.display-flex-pricing {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

/* Container de Preços */
.nutri-price-container {
    padding: 20px 10px;
    text-align: center;
}

/* Preço Tachado (De) */
.old-price {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #8b4513; /* Marrom escuro da imagem */
    text-decoration: line-through;
    font-style: italic;
    display: block;
    margin-bottom: -5px;
}

/* Preço Destaque (Por) */
.new-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: #27ae60;
    line-height: 1;
    margin-bottom: 10px;
}

.new-price .currency {
    font-size: 18px;
    font-weight: 700;
    vertical-align: top;
    margin-top: 6px;
    display: inline-block;
}
/* Informações de Parcelamento */
.installments-info {
    font-size: 0.95rem;
    color: #4a3228;
    line-height: 1.3;
    margin-bottom: 8px !important;
    margin-top: 5px;
}

/* Ancoragem Diária */
.daily-investment {
    margin-top: 10px;
}

.daily-investment .underline-text {
    display: block;
    font-weight: 800;
    font-size: 1.05rem;
    color: #4a3228;
    text-decoration: underline;
    margin-bottom: 2px;
}

.daily-investment small {
    display: block;
    font-size: 0.9rem;
    color: #4a3228;
}

/* Botão Verde da Nutri */
.btn-nutri-buy {
    background-color: #62b166 !important;
    color: #fff !important;
    width: 90%;
    display: inline-block;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1rem;
}

/* Selinhos de segurança abaixo do botão */
.safety-badges {
    max-width: 180px;
    margin-top: 15px;
    opacity: 0.8;
}

/* ==========================================
   CÍRCULO DE DESCONTO (Selo 5%)
   ========================================== */
.discount-circle {
    position: absolute;
    top: -25px;
    right: 15px;
    background: #e63946;
    color: white;
    width: 80px; /* Aumentei um pouco para o texto respirar */
    height: 80px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    text-align: center;
    line-height: 1.1;
}

.discount-circle .percent {
    font-weight: 900;
    font-size: 2rem; /* 5% bem destacado */
}

.discount-circle small {
    font-weight: 600;
    font-size: 0.55rem; /* Texto miúdo */
    text-transform: uppercase;
    margin-top: 2px;
}


/* ==========================================
   LISTA DE BENEFÍCIOS (Combos 2 e 3)
   ========================================== */
.pricing-benefits {
    list-style: none;
    padding: 0;
    margin: 5px auto 10px auto; /* Margem em cima/baixo e centraliza o bloco */
    text-align: left; /* Mantém o texto alinhado à esquerda */
    display: table; /* O truque mágico para centralizar um bloco alinhado à esquerda */
    font-size: 0.85rem;
    line-height: 1.3;
    color: #444;
}

.pricing-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 5px;
}

.pricing-benefits li i {
    font-size: 16px;
    color: #4caf50; /* Um verdinho para o "check" dar aquele gatilho positivo */
    margin-top: 1px;
}


/* ==========================================
   O CARD PRO - ALINHAMENTO PERFEITO
   ========================================== */
.pro-card {
    background: #fffec7 !important;
    border: none;
    position: relative;
    z-index: 2;
    
    /* REMOVIDOS: scale e transform-origin que causavam o desalinhamento */
    
    /* A MÁGICA DA GEOMETRIA: O card sobe 20px, mas o texto empurra 20px pra baixo. 
       Resultado: O card fica mais alto, mas as letras alinham perfeitamente com os vizinhos! */
    margin-top: -20px; 
    padding: 60px 30px 40px 30px; /* (40px + 20px no topo) */
    
    /* Sombra mais forte para destacar já que tiramos o zoom */
    box-shadow: 0 15px 35px #bc941d5e !important;
}

/* Ajuste fino na etiqueta para ela acompanhar a subida do card */
.popular-badge {
    top: -30px; /* Sobe a etiqueta junto com a margem negativa */
}

/* Responsividade: No mobile a gente zera o truque pra empilhar normal */
@media (max-width: 992px) {
    .pro-card { 
        margin-top: 20px; 
        padding: 40px 30px; 
    }
    .popular-badge { top: 5px; }
}

/* Etiqueta de Mais Vendido */
.popular-badge {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF5722; /* Vermelho alerta pra chamar atenção */
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    z-index: 3;
    box-shadow: 0 4px 10px rgba(255,0,0,0.3);
}

.pricing-header h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: #434d58;
}

.pricing-header p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    margin-top: 0;
    color: #6c757d;
}

.pricing-price {
    margin: 30px 0;
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 700;
    vertical-align: top;
    position: relative;
    top: 10px;
}

.pricing-price .amount {
    font-size: 4rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
}

.pricing-price .period {
    font-size: 1rem;
    color: #a1aab2;
}

.pro-card .period { color: rgba(255,255,255,0.8); }

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
    flex-grow: 1; /* Empurra o botão pro fundo */
}

.pricing-features li {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.pricing-features li i {
    margin-right: 10px;
    font-size: 22px;
}

.pricing-features li.disabled {
    color: #a1aab2;
    text-decoration: line-through;
}

/* ==========================================
   SEXTA DOBRA -  PREÇOS
   ========================================== */

/* Flexbox para igualar a altura dos cards mesmo se tiverem quantidades diferentes de texto */
/* ==========================================
   AJUSTE DE ALINHAMENTO DOS PLANOS (FIX TOPO)
   ========================================== */

/* 1. O Contêiner Flex */
.display-flex-pricing {
    display: flex;
    flex-wrap: wrap;
    /* A MÁGICA AQUI: Muda de 'center' para 'flex-start' para ancorar no topo */
    align-items: flex-start; 
    justify-content: center;
    /* Dá um respiro pro card maior não bater no texto de cima */
    padding-top: 25px; 
}

/* 2. Os Cards Padrão */
.pricing-card {
    background: #fffae9;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    /* Remova o height: 100% se ele estiver aí, para que cresçam livres para baixo */
}



/* Botões */
.border-btn {
    border: 2px solid #434d58 !important;
    box-shadow: none !important;
    border-radius: 8px;
    font-weight: 700;
    width: 100%;
}

.border-btn:hover {
    background: #434d58 !important;
    color: #ffffff !important;
}

.pro-card .btn-large {
    border-radius: 8px;
    width: 100%;
    color: #2bc1aa !important; /* Texto do botão com a cor do card */
}

/* Responsividade */
@media (max-width: 992px) {
    .display-flex-pricing { display: block; }
    .pro-card { transform: scale(1); padding: 40px 30px; margin-top: 20px;}
    .popular-badge { top: 5px; }
}
.pro-card .expand-features-toggle {
    color: #ffffff;
    opacity: 0.9;
}

/* ==========================================
   UPGRADES VISUAIS PARA OS CARDS (PLANOS E PASSOS)
   Deixa as sombras menos "pesadas" e mais "difusas"
   ========================================== */
.pricing-card, .step-card-whatstv {
    /* Troca as bordas duras por uma sombra super suave que dá ideia de flutuação */
    border: none !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.09);
    border-radius: 24px !important; /* Mais arredondado = Mais moderno */
}

.pricing-card:hover, .step-card-whatstv:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08) !important;
    transform: translateY(-8px);
}

.pro-card {
    /* Destaca o card principal sem exagerar */
    box-shadow: 0 20px 50px box-shadow: 0 5px 25px #ebbb2ccd  !important;
}



/* ==========================================
   TERCEIRA DOBRA - PROVA SOCIAL (upgrade sniper)
   ========================================== */
.section-cases {
    position: relative;
    z-index: 1;
}

.section-cases-grid {
    display: flex;
    flex-wrap: wrap;
    row-gap: 40px;
}

.case-card-whatstv {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 3px solid var(--nutri-light-2);    
    cursor: pointer; /* Todo o card é clicável agora */
}

.case-card-whatstv:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4) !important;
}

/* --- Área da Thumbnail --- */
.case-video-thumb {
    position: relative;
    overflow: hidden;
}

.case-video-thumb img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}

.case-card-whatstv:hover .case-video-thumb img {
    transform: scale(1.03);
}

/* ==========================================
   O EFEITO "SOFTING" + YOUTUBE VERMELHO
   ========================================== */
.btn-play-softing {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 70px;
    height: 70px;
    background-color: #FF0000; /* VERMELHO YOUTUBE */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.4);
    transition: all 0.3s ease;
}

/* Ícone Interno (Triângulo Branco) */
.btn-play-softing i.play-icon-youtube {
    font-size: 55px; /* Imponente */
    color: #ffffff;
    margin-left: 5px; /* Ajuste óptico para centralizar o triângulo */
}

/* --- AS ONDAS PULSANTES (EFEITO SOFTING) --- */
.btn-play-softing::after,
.btn-play-softing::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.915); /* Onda vermelha translúcida */
    animation: ripple 2s infinite; /* A animação mágica */
    z-index: -1;
    transition: all 0.3s ease;
}

/* Segunda onda com delay para criar o efeito duplo */
.btn-play-softing::after {
    animation-delay: 0.5s;
}

/* Interação no Hover do Card Inteiro */
.case-card-whatstv:hover .btn-play-softing {
    background-color: #cc0000; /* Escurece o vermelho no hover */
    box-shadow: 0 0 50px rgba(255, 0, 0, 0.7);
    transform: translate(-50%, -50%) scale(1.05);
}

.case-card-whatstv:hover .btn-play-softing::after,
.case-card-whatstv:hover .btn-play-softing::before {
    border-color: rgba(255, 255, 255, 0.6); /* Ondas ficam brancas no hover */
}

/* --- DEFINIÇÃO DA ANIMAÇÃO RIPPLE --- */
@keyframes ripple {
    0% {
        width: 100%;
        height: 100%;
        opacity: 1;
    }
    100% {
        width: 180%; /* Expande até 1.8x o tamanho */
        height: 180%;
        opacity: 0; /* Desaparece */
    }
}

/* --- Área de Info (Texto e Logo) --- */
.case-info {
    padding: 30px;
    display: flex;
    align-items: center;
    background-color: #ffffff;
}

.case-logo {
    max-width: 80px;
    max-height: 50px;
    margin-right: 25px;
    object-fit: contain;
}

.case-text {
    flex: 1;
}

.case-text h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: #434d58;
    margin-top: 0;
    margin-bottom: 8px;
    line-height: 1.3;
}

.case-text p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
}

/* Responsividade */
@media (max-width: 992px) {
    .section-cases { padding: 60px 0; }
    .btn-play-softing { width: 70px; height: 70px; }
    .btn-play-softing i.play-icon-youtube { font-size: 40px; }
    .case-info { padding: 20px; flex-direction: column; text-align: center; }
    .case-logo { margin-right: 0; margin-bottom: 15px; }
    .section-cases-grid { row-gap: 30px; }
}


/* ==========================================
   CARDS DE GARANTIA (Empilhados Verticalmente)
   ========================================== */
.step-card-nutri {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 20px 20px 45px; /* Espaço na esquerda para o número flutuante */
    position: relative;
    margin-bottom: 25px;
    text-align: left;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--nutri-gold, #ebbc2c); /* Detalhe dourado na borda */
}

.step-card-nutri:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.step-card-nutri .pulse-number-nutri {
    position: absolute;
    left: -20px; /* Joga a bolinha pra fora do card */
    top: 50%;
    transform: translateY(-50%);
    background: var(--nutri-gold, #ebbc2c);
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    box-shadow: 0 0 0 0 rgba(235, 188, 44, 0.7);
    animation: pulse-nutri-gold 2s infinite;
}

.step-card-nutri h4 { 
    font-size: 1.2rem; 
    color: #2c3e50; 
    margin: 0 0 8px 0; 
    font-weight: 800;
}

.step-card-nutri p { 
    font-size: 0.95rem; 
    color: #546e7a; 
    margin: 0;
    line-height: 1.5;
}

@keyframes pulse-nutri-gold {
    0% { box-shadow: 0 0 0 0 rgba(235, 188, 44, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(235, 188, 44, 0); }
    100% { box-shadow: 0 0 0 0 rgba(235, 188, 44, 0); }
}

/* Ajuste da imagem da esquerda */
.img-garantia-wrapper {
    position: relative;
    padding: 20px;
    text-align: center;
}

.img-garantia-wrapper .selo-flutuante {
    position: absolute;
    bottom: 0;
    right: 10%;
    width: 140px; /* Ajuste o tamanho do seu selo aqui */
    z-index: 5;
    animation: float 4s ease-in-out infinite; /* Efeito flutuando de leve */
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.img-garantia-wrapper .selo-flutuante {
    position: absolute;
    /* FIX POSICIONAMENTO: Mais alto e mais para a esquerda para sobrepor */
    bottom: 35%; /* Subiu bastante de 0 para 35% */
    right: 15%;  /* Mantém à direita mas o 'bottom' alto cria a sobreposição lateral */
    width: 140px; 
    z-index: 5;
    animation: float 4s ease-in-out infinite;
}

.bg-04 {
  background-color: var(--nutri-light-2);
} 

/* ==========================================
   FOOTER NUTRISCIENCE PREMIUM
   ========================================== */
.footer-nutri {
    padding: 60px 0 30px;
    color: #455a64;
    line-height: 1.6;
}

.footer-nutri h5 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-nutri .bio-text {
    font-size: 1rem;
    margin-top: 15px;
    text-align: left;
}

.footer-nutri .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    margin-top: 10px;
    font-size: 1rem;
}

.footer-nutri .contact-item i {
    width: 18px;
    height: 18px;
    background-color: var(--nutri-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
    margin-top: 2px;
    flex-shrink: 0;
    box-shadow: 0 0 0 5px rgba(235, 188, 44, 0.25);
    color: #fff;
    padding: 15px;
    font-size: 22px;
}

.footer-nutri .selos-seguranca {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.footer-nutri .selos-seguranca img {
    height: 70px; /* Tamanho padronizado pros selos */
    filter: grayscale(0.2);
    transition: 0.3s;
}

.footer-nutri .selos-seguranca img:hover {
    filter: grayscale(0);
}

.footer-copyright-nutri {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
    font-size: 0.8rem;
    opacity: 0.7;
}

/* ==============================================
   LINHA DO TEMPO - NUTRISCIENCE (MACGYVER CUSTOM)
   ============================================== */
.nutri-timeline-section {
    padding: 60px 0;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0px auto;
}

/* O eixo central da linha do tempo */
.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #d1d5db;
    top: -15px; /* <--- A ALTERAÇÃO FOI AQUI */
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    box-sizing: border-box;
}

/* Bolinhas com Ícones */
.timeline-item::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    right: -20px;
    background-color: #fbc02d; /* Amarelo tipo o da tua imagem */
    border: 4px solid #fffae9;
    top: 20px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.timeline-item i.timeline-icon {
    position: absolute;
    right: -10px;
    top: 28px;
    z-index: 2;
    color: #fff;
    font-size: 20px;
}

/* Ajustes para a esquerda e direita */
.left-aligned { left: 0; }
.right-aligned { left: 50%; }

.right-aligned::after {
    left: -20px;
}
.right-aligned i.timeline-icon {
    left: -10px;
}

/* O Card de Conteúdo */
.timeline-content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* A "Pílula" azul com o Período */
.timeline-badge {
    background-color: #bc1718; /* Azul Nutriscience */
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.timeline-content p {
    margin: 5px 0 10px 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.timeline-content strong {
    color: #bc1718;
}

/* Caixa de Evidência Médica */
.evidencia-box {
    background-color: #e6f4ea;
    border-left: 5px solid #34d399;
    padding: 20px;
    border-radius: 4px;
    margin-top: 40px;
}
.evidencia-box h5 {
    color: #047857;
    margin-top: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Responsividade (Celular) - Transforma em linha reta pela esquerda */
@media screen and (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 15px;
    }
    .timeline-item::after {
        left: 11px;
    }
    .timeline-item i.timeline-icon {
        left: 21px;
    }
    .right-aligned {
        left: 0%;
    }
    .timeline::after { top: -15px; } /* Ajuste a linha no mobile também */
    .timeline-header-container { left: 31px; transform: none; text-align: left; margin-left: 11px;}
    .timeline-header-balloon::after { left: -2px; margin-left: 0; height: 15px;}
}

/* O Cabeçalho de Balão Flutuante */
.timeline-header-container {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-header-balloon {
    background-color: #354584;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.2rem;
    text-transform: uppercase;
    position: relative;
    z-index: 10;
}

/* O Poste Flutuante */
.timeline-header-balloon::after {
    content: '';
    position: absolute;
    bottom: -35px;
    left: 50%;
    margin-left: -2px;
    width: 4px;
    height: 35px;
    background-color: #d1d5db;
    z-index: 5;
}

/* Legendas em azul */
.timeline-content strong.label { 
    color: #2b6cb0; 
    font-weight: bold; 
    display: block; 
    margin-bottom: 3px; 
}


/* ============================================================
   SECTION COMPARATIVO TÉCNICO - NUTRISCIENCE
   ============================================================ */
#comparativo-tecnico {
    background-color: #f9f9f9;
    padding: 60px 0;
}

#comparativo-tecnico .nutri-main-title-dark {
    color: #004d40;
    font-weight: 800;
    font-size: 2.5rem;
}

#comparativo-tecnico .responsive-table-custom {
    border-collapse: collapse;
    width: 100%;
    background: white;
}

#comparativo-tecnico .responsive-table-custom th, 
#comparativo-tecnico .responsive-table-custom td {
    padding: 15px 10px !important;
    border: 1px solid #eee;
    font-size: 0.95rem;
}

/* Coluna de destaque (Proteincolla) */
#comparativo-tecnico .coluna-sucesso {
    background-color: #e8f5e9 !important;
    color: #2e7d32 !important;
    font-weight: bold;
    border-left: 2px solid #4caf50 !important;
    border-right: 2px solid #4caf50 !important;
}
.coluna-sucesso i {
    color: green;
}

#comparativo-tecnico thead th.header-destaque {
    background-color: #4caf50 !important;
    color: #fff !important;
    font-size: 1.2rem;
}

table.highlight > tbody > tr:hover {
  background-color: rgb(255 250 233) !important;
}

/* Ajustes para Mobile (Sniping) */
@media only screen and (max-width: 600px) {
    #comparativo-tecnico .responsive-table-custom th, 
    #comparativo-tecnico .responsive-table-custom td {
        font-size: 0.75rem !important;
        padding: 10px 5px !important;
    }
    #comparativo-tecnico .nutri-main-title-dark {
        font-size: 1.8rem !important;
    }
    #comparativo-tecnico .responsive-table-custom i.material-icons {
        font-size: 12px !important;
    }
}

.pix-box {
    background: #eafaf1;
    border: 1px solid #a9dfbf;
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pix-icon {
    font-size: 18px;
}
.pix-text {
    flex: 1;
}
.pix-text .pix-label {
    font-size: 12px;
    color: #1e8449;
    font-weight: 600;
    display: block;
    line-height: 1.2;
    text-align: left;
}
.pix-text .pix-sub {
    font-size: 11px;
    color: #d4820b;
    text-align: left;
}
.pix-val {
    font-size: 18px;
    font-weight: 900;
    color: #1e8449;
    white-space: nowrap;
}

.invest-tag {
    background: #fff8ed;
    border: 1.5px solid #f0c040;
    border-radius: 12px;
    padding: 10px 14px;
    margin-bottom: 14px;
    text-align: center;
}
.invest-tag .inv-label {
    font-size: 10px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 2px;
}
.invest-tag .inv-val {
    font-size: 20px;
    font-weight: 900;
    color: #d4820a;
    display: block;
    line-height: 1.1;
}

.invest-tag .inv-sub {
    font-size: 10.5px;
    color: #b8860b;
    font-weight: 600;
}

.invest-tag .inv-base {
    font-size: 10px;
    color: #aaa;
    display: block;
    margin-top: 2px;
}
.frete-badge {
    width: fit-content;
    margin: 0 auto;
    align-items: center;
    gap: 5px;
    background: #eafaf1;
    border: 1px solid #a9dfbf;
    color: #1e8449;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.economia-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 11.5px;
    color: #1e8449;
    font-weight: 700;
}
