/* ==========================================================================
   DESIGN SYSTEM & VARIABLES (APPLE LIGHT & TRANQUILITY LANGUAGE)
   ========================================================================== */
:root {
    /* Color Palette - Brand Colors (Deep Royal Blue & Vibrant Orange) */
    --bg-dark: #ffffff;
    --bg-card: #f5f5f7;
    --bg-card-hover: #e8e8ed;
    --text-primary: #1d1d1f;
    --text-secondary: #515154;
    --text-tertiary: #86868b;
    
    --brand-blue: #232f84; /* Azul Royal da logomarca */
    --brand-blue-hover: #161f5c;
    --brand-orange: #e05315; /* Laranja vibrante da logomarca */
    --brand-orange-hover: #b8400c;
    --accent-red: #e05315; /* Sobrescreve antiga cor vermelha pelo laranja da logo */
    --accent-orange-bg: rgba(224, 83, 21, 0.06);
    
    /* Glassmorphism Light */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 0, 0, 0.06);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.04);
    
    /* Layout & Spacing */
    --container-max-width: 1100px;
    --border-radius-large: 28px;
    --border-radius-medium: 18px;
    --border-radius-small: 12px;
    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
    color: var(--text-primary);
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    line-height: 1.5;
    background-color: var(--bg-dark);
}

/* Scrollbar premium */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f5f5f7;
}
::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

/* ==========================================================================
   REUSABLE UTILITIES
   ========================================================================== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}

.max-800 {
    max-width: 800px !important;
}

.section {
    padding: 120px 0;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.center {
    text-align: center;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.section-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--brand-orange);
    margin-bottom: 12px;
}

.section-tag.light {
    color: var(--brand-blue);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.paragraph {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.highlight-paragraph {
    color: var(--text-primary);
    font-weight: 500;
}

/* ==========================================================================
   BUTTONS & LINKS
   ========================================================================== */
.btn-primary {
    display: inline-block;
    background: var(--brand-orange);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 99px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary:hover {
    background: var(--brand-orange-hover);
    transform: scale(1.02);
}

.btn-link {
    display: inline-flex;
    align-items: center;
    color: var(--brand-blue);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    margin-left: 20px;
    transition: var(--transition-smooth);
}

.btn-link .arrow {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.btn-link:hover .arrow {
    transform: translateX(4px);
}

.btn-link:hover {
    color: var(--brand-blue-hover);
}

/* ==========================================================================
   STICKY HEADER
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #2E358D; /* Azul Royal escuro */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.header-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 12px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
}

.logo-image {
    height: 54px;
    width: auto;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.logo-image:hover {
    transform: scale(1.02);
}

.footer-logo-image {
    height: 68px;
    width: auto;
    border-radius: 4px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle .bar {
    width: 22px;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85); /* Menu em branco */
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    letter-spacing: 0.02em;
}

.nav-links a:hover {
    color: #ffffff; /* Hover do menu em branco puro */
}

.btn-buy-header {
    background: #24c153; /* Botão comprar do topo em verde */
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 99px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-buy-header:hover {
    background: #1c9d41;
}

/* Faixa Anexa ao Menu */
.header-banner {
    background-color: var(--brand-orange);
    padding: 6px 16px;
    text-align: center;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.header-banner-text {
    color: #2E358D; /* Mesmo tom azul do menu */
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    display: inline-block;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    min-height: 100vh;
    padding-top: 80px; /* Reduzido para encostar no menu */
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(180deg, #2E358D 0%, #E55E0D 100%); /* Degradê moderno azul menu -> laranja etapa final */
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    pointer-events: none;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
    opacity: 0.45; /* Mistura de opacidade ideal */
    mix-blend-mode: screen; /* Deixa o vídeo mesclado de forma muito clara e iluminada */
    filter: brightness(1.35) contrast(1.15); /* Aumenta a claridade e o brilho do vídeo */
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1.1;
    max-width: 600px;
}

.hero-visual-container {
    flex: 0.9;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-product-wrapper {
    position: relative;
    width: 100%;
    max-width: 340px;
    animation: float 5s ease-in-out infinite;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.45) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.hero-product-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 45px rgba(0, 102, 204, 0.12));
    transition: var(--transition-bounce);
}

.hero-product-img:hover {
    transform: scale(1.03) rotate(-1deg);
}

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

.tagline {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9); /* Branco de alto contraste */
    letter-spacing: 0.18em;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 6.2rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: #ffffff; /* Branco */
    margin-bottom: 28px;
}

.hero-brand-logo {
    height: clamp(55px, 12vw, 110px);
    width: auto;
    vertical-align: middle;
    display: inline-block;
    clip-path: inset(22% 0 0 0); /* Corta o texto "NUTRI" em marca d'água do topo da imagem */
    margin-top: -15px; /* Ajusta o espaço superior após o corte */
    margin-bottom: -10px;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85); /* Branco suave */
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-actions {
    margin-bottom: 48px;
    display: flex;
    align-items: center;
}

.hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.9); /* Vidro branco altamente opaco */
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 99px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.badge span {
    font-size: 1rem;
}

/* Scroll indicator animation */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
    z-index: 10;
}

.mouse-icon {
    width: 20px;
    height: 32px;
    border: 2px solid rgba(255, 255, 255, 0.8); /* Alterado para branco */
    border-radius: 12px;
    position: relative;
}

.mouse-icon .wheel {
    width: 4px;
    height: 8px;
    background: #ffffff; /* Alterado para branco */
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.6s infinite ease-out;
}

.scroll-text {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.8); /* Alterado para branco */
}

@keyframes scroll-wheel {
    0% { top: 6px; opacity: 1; }
    50% { top: 14px; opacity: 0; }
    100% { top: 6px; opacity: 1; }
}

/* ==========================================================================
   INTERACTIVE INGREDIENT SHOWCASE (REPLICANDO O MATERIAL ANEXADO - SIMÉTRICO)
   ========================================================================== */
.hero-container-centered {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 5; /* Garante que todo o contêiner de conteúdo fique acima do vídeo */
}

.hero-visual-showcase {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: 20px;
}

.interactive-showcase-centered {
    position: relative;
    display: grid;
    grid-template-columns: 360px 280px 360px; /* Alargado proporcionalmente */
    gap: 0;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1140px; /* Aumentado de 760px */
    height: 500px; /* Aumentado de 320px */
}

/* Pedestal e Embalagem no Centro */
.showcase-visual-center {
    position: relative;
    width: 280px; /* Aumentado de 180px */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 6;
}

.pedestal-base {
    position: absolute;
    bottom: 30px;
    width: 220px; /* Aumentado de 140px */
    height: 24px; /* Aumentado de 16px */
    background: radial-gradient(ellipse at center, rgba(46, 53, 141, 0.4) 0%, rgba(10, 15, 45, 0.95) 80%);
    border: 2px solid rgba(35, 47, 132, 0.6);
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(35, 47, 132, 0.5), inset 0 0 10px rgba(255, 255, 255, 0.1);
    transform: rotateX(15deg);
    z-index: 1;
}

.pedestal-glow {
    position: absolute;
    bottom: 5px;
    width: 280px; /* Aumentado de 170px */
    height: 70px; /* Aumentado de 40px */
    background: radial-gradient(ellipse at center, rgba(0, 102, 204, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: pulseGlow 4s infinite ease-in-out;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.showcase-box-img {
    width: 190px; /* Aumentado para dar destaque triplicado (estilo super premium) */
    height: auto;
    object-fit: contain;
    position: relative;
    bottom: 25px;
    z-index: 10; /* Elevado para garantir que fique acima das linhas conectoras */
    opacity: 1 !important; /* Força 100% de opacidade */
    mix-blend-mode: normal !important; /* Impede que se misture com o blend do vídeo */
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.35)); /* Sombra escura e nítida */
    animation: showcaseFloat 6s ease-in-out infinite;
}

@keyframes showcaseFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(1deg); }
}

/* Conectores SVG */
.connector-svg-centered {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: visible;
}

.connector-line {
    fill: none;
    stroke: rgba(255, 255, 255, 0.22); /* Branco translúcido para fundo escuro */
    stroke-width: 1.5;
    stroke-dasharray: 4 3;
    transition: stroke 0.3s ease;
}

.pulse-dot {
    fill: #24c153;
    filter: drop-shadow(0 0 5px #24c153);
}

/* Organização de Cards nos Lados */
.showcase-cards-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
    z-index: 5;
}

.showcase-cards-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    z-index: 5;
}

.showcase-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.92); /* Vidro branco altamente opaco (não-transparente) */
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--border-radius-small);
    padding: 10px 18px; /* Aumentado de 8px 14px */
    transition: var(--transition-smooth);
    width: 100%;
    max-width: 300px; /* Aumentado de 250px */
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-align-right {
    justify-content: flex-end;
}

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

.showcase-card:hover {
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
}

.showcase-cards-left .showcase-card:hover {
    transform: translateX(-6px);
}

.showcase-cards-right .showcase-card:hover {
    transform: translateX(6px);
}

.card-icon-glow {
    flex-shrink: 0;
}

.icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px; /* Aumentado de 36px */
    height: 44px; /* Aumentado de 36px */
    border-radius: 50%;
    font-size: 1.3rem; /* Aumentado de 1.1rem */
    box-shadow: 0 0 10px rgba(0, 102, 204, 0.15);
    border: 1.5px solid rgba(0, 102, 204, 0.25);
    transition: var(--transition-smooth);
}

/* Cores específicas de neon baseadas na imagem */
.icon-joint {
    background: radial-gradient(circle, rgba(35, 47, 132, 0.2) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-color: rgba(35, 47, 132, 0.4);
    box-shadow: 0 0 12px rgba(35, 47, 132, 0.2);
}

.icon-molecule {
    background: radial-gradient(circle, rgba(0, 102, 204, 0.2) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-color: rgba(0, 102, 204, 0.4);
    box-shadow: 0 0 12px rgba(0, 102, 204, 0.2);
}

.icon-herb {
    background: radial-gradient(circle, rgba(224, 83, 21, 0.15) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-color: rgba(224, 83, 21, 0.35);
    box-shadow: 0 0 12px rgba(224, 83, 21, 0.15);
}

.icon-crystal {
    background: radial-gradient(circle, rgba(0, 102, 204, 0.15) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-color: rgba(0, 102, 204, 0.3);
    box-shadow: 0 0 12px rgba(0, 102, 204, 0.15);
}

.icon-d3 {
    background: radial-gradient(circle, rgba(255, 170, 0, 0.2) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-color: rgba(255, 170, 0, 0.4);
    box-shadow: 0 0 12px rgba(255, 170, 0, 0.2);
}

.icon-k2 {
    background: radial-gradient(circle, rgba(232, 92, 44, 0.2) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-color: rgba(232, 92, 44, 0.4);
    box-shadow: 0 0 12px rgba(232, 92, 44, 0.2);
}

.showcase-card:hover .icon-circle {
    transform: scale(1.08);
}

.showcase-card h4 {
    font-size: 0.88rem; /* Aumentado de 0.78rem */
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.showcase-card p {
    font-size: 0.76rem; /* Aumentado de 0.68rem */
    color: var(--text-secondary);
    line-height: 1.3;
    margin: 0;
}

/* ==========================================================================
   HERO BOTTOM BAR (RODAPÉ DA ANIMAÇÃO)
   ========================================================================== */
.showcase-bottom-bar-wrapper {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.92); /* Vidro branco altamente opaco (não-transparente) */
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--border-radius-medium);
    padding: 16px 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 10;
}

.hero-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.bottom-badge-item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
}

.bottom-badge-icon {
    font-size: 1.6rem;
    background: #f5f5f7;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.bottom-badge-text {
    display: flex;
    flex-direction: column;
}

.bottom-badge-text strong {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

.bottom-badge-text span {
    font-size: 0.72rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 1px;
}

/* ==========================================================================
   CENTRAL HERO TEXT
   ========================================================================== */
.hero-content-centered {
    max-width: 720px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-content-centered .hero-subtitle {
    max-width: 560px;
}

.hero-content-centered .btn-link {
    color: #ffffff;
}

.hero-content-centered .btn-link:hover {
    color: rgba(255, 255, 255, 0.85);
}

/* ==========================================================================
   PAIN SECTION (PROBLEMA)
   ========================================================================== */
.pain-section {
    background: #f5f5f7;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.pain-card {
    background: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-medium);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
}

.pain-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.pain-icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 16px;
}

.pain-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.pain-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ==========================================================================
   SOLUTION SECTION (SOLUÇÃO)
   ========================================================================== */
.solution-section {
    background: #ffffff;
}

.solution-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.solution-product-wrapper {
    width: 100%;
    max-width: 320px;
    perspective: 1000px;
}

.solution-product-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.08));
    animation: floatBox 6s ease-in-out infinite;
    transition: var(--transition-bounce);
}

.solution-product-img:hover {
    animation-play-state: paused;
    transform: rotateY(-8deg) rotateX(4deg) scale(1.03);
    filter: drop-shadow(0 25px 55px rgba(0, 0, 0, 0.12));
}

@keyframes floatBox {
    0% {
        transform: translateY(0px) rotateY(-3deg);
    }
    50% {
        transform: translateY(-8px) rotateY(3deg) scale(1.01);
    }
    100% {
        transform: translateY(0px) rotateY(-3deg);
    }
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 36px;
    margin-bottom: 32px;
}

.btn-buy-solution {
    display: inline-block;
    padding: 16px 48px;
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    box-shadow: 0 12px 30px rgba(36, 193, 83, 0.4);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-buy-solution:hover {
    transform: translateY(-3px) scale(1.05);
    background: #1eaf48;
    box-shadow: 0 16px 35px rgba(36, 193, 83, 0.55);
}

.solution-action {
    margin-top: 32px;
}

.story-visual .solution-action {
    text-align: center;
}

.sol-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.sol-f-icon {
    font-size: 1.8rem;
    background: var(--bg-card);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.sol-feature-item h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.sol-feature-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ==========================================================================
   PRESENTATION VIDEO SECTION
   ========================================================================== */
.presentation-section {
    background: linear-gradient(135deg, #12162b 0%, #2e358d 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Background soft glow */
.presentation-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(229, 94, 13, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.presentation-section .section-tag {
    color: #E55E0D;
    background: rgba(229, 94, 13, 0.12);
    padding: 6px 14px;
    border-radius: 99px;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.presentation-section .section-title {
    color: #ffffff;
}

.presentation-section .paragraph {
    color: rgba(255, 255, 255, 0.85);
}

.presentation-section .highlight-paragraph {
    color: #ffffff;
    font-weight: 700;
}

.presentation-video {
    width: 100%;
    display: flex;
    justify-content: center;
}

.video-embed-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    width: 100%;
    overflow: hidden;
    border-radius: var(--border-radius-medium);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--glass-border);
}

.video-embed-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section {
    background: #ffffff;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-product-wrapper {
    width: 100%;
    max-width: 320px;
    perspective: 1000px;
}

.about-product-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.08));
    transition: var(--transition-bounce);
}

.about-product-img:hover {
    transform: rotateY(8deg) rotateX(4deg) scale(1.02);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 40px;
}

.stat-item {
    border-left: 2px solid var(--brand-blue);
    padding-left: 18px;
}

.stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   HUMAN & COZY SECTIONS (STORY SECTION)
   ========================================================================== */
.story-section {
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.image-wrapper-cozy {
    width: 100%;
    height: 480px;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--glass-border);
}

.image-wrapper-cozy img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.image-wrapper-cozy:hover img {
    transform: scale(1.03);
}

.testimonial {
    margin-top: 36px;
    padding: 24px 32px;
    border-left: 3px solid var(--brand-blue);
    background: var(--bg-card);
    border-radius: 0 var(--border-radius-medium) var(--border-radius-medium) 0;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-primary);
}

.testimonial cite {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    font-style: normal;
    color: var(--text-secondary);
    margin-top: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ==========================================================================
   BENTO GRID SECTION
   ========================================================================== */
.bento-section {
    background: #ffffff;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: 20px;
    margin-top: 60px;
}

.bento-item {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
}

.bento-item:hover {
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
}

.bento-inner {
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bento-inner-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    height: 100%;
}

.bento-text-side {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-image-side {
    height: 100%;
    overflow: hidden;
    position: relative;
}

.bento-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.bento-item:hover .bento-image-side img {
    transform: scale(1.05);
}

.bento-icon {
    font-size: 2.2rem;
    margin-bottom: auto;
}

.bento-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.bento-item p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.bento-card-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-card-large .bento-inner-split {
    grid-template-columns: 1.1fr 0.9fr;
}

.bento-card-large h3 {
    font-size: 1.8rem;
    max-width: 460px;
}

.bento-card-large p {
    font-size: 0.98rem;
    max-width: 460px;
    margin-bottom: 20px;
}

.card-link {
    color: var(--brand-blue);
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ==========================================================================
   INGREDIENTS SECTION (TABS)
   ========================================================================== */
.ingredients-section {
    background: #ffffff;
}

.ingredients-tabs-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 48px;
    margin-top: 60px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-large);
    padding: 48px;
}

.ingredients-grid-container {
    width: 100%;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.didactic-intro {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    text-align: center;
    font-weight: 500;
}

.ingredients-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.ingredient-detail-card {
    background: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-medium);
    padding: 24px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ingredient-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    border-color: rgba(46, 53, 141, 0.2);
}

.ing-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ing-card-icon {
    font-size: 1.8rem;
    background: #f5f5f7;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.ing-card-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ing-card-meta h4 {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.ing-card-dose {
    font-size: 0.72rem;
    font-weight: 700;
    color: #E55E0D;
    background: rgba(229, 94, 13, 0.1);
    padding: 2px 8px;
    border-radius: 99px;
    width: fit-content;
}

.ing-card-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ing-card-highlight {
    font-size: 0.85rem;
    font-weight: 700;
    color: #2E358D;
    margin: 0;
}

.ing-card-simple {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.45;
    margin: 0;
}

.box-desc {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

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

/* ==========================================================================
   NUTRITIONAL TABLE SECTION
   ========================================================================== */
.nutritional-section {
    background: linear-gradient(135deg, #12162b 0%, #2e358d 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.nutritional-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(229, 94, 13, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.nutritional-section .section-tag {
    color: #E55E0D;
    background: rgba(229, 94, 13, 0.12);
    padding: 6px 14px;
    border-radius: 99px;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.nutritional-section .section-title {
    color: #ffffff;
}

.nutritional-section .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.nutritional-box {
    background: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    margin-top: 48px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.nutritional-header {
    background: rgba(0, 0, 0, 0.01);
    padding: 32px;
    border-bottom: 1px solid var(--glass-border);
}

.nutritional-header h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
}

.nutritional-header p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

.table-wrapper {
    overflow-x: auto;
}

.nutritional-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.nutritional-table th, 
.nutritional-table td {
    padding: 18px 32px;
    font-size: 0.92rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nutritional-table th {
    font-weight: 700;
    color: var(--text-secondary);
    background: rgba(0, 0, 0, 0.01);
}

.nutritional-table td {
    color: var(--text-secondary);
}

.nutritional-table tr:hover td {
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.01);
}

.nutritional-table td.qty {
    font-weight: 600;
    color: var(--text-primary);
}

.nutritional-table td.vd {
    font-weight: 700;
    color: #E55E0D;
}

.nutritional-table tr.active-sub td {
    background: rgba(229, 94, 13, 0.02);
}

.nutritional-table tr.active-sub:hover td {
    background: rgba(229, 94, 13, 0.04);
}

.nutritional-footer {
    padding: 24px 32px;
    background: rgba(0, 0, 0, 0.01);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.nutritional-footer p {
    font-size: 0.76rem;
    color: var(--text-tertiary);
    line-height: 1.5;
    margin-bottom: 4px;
}

.nutritional-alerts {
    margin-top: 32px;
    text-align: center;
}

.alert-box {
    background: #E55E0D;
    border: none;
    border-radius: var(--border-radius-medium);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 10px 25px rgba(229, 94, 13, 0.25);
}

.alert-box strong {
    color: #ffffff;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 6px;
    letter-spacing: 0.05em;
}

.alert-box p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.9);
}

.anvisa-disclaimer {
    font-size: 0.78rem;
    color: var(--text-tertiary);
    line-height: 1.6;
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-section {
    background: #ffffff;
}

.faq-list {
    margin-top: 48px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-large);
    padding: 16px 32px;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 24px 0;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--brand-blue);
}

.faq-icon {
    font-size: 1.5rem;
    line-height: 1;
    color: var(--brand-blue);
    transition: transform 0.35s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--accent-red);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    padding-bottom: 24px;
}

.faq-answer strong {
    color: var(--text-primary);
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-section {
    background: linear-gradient(180deg, #ffffff 0%, #f0f6ff 100%);
    overflow: hidden;
    position: relative;
}

.cta-bg-glow {
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.cta-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
}

.cta-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 48px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.cta-box {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-large);
    padding: 48px;
    backdrop-filter: blur(15px);
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 32px;
    align-items: center;
    width: 100%;
    max-width: 760px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    text-align: left;
    margin: 0 auto;
}

.cta-product-display {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-product-img {
    width: 100%;
    max-width: 220px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.06));
}

.promo-tag {
    background: var(--accent-orange-bg);
    color: var(--accent-red);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 6px 14px;
    border-radius: 99px;
    display: inline-block;
    margin-bottom: 16px;
}

.cta-bottom-title {
    margin-top: 48px;
    margin-bottom: 0;
}

.text-orange {
    color: #E55E0D;
}

.cta-box h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.cta-price .price-split {
    font-size: 0.98rem;
    font-weight: 500;
    color: var(--text-secondary);
    display: block;
}

.btn-cta-buy {
    display: block;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-hover));
    color: white;
    padding: 18px;
    border-radius: 99px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.15);
    transition: var(--transition-smooth);
    text-align: center;
}

.btn-cta-buy:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 102, 204, 0.25);
}

.btn-cta-buy-final {
    display: block;
    background: linear-gradient(135deg, #24c153 0%, #1c9d41 100%); /* Verde de alta conversão, bem destacado */
    color: white;
    padding: 20px 40px;
    border-radius: 99px;
    font-weight: 800;
    text-decoration: none;
    font-size: 1.35rem;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 30px rgba(36, 193, 83, 0.25);
    transition: var(--transition-smooth);
    text-align: center;
    margin-top: 12px;
}

.btn-cta-buy-final:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 35px rgba(36, 193, 83, 0.4);
}

.cta-guarantees {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
    grid-column: span 2;
}

.cta-guarantees span {
    font-size: 0.78rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* ==========================================================================
   CONSULTANT SECTION
   ========================================================================== */
.consultant-section {
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 100px 0;
}

.consultant-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    text-align: left;
}

.consultant-benefit-card {
    background: #f8fafc;
    padding: 32px 24px;
    border-radius: var(--border-radius-large);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.consultant-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
}

.benefit-icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 20px;
}

.consultant-benefit-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.consultant-benefit-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.btn-consultant {
    display: inline-block;
    background: linear-gradient(135deg, #E55E0D 0%, #ff7e29 100%);
    color: #ffffff;
    padding: 18px 54px;
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 99px;
    box-shadow: 0 12px 30px rgba(229, 94, 13, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.btn-consultant:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 16px 35px rgba(229, 94, 13, 0.45);
    filter: brightness(1.05);
}

@keyframes pulseBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
        text-shadow: 0 0 10px rgba(36, 193, 83, 0.2);
    }
    50% {
        transform: translateY(-5px) scale(1.04);
        text-shadow: 0 0 20px rgba(36, 193, 83, 0.45);
        color: #1eaf48;
    }
}

.consultant-cta-animated {
    font-size: clamp(1.2rem, 3.5vw, 1.6rem);
    font-weight: 900;
    color: #24c153;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 22px;
    display: inline-block;
    animation: pulseBounce 2.5s infinite ease-in-out;
    width: 100%;
    text-align: center;
}

/* Animation keyframes for glowing elements */
@keyframes projPulseGlow {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.02); color: #ff7621; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes projPulseGlowFeatured {
    0% { transform: scale(1.03); box-shadow: 0 8px 25px rgba(229, 94, 13, 0.08); }
    50% { transform: scale(1.06); box-shadow: 0 16px 35px rgba(229, 94, 13, 0.22); border-color: #ff7621; }
    100% { transform: scale(1.03); box-shadow: 0 8px 25px rgba(229, 94, 13, 0.08); }
}

.earnings-projection-box {
    margin-top: 56px;
    background: rgba(229, 94, 13, 0.02);
    padding: 40px 32px;
    border-radius: var(--border-radius-large);
    border: 1px solid rgba(229, 94, 13, 0.08);
}

.projection-title {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 32px;
    text-align: center;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.projection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
    align-items: center;
}

.projection-card {
    background: #ffffff;
    padding: 24px 20px;
    border-radius: var(--border-radius-large);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.projection-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
}

.proj-sales {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 10px;
}

.proj-earnings {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
    animation: projPulseGlow 3s infinite ease-in-out;
}

.proj-period {
    font-size: 0.72rem;
    color: var(--text-tertiary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.featured-proj {
    border-color: #E55E0D;
    background: linear-gradient(180deg, #ffffff 0%, #fffaf6 100%);
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(229, 94, 13, 0.08);
    z-index: 2;
    animation: projPulseGlowFeatured 4s infinite ease-in-out;
}

.featured-proj:hover {
    transform: scale(1.06) translateY(-3px);
}

.featured-proj .proj-earnings {
    color: #E55E0D;
}

.proj-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #E55E0D;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 99px;
    letter-spacing: 0.08em;
    box-shadow: 0 4px 10px rgba(229, 94, 13, 0.2);
}

.projection-cta-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 24px;
    line-height: 1.6;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: #2E358D; /* Azul Royal escuro */
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
}

.footer-brand {
    display: flex;
    gap: 16px;
}

.footer-brand h4 {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
    color: var(--brand-orange); /* Título no laranja */
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

.footer-column h5 {
    font-size: 0.85rem;
    color: var(--brand-orange); /* Títulos das colunas no laranja */
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.footer-column a, 
.footer-column p {
    display: block;
    color: rgba(255, 255, 255, 0.8); /* Textos em cor clara */
    text-decoration: none;
    font-size: 0.88rem;
    margin-bottom: 12px;
    transition: var(--transition-smooth);
}

.footer-column a:hover {
    color: #ffffff; /* Link com hover em branco puro */
}

.footer-legal {
    grid-column: span 3;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    margin-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
}

.anvisa-fine-print {
    max-width: 500px;
    line-height: 1.5;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
    background: #f5f5f7;
}

.testimonials-summary-box {
    background: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-large);
    padding: 48px;
    margin-top: 36px;
    box-shadow: var(--glass-shadow);
}

.btn-whatsapp-testimonials {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
    padding: 18px 36px;
    border-radius: 99px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.05rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.2);
    transition: var(--transition-smooth);
    margin-top: 24px;
}

.btn-whatsapp-testimonials:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp-testimonials .wa-icon {
    font-size: 1.3rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN (BREAKPOINTS)
   ========================================================================== */
@media (max-width: 900px) {
    .hero-section {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 80px;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .hero-visual-showcase {
        width: 100%;
    }
    
    .interactive-showcase-centered {
        grid-template-columns: 1fr;
        height: auto;
        gap: 24px;
        justify-items: center;
        max-width: 100%;
    }
    
    .showcase-cards-left, .showcase-cards-right {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        width: 100%;
    }
    
    .showcase-visual-center {
        order: -1; /* Embalagem no topo */
        height: auto;
        margin-bottom: 10px;
    }
    
    .showcase-box-img {
        position: static;
        width: 150px; /* Aumentado proporcionalmente para caber bem na tela móvel */
        margin: 10px auto;
    }
    
    .showcase-card {
        flex-direction: row !important;
        text-align: left !important;
        justify-content: flex-start !important;
        max-width: 100% !important;
        gap: 12px !important;
    }
    
    .showcase-card .card-info {
        order: 2 !important;
        text-align: left !important;
    }
    
    .showcase-card .card-icon-glow {
        order: 1 !important;
    }
    
    .connector-svg-centered {
        display: none; /* Oculta as linhas conectoras */
    }
    
    .card-align-right {
        text-align: left;
        justify-content: flex-start;
    }
    
    .text-right {
        text-align: left;
    }
    
    .hero-bottom-bar {
        grid-template-columns: 1fr 1fr;
        display: grid;
        gap: 24px;
    }
    
    .grid-2, .pain-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    
    .bento-card-large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .bento-card-large .bento-inner-split {
        grid-template-columns: 1fr;
    }
    
    .bento-image-side {
        height: 200px;
    }
    
    .ingredients-tabs-container {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 32px;
    }
    
    .ingredients-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .cta-box {
        grid-template-columns: 1fr;
        padding: 32px;
        max-width: 500px;
    }
    
    .cta-guarantees {
        grid-column: span 1;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-legal {
        grid-column: span 1;
        flex-direction: column;
        align-items: flex-start;
    }

    .header-container {
        padding: 8px 16px;
        gap: 10px;
    }
    
    .logo-image {
        height: 38px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .mobile-menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(22, 28, 45, 0.98);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 20px 24px;
        gap: 16px;
        max-width: 100%;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
        z-index: 1000;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-links.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links a {
        font-size: 0.95rem;
        font-weight: 600;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        width: 100%;
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }

    .btn-buy-header {
        font-size: 0.72rem;
        padding: 5px 12px;
    }

    .btn-buy-solution {
        padding: 14px 40px;
        font-size: 1.05rem;
    }

    .solution-action {
        text-align: center;
        margin-top: 24px;
    }

    .consultant-benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .btn-consultant {
        padding: 16px 38px;
        font-size: 1.05rem;
    }

    .projection-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 450px;
        margin: 0 auto 24px auto;
    }

    .featured-proj {
        transform: none;
        animation: none;
        border: 2px solid #E55E0D;
    }

    .featured-proj:hover {
        transform: translateY(-3px);
    }
}

@media (max-width: 600px) {
    .showcase-cards-left, .showcase-cards-right {
        grid-template-columns: 1fr;
    }
    
    .hero-bottom-bar {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 20px;
    }
    
    .logo-image {
        height: 34px;
    }
    
    .btn-buy-header {
        font-size: 0.68rem;
        padding: 4px 8px;
    }

    .btn-buy-solution {
        display: block;
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        padding: 14px 24px;
        font-size: 1rem;
    }

    .btn-consultant {
        display: block;
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        padding: 16px 24px;
        font-size: 1rem;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .image-wrapper-cozy {
        height: 320px;
    }
    
    .testimonial {
        padding: 16px 20px;
        font-size: 1rem;
    }
    
    .nutritional-table th, 
    .nutritional-table td {
        padding: 12px 16px;
        font-size: 0.8rem;
    }
    
    .alert-box {
        padding: 16px;
    }
    
    .faq-list {
        padding: 8px 16px;
    }
    
    .faq-question {
        font-size: 0.95rem;
    }
    
    .cta-box {
        padding: 24px;
    }
    
    .ingredients-card-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON (CANTO INFERIOR DIREITO)
   ========================================================================== */
.whatsapp-float-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    animation: wa-float 3s ease-in-out infinite;
}

.whatsapp-float-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.whatsapp-float-icon svg {
    fill: #ffffff;
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.whatsapp-float-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    opacity: 0.75;
    z-index: 1;
    animation: wa-pulse 2s cubic-bezier(0.25, 0.8, 0.25, 1) infinite;
}

.whatsapp-float-tooltip {
    position: absolute;
    right: 72px;
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    background: #1d1d1f;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.whatsapp-float-tooltip::before {
    content: "";
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent #1d1d1f;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6), 0 4px 12px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

.whatsapp-float-btn:hover .whatsapp-float-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

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

@keyframes wa-pulse {
    0% {
        transform: scale(1);
        opacity: 0.75;
    }
    50% {
        opacity: 0.25;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .whatsapp-float-btn {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
    }
    
    .whatsapp-float-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .whatsapp-float-tooltip {
        display: none;
    }
}

