  /*
  Theme Name: Amazonia Taste Pro
  Theme URI: https://amazoniataste.jp
  Author: Amazonia Taste Engineering
  Description: Tema Premium Customizado para a Amazonia Taste focado em SEO, GEO e Performance. (AIO Architecture).
  Version: 1.0.2
  Text Domain: amazonia-taste
  */

  /* Google Fonts: carregadas de forma assíncrona via functions.php (ver amazonia_load_fonts_async).
     O @import aqui causava render-blocking duplo — removido para ganho de ~810ms no LCP. */

  :root {
    --bg-primary: #0A0A0A;
    --bg-surface: #141414;
    --bg-glass: rgba(20, 20, 20, 0.6);
    --text-primary: #F8FAFC;
    --text-secondary: #94A3B8;
    --accent-gold: #D4AF37;
    --accent-glow: rgba(212, 175, 55, 0.15);
    --border-subtle: rgba(255, 255, 255, 0.08);

    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 32px;
    --space-lg: 64px;
    --space-xl: 120px;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
  }

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

  .mobile-break {
    display: none;
  }

  .pc-break {
    display: block;
  }

  /* Prevent horizontal overflow on all viewports */
  html {
    overflow-x: hidden;
    max-width: 100%;
  }

  body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.98rem;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    max-width: 100%;
  }

  .text-base {
    font-size: 0.98rem;
  }

  .text-secondary {
    color: var(--text-secondary);
    line-height: 2rem;
  }

  h1,
  h2,
  h3,
  h4 {
    /* font-family: var(--font-heading); */
    font-family: "Cormorant Garamond", serif;
    font-weight: 300;
    line-height: 1.2;
    color: var(--text-primary);
  }

  a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: 0.3s ease;
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    /* Melhora nitidez em navegadores Webkit */
    -ms-interpolation-mode: bicubic;
    /* Melhora interpolação no IE/Edge antigo */
  }

  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    box-sizing: border-box;
  }

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

  .mt-5 {
    margin-top: 40px;
  }

  .bg-surface {
    background-color: var(--bg-surface);
  }

  /* BUTTONS */
  .cta-button,
  .outline-button {
    display: inline-block;
    padding: 16px 32px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--accent-gold);
    white-space: nowrap;
  }

  .cta-button {
    background-color: var(--accent-gold);
    color: #000;
    font-weight: 500;
  }

  .cta-button:hover {
    background-color: #FFF;
    border-color: #FFF;
    box-shadow: 0 0 30px var(--accent-gold);
    transform: translateY(-3px);
  }

  /* HERO CTAs */
  .hero-ctas {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
  }

  .hero-ctas .cta-button {
    min-width: 200px;
    text-align: center;
  }

  /* Amazon CTA - Outline Style */
  .cta-amazon {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 32px;
    border: 1px solid var(--accent-gold);
    background: transparent;
    color: #FFF;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 200px;
    position: relative;
    font-family: var(--font-heading);
  }

  .cta-amazon:hover {
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
    color: var(--accent-gold);
  }

  .cta-amazon .amazon-text {
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-weight: 500;
  }

  /* SHIMMER ANIMATION */
  @keyframes shimmer {
    0% {
      transform: translateX(-100%) skewX(-15deg);
    }

    100% {
      transform: translateX(200%) skewX(-15deg);
    }
  }

  @keyframes pulse-glow {
    0% {
      box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
    }

    50% {
      box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
    }

    100% {
      box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
    }
  }

  .outline-button {
    background-color: transparent;
    color: var(--text-primary);
  }

  .outline-button:hover {
    background-color: var(--accent-gold);
    color: #000;
  }

  /* BREADCRUMBS GLOBAL COMPONENT */
  .breadcrumbs-section {
    width: 100%;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
  }

  .breadcrumbs,
  #breadcrumbs {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
  }

  /* Maior especificidade: garante padding mesmo contra overrides inline (.container) */
  .breadcrumbs-section .breadcrumbs,
  .breadcrumbs-section #breadcrumbs {
    padding: 20px var(--space-lg) !important;
  }

  .breadcrumbs a,
  .breadcrumb-home {
    color: var(--accent-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
  }

  .breadcrumbs a:hover {
    color: #FFF;
    text-decoration-color: #FFF;
  }

  /* Fix: Yoast breadcrumb gera heading interno (h6/h2 "You are here:") que quebra a hierarquia.
     Removemos do fluxo de acessibilidade sem impactar navegação visual. */
  .breadcrumbs .screen-reader-text,
  #breadcrumbs .screen-reader-text,
  .breadcrumb-trail .trail-title,
  .yoast-breadcrumbs h2,
  .yoast-breadcrumbs h6,
  nav[id="breadcrumbs"] h2,
  nav[id="breadcrumbs"] h6 {
    display: none !important;
  }

  /* HEADER & NAVBAR */
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-subtle);
    padding: 10px 0;
    /* Ajustado de 15px para acomodar logo maior sem alterar altura do header (75px) */
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.3s ease;
  }

  .site-header.header-hidden {
    transform: translateY(-100%);
  }

  .site-header.header-scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }

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

  .site-logo-img {
    height: 66px;
    /* Aumentado de 45px/40px para melhor legibilidade */
    width: 150px;
    /* Proporcional ao logo original (2412x1071) */
    aspect-ratio: 2412 / 1071;
    object-fit: contain;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    /* Evita serrilhado ao redimensionar */
    image-rendering: auto;
    transition: transform 0.3s ease;
  }

  .logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
  }

  @media (max-width: 991px) {
    .site-logo-img {
      height: 48px;
      /* Aumentado de 35px */
      width: 107px;
      /* Proporcional para 45px de altura */
    }
  }

  .nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: var(--space-lg);
  }

  .nav-list a {
    color: var(--text-primary);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: bold;
    opacity: 0.8;
    transition: opacity 0.3s;
  }

  .nav-list a:hover {
    opacity: 1;
    color: var(--accent-gold);
  }

  .nav-cta {
    padding: 12px 25px;
    font-size: 0.75rem;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold) !important;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .nav-cta:hover {
    background-color: var(--accent-gold) !important;
    color: #000 !important;
  }

  /* ── HAMBURGER BUTTON ── */
  .menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 2000;
    /* Sempre acima do overlay */
    padding: 0;
    flex-shrink: 0;
  }

  .icon-wrap {
    width: 28px;
    height: 20px;
    position: relative;
  }

  .seg {
    position: absolute;
    left: 0;
    height: 1.5px;
    background: var(--accent-gold);
    border-radius: 2px;
    transition:
      top 0.35s cubic-bezier(0.77, 0, 0.18, 1),
      transform 0.35s cubic-bezier(0.77, 0, 0.18, 1),
      width 0.35s cubic-bezier(0.77, 0, 0.18, 1),
      opacity 0.25s;
  }

  .seg-a {
    width: 28px;
    top: 0;
  }

  .seg-b {
    width: 18px;
    top: 9px;
  }

  /* Linha curta — visual assimétrico */
  .seg-c {
    width: 28px;
    top: 18px;
  }

  /* → X quando aberto — Agora oculto para usar o botão dedicado */
  .menu-toggle.is-open {
    opacity: 0;
    pointer-events: none;
  }

  @media (max-width: 991px) {
    .menu-toggle {
      display: flex;
    }

    /* Esconde o desktop nav no mobile */
    .main-navigation {
      display: none;
    }
  }

  /* ── MOBILE OVERLAY — Geometric Reveal ── */
  .mob-overlay {
    display: none;
    /* Só existe em mobile */
    position: fixed;
    inset: 0;
    z-index: 1050;
    pointer-events: none;
  }

  @media (max-width: 991px) {
    .mob-overlay {
      display: block;
    }
  }

  /* Painel escuro que escala da direita */
  .mob-panel {
    position: absolute;
    inset: 0;
    background: #0D0D0D;
    transform-origin: top right;
    transform: scaleX(0);
    transition: transform 0.55s cubic-bezier(0.77, 0, 0.18, 1);
  }

  .mob-overlay.is-active {
    pointer-events: all;
  }

  .mob-overlay.is-active .mob-panel {
    transform: scaleX(1);
  }

  /* Menu body — aparece após o painel */
  .mob-body {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0 40px;
    opacity: 0;
    transition: opacity 0.25s 0.3s;
    pointer-events: none;
  }

  .mob-overlay.is-active .mob-body {
    opacity: 1;
    pointer-events: all;
  }

  /* Close Button */
  .mob-close {
    position: absolute;
    top: 100px;
    right: 40px;
    background: none;
    border: none;
    color: #FFF;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2500;
    /* Extremely high to be sure */
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(0.5);
  }

  .mob-overlay.is-active .mob-close {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: scale(1.2);
    transition-delay: 0.5s;
  }

  .mob-close svg {
    stroke: var(--accent-gold);
    stroke-width: 1;
    /* Thin and elegant */
  }

  .mob-close:hover {
    opacity: 0.7;
  }

  .mob-menu-header {
    margin-bottom: 32px;
    margin-top: 100px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s 0.2s cubic-bezier(0.23, 1, 0.32, 1);
  }

  .mob-overlay.is-active .mob-menu-header {
    opacity: 1;
    transform: translateY(0);
  }

  .mob-menu-title {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 5px;
    color: var(--accent-gold);
    font-weight: 500;
  }

  /* Lista */
  .mob-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mob-item {
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  }

  .mob-item:first-child {
    border-top: 0.5px solid rgba(255, 255, 255, 0.08);
  }

  .mob-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    width: 100%;
    cursor: pointer;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
  }

  /* Número */
  .mob-num {
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--accent-gold);
    min-width: 30px;
    font-weight: 600;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
      opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  }

  /* Label / Link */
  .mob-label {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: -1px;
    line-height: 1;
    text-decoration: none;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
      opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1),
      color 0.2s;
  }

  .mob-label--gold {
    color: var(--accent-gold);
  }

  .mob-row:hover .mob-label {
    color: var(--accent-gold);
  }

  /* Seta */
  .mob-arrow {
    margin-left: auto;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.2);
    transform: translateX(-8px) translateY(100%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
      opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1),
      color 0.2s;
  }

  .mob-row:hover .mob-arrow {
    color: var(--accent-gold);
    transform: translateX(0) translateY(0) !important;
  }

  /* Slide-up quando overlay ativo */
  .mob-overlay.is-active .mob-num,
  .mob-overlay.is-active .mob-label,
  .mob-overlay.is-active .mob-arrow {
    transform: translateY(0) translateX(0);
    opacity: 1;
  }

  /* Stagger por item */
  .mob-overlay.is-active .mob-item:nth-child(1) .mob-num,
  .mob-overlay.is-active .mob-item:nth-child(1) .mob-label,
  .mob-overlay.is-active .mob-item:nth-child(1) .mob-arrow {
    transition-delay: 0.22s;
  }

  .mob-overlay.is-active .mob-item:nth-child(2) .mob-num,
  .mob-overlay.is-active .mob-item:nth-child(2) .mob-label,
  .mob-overlay.is-active .mob-item:nth-child(2) .mob-arrow {
    transition-delay: 0.29s;
  }

  .mob-overlay.is-active .mob-item:nth-child(3) .mob-num,
  .mob-overlay.is-active .mob-item:nth-child(3) .mob-label,
  .mob-overlay.is-active .mob-item:nth-child(3) .mob-arrow {
    transition-delay: 0.36s;
  }

  .mob-overlay.is-active .mob-item:nth-child(4) .mob-num,
  .mob-overlay.is-active .mob-item:nth-child(4) .mob-label,
  .mob-overlay.is-active .mob-item:nth-child(4) .mob-arrow {
    transition-delay: 0.43s;
  }

  .mob-overlay.is-active .mob-item:nth-child(5) .mob-num,
  .mob-overlay.is-active .mob-item:nth-child(5) .mob-label,
  .mob-overlay.is-active .mob-item:nth-child(5) .mob-arrow {
    transition-delay: 0.50s;
  }

  .mob-overlay.is-active .mob-item:nth-child(6) .mob-num,
  .mob-overlay.is-active .mob-item:nth-child(6) .mob-label,
  .mob-overlay.is-active .mob-item:nth-child(6) .mob-arrow {
    transition-delay: 0.57s;
  }

  .mob-overlay.is-active .mob-item:nth-child(7) .mob-num,
  .mob-overlay.is-active .mob-item:nth-child(7) .mob-label,
  .mob-overlay.is-active .mob-item:nth-child(7) .mob-arrow {
    transition-delay: 0.64s;
  }


  /* Rodapé do overlay */
  .mob-foot {
    margin-top: 48px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s 0.65s cubic-bezier(0.23, 1, 0.32, 1);
  }

  .mob-overlay.is-active .mob-foot {
    opacity: 1;
    transform: translateY(0);
  }

  .mob-socials {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
  }

  .mob-socials a {
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.3s;
  }

  .mob-socials a:hover {
    color: var(--accent-gold);
  }

  /* HERO SECTION */
  .hero-section {
    padding: 150px 0;
    background-size: cover;
    background-position: center;
    text-align: center;
    border-bottom: 1px solid var(--border-subtle);
  }

  .hero-badge {
    display: inline-block;
    padding: 5px 15px;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: var(--space-md);
  }

  .hero-title {
    font-size: clamp(1.5rem, 6vw, 3.5rem);
    font-weight: 400;
    margin-bottom: var(--space-md);
    line-height: 1.4;
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  .hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    letter-spacing: 2px;
  }

  /* LAYOUT UTILS */
  .section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
  }

  /* TL;DR SUMMARY */
  .tldr-summary {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-top: 2px solid var(--accent-gold);
    padding: var(--space-lg);
    max-width: 900px;
    margin: calc(var(--space-md) * -1) auto var(--space-xl) auto;
    position: relative;
  }

  .tldr-summary h2 {
    font-size: 1.3rem;
    margin-bottom: var(--space-md);
    color: var(--accent-gold);
    font-weight: 500;
  }

  .tldr-summary ul {
    list-style: none;
  }

  .tldr-summary li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    color: var(--text-secondary);
  }

  .tldr-summary li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
  }

  .tldr-summary strong {
    color: var(--text-primary);
  }

  /* GRID SPLIT CONTENT */
  .content-section,
  .timing-section,
  .contact-page-section {
    padding: var(--space-xl) 0;
  }

  .grid-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
  }

  .grid-split.reverse .grid-text {
    order: 2;
  }

  .grid-split.reverse .grid-image {
    order: 1;
  }

  .grid-text h2 {
    margin-bottom: var(--space-sm);
    font-size: 2rem;
  }

  .grid-text p {
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
    font-size: 0.98rem;
  }

  .premium-img {
    border: 1px solid var(--border-subtle);
    filter: grayscale(20%);
    transition: 0.4s;
  }

  .premium-img:hover {
    filter: grayscale(0%);
    border-color: var(--accent-gold);
  }

  /* RECIPES */
  .recipes-section {
    padding: var(--space-xl) 0;
    background: linear-gradient(rgba(10, 10, 10, 0.82), rgba(10, 10, 10, 0.82)), url('assets/images/recipe.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 5px;
    font-family: 'Cormorant Garamond', serif;
    color: var(--accent-gold);
  }

  .subtitle-text {
    color: var(--accent-gold);
    letter-spacing: 2px;
    margin-bottom: var(--space-lg);
    font-family: var(--font-heading);
  }

  .cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
  }

  .recipe-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    transition: transform 0.4s;
  }

  .recipe-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
  }

  /* Cabeçalho da Seção de Receitas */
  .recipes-section-header {
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 20px;
    margin-bottom: 40px;
  }

  /* Limitação das Tags na Home a no Máximo 2 Linhas (Ajustado para 90px para evitar cortes) */
  .recipe-tags-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
    max-height: 90px;
    overflow: hidden;
  }

  /* Design Unificado de Tags (Pills Dourados) */
  .recipe-tag-pill,
  body.theme-dark .tag-pill,
  body.theme-light .tag-pill {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid var(--border-subtle) !important;
    color: var(--accent-gold) !important;
    font-size: 0.75rem !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    margin: 2px;
  }

  .recipe-tag-pill:hover,
  body.theme-dark .tag-pill:hover,
  body.theme-light .tag-pill:hover {
    border-color: var(--accent-gold) !important;
    background-color: rgba(212, 175, 55, 0.08) !important;
    color: #FFF !important;
    transform: translateY(-1px);
  }

  /* Garante cor correta para links internos em tags do post */
  .tag-pill a {
    color: inherit !important;
    text-decoration: none;
  }

  /* Rodapé da Seção com Link de Ação (Alinhado à direita no PC, esquerda no Mobile) */
  .recipes-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
  }

  .recipes-view-all {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    white-space: nowrap;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .recipes-view-all:hover {
    color: var(--accent-gold);
  }

  @media (max-width: 768px) {
    .recipes-footer {
      justify-content: flex-start;
    }
  }

  .recipe-content {
    padding: var(--space-md);
  }

  .recipe-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #FFF;
  }

  .recipe-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* CONVERSION BOX - PREMIUM UPGRADE */
  .final-conversion-box {
    background: radial-gradient(circle at top left, #1a1a1a 0%, #080808 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 100px 40px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: var(--space-xl);
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  }

  .final-conversion-box::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    pointer-events: none;
  }

  .conversion-title {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
    margin-bottom: 30px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -2px;
  }

  .conversion-subtitle {
    color: var(--text-secondary);
    margin-bottom: 60px;
    font-size: 1.25rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .final-cta {
    font-size: 1.8rem;
    padding: 35px 100px;
    width: auto;
    min-width: 550px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 50%, #D4AF37 100%);
    background-size: 200% auto;
    border: none;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    animation: pulse-glow 3s infinite ease-in-out;
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
  }

  .final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 4s infinite;
  }

  .final-cta:hover {
    transform: translateY(-5px) scale(1.02);
    background-position: right center;
    box-shadow: 0 20px 45px rgba(212, 175, 55, 0.5);
    color: #000;
  }

  @media (max-width: 768px) {
    .final-conversion-box {
      padding: 60px 20px;
    }

    .final-cta {
      min-width: 100%;
      padding: 20px 15px;
      font-size: 1rem;
      flex-direction: row !important;
      flex-wrap: nowrap !important;
      gap: 8px !important;
      justify-content: center;
    }

    .final-cta img {
      height: 45px !important;
      /* Reduzi levemente para 45px para garantir que caiba em iPhones menores */
    }
  }

  /* FAQ ACCORDION */
  .faq-section {
    padding: var(--space-xl) 0;
    background: var(--bg-surface);
  }

  .faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    margin-top: var(--space-lg);
  }

  .faq-item {
    border-bottom: 1px solid var(--border-subtle);
    padding: 20px 0;
  }

  .faq-item h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 10px;
  }

  .faq-item p {
    color: var(--text-secondary);
  }

  /* FOOTER */
  .site-footer {
    padding: var(--space-xl) 0 40px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-lg);
  }

  .footer-logo-link {
    display: block;
    margin-bottom: 20px;
  }

  .footer-logo-img {
    height: 70px;
    /* Aumentado de 55px */
    width: 158px;
    /* Proporcional para o logo original (2412x1071) */
    aspect-ratio: 2412 / 1071;
    object-fit: contain;
    display: block;
    opacity: 0.9;
    image-rendering: -webkit-optimize-contrast;
    /* Evita serrilhado */
    image-rendering: auto;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .footer-brand h3 {
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .footer-brand p {
    color: var(--text-secondary);
    max-width: 300px;
  }

  .footer-links h4,
  .footer-links .footer-section-title {
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 0;
  }

  .footer-links ul {
    list-style: none;
  }

  .footer-links li {
    margin-bottom: 10px;
  }

  .footer-links a {
    color: var(--text-secondary);
  }

  .footer-links a:hover {
    color: #FFF;
  }

  /* RESPONSIVE — 900px: layout de gráficos e grídes de conteúdo */
  @media (max-width: 900px) {
    .grid-split {
      grid-template-columns: 1fr;
    }

    .grid-split.reverse .grid-text {
      order: 1;
    }

    .grid-split.reverse .grid-image {
      order: 2;
    }

    .cards-grid {
      grid-template-columns: 1fr;
    }

    .footer-grid {
      grid-template-columns: 1fr;
    }

    .site-footer {
      padding: var(--space-xs) 0 40px;
    }

    /* NOTA: .nav-list e .main-navigation são gerenciados pelo bloco 991px.
      NÃO redefinir display/position aqui para não conflitar com o overlay. */

    .section-header-flex {
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
    }

    .hide-mobile {
      display: none;
    }

    .hero-section {
      padding: 100px 0;
    }

    .final-conversion-box {
      padding: var(--space-lg) var(--space-sm);
    }

    .final-cta {
      font-size: 1rem;
      padding: 15px 20px;
    }

    .breadcrumbs-section .breadcrumbs,
    .breadcrumbs-section #breadcrumbs {
      padding: 14px 20px !important;
    }

    /* Health Tools Edge-to-Edge Image on Mobile */
    .health-tools-section {
      padding-top: 0;
    }

    .health-tools-section .container {
      padding: 0;
      max-width: 100%;
    }

    .health-tools-section .grid-text {
      padding: 40px 20px 80px;
    }

    .health-tools-section .premium-img {
      border: none;
      filter: none;
      width: 100%;
    }

    /* Animation UI Mobile Legibility Adjustments */
    .animation-ui .eyebrow {
      font-size: 12px !important;
      letter-spacing: 4px !important;
      margin-bottom: 8px !important;
    }

    .animation-ui .subtitle {
      font-size: 11px !important;
      letter-spacing: 2px !important;
    }

    .animation-placeholder-v3 p.badge-bottom {
      font-size: 12px !important;
      letter-spacing: 3px !important;
      bottom: 0;
    }
  }

  /* SEARCH FORM STYLING */
  .search-form {
    display: flex;
    width: 100%;
    border: 1px solid var(--border-subtle);
    background: var(--bg-surface);
    align-items: stretch;
    margin: 0 auto;
    max-width: 500px;
    padding: 2px;
  }

  .search-form label {
    flex-grow: 1;
    display: flex;
  }

  .search-form .screen-reader-text {
    display: none;
  }

  /* Hide "Search for:" */
  .search-form input[type="search"],
  .search-form .search-field {
    background: transparent;
    border: none;
    color: #FFF;
    padding: 20px;
    flex-grow: 1;
    outline: none;
    font-family: var(--font-body);
    width: 100%;
    font-size: 1rem;
  }

  .search-form button[type="submit"],
  .search-form .search-submit {
    background: var(--accent-gold);
    border: none;
    padding: 0 35px;
    cursor: pointer;
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: background 0.3s;
  }

  .search-form .search-submit:hover {
    background: #FFF;
  }

  /* ── CONTACT & B2B PAGE UTILS ── */
  .b2b-intro-text {
    margin-top: 40px;
    margin-bottom: 40px;
    border-left: 2px solid var(--accent-gold);
    padding-left: 20px;
  }

  .b2b-intro-text p {
    font-size: 0.98rem;
    line-height: 1.6;
    color: #FFF;
    margin: 0;
  }

  .required-note {
    margin-top: 20px;
    margin-bottom: 40px;
    font-size: 0.85rem;
    color: var(--accent-gold);
    opacity: 0.8;
  }

  /* ── CONTACT FORM 7 GLOBAL STYLES (Amazonia Taste Standard) ── */

  .contact-form-wrap .cf7-row {
    display: grid;
    gap: 16px;
    margin-bottom: 40px;
  }

  .contact-form-wrap .cf7-col-2 {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form-wrap .cf7-col-1 {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap .cf7-field-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .contact-form-wrap .cf7-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    font-weight: 600;
  }

  .contact-form-wrap .cf7-label .req {
    color: #E05252;
    margin-left: 2px;
  }

  /* ── CF7 INPUTS ── */
  .wpcf7 input[type="text"],
  .wpcf7 input[type="email"],
  .wpcf7 input[type="tel"],
  .wpcf7 input[type="number"],
  .wpcf7 textarea {
    width: 100%;
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 14px 18px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    border-radius: 0;
    -webkit-appearance: none;
    box-sizing: border-box;
  }

  .wpcf7 input:focus,
  .wpcf7 textarea:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px var(--accent-glow);
  }

  .wpcf7 input::placeholder,
  .wpcf7 textarea::placeholder {
    color: #4a5568;
    font-size: 0.9rem;
  }

  .wpcf7 textarea {
    resize: vertical;
    min-height: 160px;
  }

  /* ── RADIO BUTTONS ── */
  .wpcf7-list-item {
    display: inline-block;
    margin: 10px 20px 10px 0;
  }

  .wpcf7-list-item label {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
  }

  .wpcf7-list-item input[type="radio"] {
    accent-color: var(--accent-gold);
    transform: scale(1.2);
    cursor: pointer;
  }

  /* ── SUBMIT ── */
  .wpcf7 input[type="submit"] {
    display: block;
    width: 100%;
    padding: 16px 32px;
    background-color: var(--accent-gold);
    color: #000;
    border: 1px solid var(--accent-gold);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 24px;
  }

  .wpcf7 input[type="submit"]:hover {
    background-color: #FFF;
    border-color: #FFF;
    box-shadow: 0 0 20px var(--accent-glow);
  }

  /* ── VALIDAÇÃO ── */
  .wpcf7-not-valid {
    border-color: #E05252 !important;
  }

  .wpcf7-not-valid-tip {
    color: #E05252;
    font-size: 0.78rem;
    margin-top: 4px;
    display: block;
  }

  .wpcf7-response-output {
    margin-top: 20px;
    padding: 14px 18px;
    border: 1px solid var(--border-subtle);
    font-size: 0.9rem;
    color: var(--text-secondary);
  }

  .wpcf7-mail-sent-ok {
    border-color: var(--accent-gold) !important;
    color: var(--accent-gold) !important;
  }

  .wpcf7-mail-sent-ng {
    border-color: #E05252 !important;
    color: #E05252 !important;
  }

  /* Spinner do CF7 */
  .wpcf7 .ajax-loader {
    display: none;
  }

  /* ═══════════════════════════════════════
    MOBILE OVERFLOW FIX — < 600px
    Reduz padding do container e espaçamentos
    que causavam scroll horizontal no mobile.
  ═══════════════════════════════════════ */
  @media (max-width: 600px) {

    /* Container: de 64px para 20px de padding lateral */
    .container {
      padding: 100px 20px;
    }

    .breadcrumbs-section .breadcrumbs,
    .breadcrumbs-section #breadcrumbs {
      padding: 14px 20px !important;
    }

    /* Seções verticais */
    .content-section,
    .timing-section,
    .recipes-section,
    .faq-section,
    .contact-page-section {
      padding: 60px 0;
    }

    .hero-section {
      padding: 80px 0;
    }

    /* TL;DR box usa margin negativa — corrigir no mobile */
    .tldr-summary {
      margin-left: 0;
      margin-right: 0;
      margin-top: 0;
    }

    /* Garante que nenhum filho vaze além da largura */
    .site-main>* {
      max-width: 100vw;
      overflow-x: hidden;
    }

    /* NOTA: .main-navigation é gerenciado pelo bloco @media (max-width: 991px)
      acima via transform. NÃO redefinir right/width aqui para não conflitar. */

    /* Tabela responsiva */
    .premium-data {
      display: block;
      overflow-x: auto;
      max-width: 100%;
    }

    /* Conversion box */
    .final-conversion-box {
      padding: 40px 20px;
    }

    .final-cta {
      padding: 14px 20px;
      font-size: 0.9rem;
    }

    /* Formulário */
    .contact-form-wrap {
      padding: 24px 16px;
    }

    /* font-size: 16px evita zoom automático no iOS ao focar inputs */
    .wpcf7 input[type="text"],
    .wpcf7 input[type="email"],
    .wpcf7 input[type="tel"],
    .wpcf7 textarea {
      font-size: 16px;
    }
  }

  /* 
  ============================================================
  AMAZONIA TASTE - DNA HQ HERO SYSTEM (GLOBAL)
  ============================================================
  */

  .hero-dna-v3 {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background-color: #000;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 195px 0 120px;
  }

  /* Overlay um pouco mais denso para controle de brilho */
  .hero-dna-v3::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
  }

  .background-atmosphere {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05), transparent 70%);
  }

  .hero-container {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0px 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  /* Hero Left Alignment Modifier */
  .hero--left-align {
    text-align: left !important;
  }

  .hero--left-align .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    max-width: 100%;
    /* Fluido para colar nas bordas */
    padding-left: 8%;
    /* Empurra o texto para a esquerda mas não no centro */
    padding-right: 0;
    position: relative;
  }

  .hero-product-right {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 60%;
    /* Cobre 60% da área */
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    z-index: 5;
    pointer-events: none;
  }

  .hero-product-right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom right;
    /* Cola no canto inferior direito */
    filter: drop-shadow(-20px 20px 60px rgba(0, 0, 0, 0.7));
  }

  @media (max-width: 1100px) {
    .hero--left-align .container {
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      padding-top: 60px;
      padding-left: 5%;
    }

    .hero-product-right {
      position: relative;
      width: 100%;
      max-width: 100%;
      height: auto;
      margin-top: 30px;
      align-self: center;
    }

    .hero-product-right img {
      height: auto;
      transform: none;
    }
  }

  /* _______________________________________________________________________________ NEW COMMMIT ________________________________________________________________________________________ */

  /* ---- HERO SECTION — MOBILE ---- */
  @media (max-width: 768px) {

    .pc-break {
      display: none;
    }

    .mobile-break {
      display: block;
    }

    .hero-dna-v3,
    .home-hero {
      height: auto !important;
      min-height: 100vh;
      padding: 0;
      align-items: center;
      overflow: visible;
    }

    /* Center everything in the container with comfortable top clearance from header */
    .hero--left-align .container {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 130px 20px 0 !important;
      gap: 0;
    }

    .hero-content-left {
      width: 100%;
      align-items: center;
      text-align: center;
    }

    /* Title: spacing from fixed header */
    .hero--left-align .display-title {
      text-align: center;
      margin: 10px 0 20px !important;
      width: 100%;
    }

    .hero-subheadline {
      font-size: 1.1rem;
      text-align: center;
      margin-bottom: 16px;
      letter-spacing: 0.05em;
      width: 100%;
    }

    .hero-support-line {
      font-size: 0.9rem;
      text-align: center;
      margin-bottom: 32px;
      line-height: 1.8;
    }

    /* CTAs centered and stacked */
    .hero--left-align .hero-ctas {
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      width: 100%;
    }

    .hero-ctas .cta-button,
    .hero-ctas .cta-amazon {
      min-width: unset;
      width: 100%;
      max-width: 280px;
      height: 52px;
      font-size: 0.95rem;
    }

    /* Product image — full width, bold focus below CTAs with bottom margin */
    .hero-product-right {
      position: relative !important;
      width: calc(100% + 40px) !important;
      max-width: none !important;
      margin-left: -20px !important;
      margin-right: -20px !important;
      height: auto;
      margin-top: 35px;
      margin-bottom: 20px !important;
      display: flex;
      justify-content: center;
      align-items: center;
      pointer-events: none;
    }

    .hero-product-right img {
      width: 100% !important;
      max-width: 100% !important;
      height: auto;
      object-fit: cover;
      transform: scale(1.05);
      filter: drop-shadow(-10px 10px 30px rgba(0, 0, 0, 0.7));
    }
  }

  /* _______________________________________________________________________________ NEW COMMMIT ________________________________________________________________________________________ */

  /* PHILOSOPHIE SECTION */
  .philosophie-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #000;
  }

  .philosophie-bg-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .philosophie-bg-img {
    width: 60%;
    height: 100%;
    object-fit: cover;
    margin-right: auto;
    display: block;
  }

  .philosophie-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.4) 30%, #000 60%, #000 100%);
    z-index: 2;
  }

  .philosophie-content {
    position: relative;
    z-index: 10;
    max-width: 550px;
    margin-left: auto;
    padding: 80px 0;
  }

  .philosophie-tag {
    color: var(--accent-gold);
    font-size: 1rem;
    letter-spacing: 4px;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    font-weight: 500;
  }

  .philosophie-headline {
    font-family: 'Cormorant Garamond', serif;
    color: var(--accent-gold);
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 30px;
    line-height: 1.3;
    font-weight: 300;
  }

  .philosophie-body {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
  }

  .philosophie-body p {
    margin-bottom: 20px;
  }

  .philosophie-closing {
    font-size: 1.1rem;
    color: var(--accent-gold);
    font-weight: 300;
    font-style: italic;
    opacity: 0.8;
    margin-top: 30px;
  }

  .philosophie-action {
    margin-top: 40px;
  }

  @media (max-width: 991px) {
    .philosophie-bg-img {
      width: 100%;
      height: 50%;
      margin-right: 0;
      object-position: center;
    }

    .philosophie-overlay {
      background: linear-gradient(to top, #000 40%, rgba(0, 0, 0, 0.6) 70%, transparent 100%);
    }

    .philosophie-content {
      margin: 0 auto;
      padding: 280px 0 60px;
    }
  }


  /* URBAN ATHLETE SECTION */
  .urban-athlete-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #000;
  }

  .urban-athlete-bg-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .urban-bg-img {
    width: 70%;
    height: 100%;
    object-fit: cover;
    margin-left: auto;
    display: block;
  }

  @media (max-width: 991px) {
    .urban-bg-img {
      width: 100%;
      height: 50%;
      margin-left: 0;
      object-position: center;
    }
  }

  .urban-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #000 30%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    z-index: 2;
  }

  .urban-athlete-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    padding: 80px 0;
  }

  .urban-eyebrow {
    display: block;
    color: var(--accent-gold);
    font-size: 0.98rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    font-weight: 500;
  }

  .urban-headline {
    font-family: 'Cormorant Garamond', serif;
    color: var(--accent-gold);
    font-size: clamp(2.5rem, 6vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 40px;
    font-weight: 300;
  }

  .urban-body {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 50px;
  }

  .urban-body p {
    margin-bottom: 20px;
    text-align: left;
  }

  .urban-pillars {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
  }

  .urban-pillar {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .pillar-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent-gold);
    border-radius: 50%;
    color: var(--accent-gold);
    padding: 10px;
  }

  .pillar-icon svg {
    width: 100%;
    height: 100%;
  }

  .pillar-text {
    color: #FFF;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 1px;
  }

  @media (max-width: 991px) {
    .urban-overlay {
      background: linear-gradient(to top, #000 53%, rgba(0, 0, 0, 0.5) 70%, transparent 100%);
    }

    .urban-athlete-content {
      text-align: center;
      max-width: 100%;
      padding: 280px 0 50px;
    }

    .urban-pillars {
      justify-content: flex-start;
      gap: 30px;
    }

    .urban-eyebrow,
    .urban-headline {
      text-align: left;
    }

  }

  /* MARKET COMPARISON SECTION */
  .market-section {
    padding: 100px 0 0;
    background-color: #0A0A0A;
    position: relative;
  }

  .market-intro-row {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 80px;
  }

  .market-intro-content {
    flex: 1;
  }

  .market-eyebrow {
    display: block;
    color: var(--accent-gold);
    font-size: 0.98rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-family: var(--font-heading);
  }

  .market-headline {
    font-family: 'Cormorant Garamond', serif;
    color: var(--accent-gold);
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 300;
  }

  .market-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.8;
  }

  .market-text p {
    margin-bottom: 20px;
  }

  .market-comparison-grid {
    flex: 1.2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .comparison-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 4px;
    transition: all 0.3s ease;
  }

  .comparison-card.card-amazonia {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.05);
  }

  .comparison-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
  }

  .card-amazonia .comparison-header {
    border-bottom-color: rgba(212, 175, 55, 0.2);
  }

  .comp-title {
    font-size: 1.1rem;
    color: #FFF;
    font-weight: 500;
  }

  .card-amazonia .comp-title {
    color: var(--accent-gold);
  }

  .status-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .icon-x {
    color: var(--accent-gold);
    opacity: 0.6;
  }

  .icon-check {
    color: var(--accent-gold);
  }

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

  .comp-list li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 12px;
    position: relative;
    padding-left: 15px;
  }

  .comp-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.3);
  }

  .card-amazonia .comp-list li {
    color: #FFF;
  }

  /* MARKET SIGNS 5 CARDS */
  .market-signs {
    margin: 80px 0 20px;
  }

  .market-signs-title {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    color: var(--accent-gold);
    font-size: 1.6rem;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 2px;
  }

  .market-signs-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
  }

  .market-sign-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.02);
    padding: 30px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
  }

  .market-sign-icon {
    width: 100px;
    height: 100px;
    color: var(--accent-gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .market-sign-card h4 {
    color: var(--accent-gold);
    font-size: 0.95rem;
    margin-bottom: 15px;
    font-weight: 500;
    letter-spacing: 1px;
  }

  .market-sign-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    line-height: 1.6;
    margin: 0;
  }

  .market-bridge {
    text-align: center;
    margin: 80px 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--accent-gold);
    font-style: italic;
    font-weight: 300;
  }

  .market-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .market-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.02);
    transition: transform 0.3s ease;
    text-decoration: none;
  }

  .market-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
  }

  .market-card-icon {
    width: 50px;
    height: 50px;
    color: var(--accent-gold);
  }

  .market-card h3 {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 500;
  }

  .market-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
  }

  .market-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .market-card-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0.7;
  }

  .market-card-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .market-card:hover .market-card-link {
    opacity: 1;
    letter-spacing: 2px;
  }

  .market-card:hover .market-card-link svg {
    transform: translateX(5px);
  }

  @media (max-width: 991px) {
    .market-section {
      padding: 50px 0 0;
    }
  }



  /* SUPERFOOD SECTION */
  .superfood-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #000;
  }

  .superfood-features-section {
    background-color: #000;
    padding: 50px 0 30px 0;
  }

  .superfood-bg-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .superfood-bg-img {
    width: 60%;
    height: 100%;
    object-fit: cover;
    margin-right: auto;
    display: block;
  }

  .superfood-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.5) 60%, #000 0%, #000 0%);
    z-index: 2;
  }

  .superfood-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin-left: auto;
    padding: 80px 0;
  }

  .superfood-headline {
    font-family: 'Cormorant Garamond', serif;
    color: var(--accent-gold);
    font-size: clamp(2rem, 5vw, 2.9rem);
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 700;
  }

  .superfood-body {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .superfood-body p {
    margin-bottom: 15px;
  }

  .superfood-closing {
    font-size: 1.1rem;
    color: #FFF;
    margin: 30px 0 30px;
  }

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

  .superfood-badge-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent-gold);
    border-radius: 50px;
    color: var(--accent-gold);
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    background-color: rgba(212, 175, 55, 0.05);
  }

  .superfood-features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    padding-top: 10px;
  }

  .superfood-feature-item {
    text-align: center;
    position: relative;
    padding: 0 5px;
  }

  .superfood-feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -7px;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.15);
  }

  .superfood-feature-title {
    color: var(--accent-gold);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: 1px;
  }

  .superfood-feature-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    line-height: 1.6;
  }

  .superfood-disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: right;
    margin-top: 30px;
  }

  /* NUTRITION BALANCE SECTION */
  .nutrition-balance-section {
    padding: 80px 0;
    background-color: #0A0A0A;
  }

  .nutrition-balance-header {
    margin-bottom: 50px;
  }

  .nutrition-balance-headline {
    font-family: 'Cormorant Garamond', serif;
    color: var(--accent-gold);
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 15px;
    font-weight: 300;
  }

  .nutrition-balance-subheadline {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
  }

  .nutrition-balance-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
    margin: 0 auto 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
  }

  .nutrition-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    border-right: 1px solid rgba(212, 175, 55, 0.2);
    min-height: 380px;
    padding-top: 30px;
  }

  .nutrition-card:last-child {
    border-right: none;
  }

  .nutrition-card.highlighted {
    outline: 1.5px solid var(--accent-gold);
    margin: -1px;
    /* Overlaps container border */
    z-index: 2;
    background: rgba(212, 175, 55, 0.03);
  }

  .nutrition-card-text {
    text-align: center;
    padding: 0 20px;
    margin-bottom: 20px;
    flex-grow: 1;
  }

  .nutrition-card-text h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 500;
    letter-spacing: 2px;
  }

  .nutrition-card.highlighted .nutrition-card-text h3 {
    color: var(--accent-gold);
  }

  .nutrition-card-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .nutrition-card-img-wrap {
    width: 100%;
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }

  .nutrition-card-img {
    width: 95%;
    height: auto;
    object-fit: contain;
    display: block;
  }

  .nutrition-card.highlighted .nutrition-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .nutrition-balance-footer p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin-top: 40px;
  }

  @media (max-width: 991px) {
    .nutrition-balance-cards {
      grid-template-columns: repeat(2, 1fr);
    }

    .nutrition-card {
      border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    .nutrition-card:nth-child(even) {
      border-right: none;
    }
  }

  @media (max-width: 576px) {
    .nutrition-balance-cards {
      grid-template-columns: 1fr;
    }

    .nutrition-card {
      border-right: none;
    }
  }

  @media (max-width: 1200px) {
    .superfood-features-grid {
      grid-template-columns: repeat(3, 1fr);
      row-gap: 30px;
    }

    .superfood-feature-item:nth-child(3)::after {
      display: none;
    }
  }

  @media (max-width: 991px) {
    .superfood-bg-img {
      width: 100%;
      height: 40%;
      margin-right: 0;
      object-position: 15% center;
    }

    .superfood-overlay {
      background: linear-gradient(to top, #000 60%, rgba(0, 0, 0, 0.5) 62%, transparent 64%);

    }

    .superfood-content {
      margin: 0 auto;
      padding: 410px 0 10px;
    }

    .superfood-badges {
      margin-top: 40px;
      background: rgba(0, 0, 0, 0.4);
      padding: 20px;
      border-radius: 15px;
      backdrop-filter: blur(4px);
    }
  }

  @media (max-width: 768px) {
    .superfood-features-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .superfood-feature-item:nth-child(2)::after,
    .superfood-feature-item:nth-child(4)::after {
      display: none;
    }

    .superfood-feature-item:nth-child(3)::after {
      display: block;
    }
  }

  @media (max-width: 1024px) {
    .market-intro-row {
      flex-direction: column;
    }

    .market-comparison-grid {
      width: 100%;
    }

    .market-cards-grid {
      grid-template-columns: 1fr;
    }

    .market-signs-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 768px) {
    .market-comparison-grid {
      grid-template-columns: 1fr;
    }

    .market-bridge {
      font-size: 1.4rem;
    }

    .market-signs-title {
      font-size: 1.3rem;
    }

    .market-signs-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 480px) {
    .market-signs-grid {
      grid-template-columns: 1fr;
    }
  }

  /* DAILY PERFORMANCE SECTION */
  .daily-performance-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #000;
  }

  .daily-performance-bg-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .daily-performance-bg-img {
    width: 60%;
    height: 100%;
    object-fit: cover;
    margin-right: auto;
    display: block;
  }

  .daily-performance-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.4) 30%, #000 60%, #000 100%);
    z-index: 2;
  }

  .daily-performance-content {
    position: relative;
    z-index: 10;
    max-width: 460px;
    margin-left: auto;
    padding: 80px 0;
  }

  .daily-performance-eyebrow {
    display: block;
    font-size: 0.98rem;
    color: var(--accent-gold);
    letter-spacing: 3px;
    margin-bottom: 10px;
    font-family: var(--font-heading);
  }

  .daily-performance-headline {
    font-family: 'Cormorant Garamond', serif;
    color: var(--accent-gold);
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 30px;
    line-height: 1.3;
    font-weight: 300;
  }

  .daily-performance-body {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 40px;
  }

  .daily-performance-body p {
    margin-bottom: 20px;
  }

  .daily-performance-cta-wrap {
    margin-top: 20px;
  }

  @media (max-width: 991px) {
    .daily-performance-bg-img {
      width: 100%;
      margin-right: 0;
      object-position: center;
    }

    .daily-performance-overlay {
      background: linear-gradient(to top, #000 40%, rgba(0, 0, 0, 0.6) 70%, transparent 100%);
    }

    .daily-performance-content {
      margin: 0 auto;
      padding: 400px 0 60px;
    }
  }

  /* ORIGIN SECTION FULL WIDTH */
  .origin-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #000;
  }

  .origin-bg-wrap {
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    width: 90%;
    /* Desktop image width increased */
    height: 100%;
    z-index: 1;
  }

  .origin-bg-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: 100% center;
    /* Centering the river towards the red line */
  }

  .origin-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #000 25%, rgba(0, 0, 0, 0.4) 60%, transparent 95%);
    z-index: 2;
  }

  .origin-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin-left: 0;
    margin-right: auto;
    padding: 100px 0;
  }

  .origin-eyebrow {
    display: block;
    color: var(--accent-gold);
    font-size: 0.98rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-family: var(--font-heading);
  }

  .origin-headline {
    font-family: 'Cormorant Garamond', serif;
    color: var(--accent-gold);
    font-size: clamp(2.5rem, 5vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 40px;
    font-weight: 300;
  }

  .origin-body {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 50px;
  }

  .origin-body p {
    margin-bottom: 20px;
  }

  @media (max-width: 991px) {
    .origin-section {
      min-height: auto;
      padding: 60px 0;
    }

    .origin-eyebrow,
    .origin-headline,
    .origin-body {
      text-align: left;
    }

    .origin-bg-wrap {
      width: 100%;
      opacity: 0.9;
    }

    .origin-bg-img {
      object-position: center;
      height: 60%;
      object-fit: cover;
    }

    .origin-overlay {
      background: linear-gradient(to top, #000 40%, rgba(0, 0, 0, 0.6) 65%, transparent 70%)
    }

    .origin-content {
      text-align: left;
      margin-left: 0;
      max-width: 100%;
      padding: 180px 0 0;
      transform: none;
    }

    .origin-headline {
      font-size: 2.2rem;
    }
  }

  .cta-outline-gold {
    display: inline-block;
    padding: 14px 35px;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-radius: 4px;
    font-family: var(--font-heading);
    letter-spacing: 1px;
  }

  .cta-outline-gold:hover {
    background: var(--accent-gold);
    color: #000;
    transform: translateY(-2px);
  }

  /* =========================================
    Product Highlight Section
  ========================================= */
  .product-highlight-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #000;
  }

  .product-bg-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 100%;
    z-index: 1;
  }

  .product-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, #000 20%, rgba(0, 0, 0, 0.4) 40%, transparent 60%);
    z-index: 2;
  }

  .product-highlight-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin-left: auto;
    margin-right: 0;
    padding: 100px 0;
    transform: translateX(40%);
  }

  .product-eyebrow {
    display: block;
    color: var(--accent-gold);
    font-size: 0.98rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-family: var(--font-heading);
  }

  .product-headline {
    font-family: 'Cormorant Garamond', serif;
    color: var(--accent-gold);
    font-size: clamp(2.5rem, 5vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 40px;
    font-weight: 300;
  }

  .product-body {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
  }

  .product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 50px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
  }

  .product-features li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .product-features li::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
  }

  .cta-gold-gradient {
    display: inline-block;
    padding: 16px 45px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: #000;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.9rem;
  }

  .cta-gold-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
  }

  @media (max-width: 991px) {
    .product-highlight-section {
      min-height: auto;
      padding: 60px 0;
    }

    .product-bg-wrap {
      width: 100%;
      opacity: 1;
    }

    .product-highlight-content {
      text-align: center;
      margin: 0;
      height: 60%;
      max-width: 100%;
      transform: none;
      padding: 400px 20px 0;
    }

    .product-overlay {
      background: linear-gradient(to top, #000 60%, rgba(0, 0, 0, 0.6) 65%, transparent 70%);
    }

    .product-eyebrow,
    .product-headline,
    .product-body {
      text-align: left;
    }

    .product-features {
      grid-template-columns: 1fr;
      max-width: 300px;
      margin: 0 auto 50px;
      text-align: left;
    }

    .product-bg-img {
      height: 40%;
    }
  }


  .hero-content-left {
    max-width: 700px;
    width: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero--left-align .display-title {
    text-align: left;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.0rem, 8vw, 4.0rem);
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .hero--left-align .brand-reveal-tag {
    display: none;
    /* Removed as it's not in the image */
  }

  .hero-subheadline {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: #FFF;
    margin-bottom: 30px;
    line-height: 1.4;
    font-weight: 300;
    text-align: left;
    letter-spacing: 0.28em;
    font-family: 'Cormorant Garamond', serif;
  }

  .hero-support-line {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
    letter-spacing: 1px;
  }

  .hero--left-align .hero-ctas {
    justify-content: flex-start;
    margin-top: 20px;
    gap: 20px;
  }

  .hero-ctas .cta-button,
  .hero-ctas .cta-amazon {
    min-width: 220px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    font-size: 1rem;
  }


  .brand-reveal-tag {
    color: var(--accent-gold);
    font-size: 1rem;
    letter-spacing: 4px;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    font-weight: 500;
  }

  .display-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: -1px;
    font-family: var(--font-heading);
    color: #FFF;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 3);
  }

  .display-title .line-top {
    display: block;
    opacity: 0.3;
  }

  .accent-gold-text {
    color: var(--accent-gold);
    font-family: 'Cormorant Garamond', serif;
  }

  /* NEW: Hero Badges */
  .hero-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
  }

  .hero-badge-item {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--accent-gold);
    backdrop-filter: blur(5px);
    font-weight: 600;
  }

  @media (max-width: 768px) {
    .hero-badges {
      gap: 10px;
    }

    .hero-badge-item {
      font-size: 0.7rem;
      padding: 6px 15px;
    }
  }

  .hero-description-v3 {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    /* Um pouco mais claro para contraste */
    max-width: 800px;
    margin: 50px auto 0;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  }

  .mouse-scroll-v3 {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 40px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 12px;
    z-index: 10;
  }

  .scroll-wheel {
    position: absolute;
    top: 6px;
    left: 50%;
    width: 2px;
    height: 8px;
    background: var(--accent-gold);
    transform: translateX(-50%);
    animation: wheel-drop 2s infinite;
  }

  @keyframes wheel-drop {
    0% {
      opacity: 0;
      transform: translate(-50%, 0);
    }

    50% {
      opacity: 1;
    }

    100% {
      opacity: 0;
      transform: translate(-50%, 15px);
    }
  }

  @media (max-width: 991px) {
    /* .brand-reveal-tag {
      font-size: 0.65rem;
      letter-spacing: 8px;
    } */

    .display-title {
      font-size: 2rem;
      line-height: 1.5;
    }

    .hero-description-v3 {
      font-size: 1rem;
    }

    .mouse-scroll-v3 {
      display: none;
    }
  }

  /* AUTHORITY SECTION BACKGROUND TEXTURE */
  .authority-section-v3 {
    position: relative;
    background: #0A0A0A url('assets/images/authority-bg.png') no-repeat center center;
    background-size: cover;
    overflow: hidden;
    border: none;
  }

  /* Overlay para garantir que a imagem seja apenas uma textura e não distraia do texto */
  .authority-section-v3::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(10, 10, 10, 1) 0%,
        rgba(10, 10, 10, 0.7) 15%,
        rgba(10, 10, 10, 0.7) 85%,
        rgba(10, 10, 10, 1) 100%);
    z-index: 1;
  }

  /* Garante que o conteúdo fique acima do overlay */
  .authority-section-v3 .container {
    position: relative;
    z-index: 5;
  }

  /* MISSION SECTION BACKGROUND TEXTURE */
  .mission-section-v3 {
    position: relative;
    background: #0A0A0A url('assets/images/why-amazonia-taste.png') no-repeat center center;
    background-size: cover;
    overflow: hidden;
    border: none;
  }

  .mission-section-v3::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(10, 10, 10, 1) 0%,
        rgba(10, 10, 10, 0.85) 20%,
        rgba(10, 10, 10, 0.85) 80%,
        rgba(10, 10, 10, 1) 100%);
    z-index: 1;
  }

  .mission-section-v3 .container {
    position: relative;
    z-index: 5;
  }

  /* ANIMATION PLACEHOLDER */
  .animation-placeholder-v3 {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05), transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  #acai-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .animation-ui {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
    text-align: center;
    width: 100%;
  }

  .animation-ui .eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    font-size: 10px;
    letter-spacing: 7px;
    color: rgba(212, 175, 55, 0.45);
    text-transform: uppercase;
    margin-bottom: 10px;
  }

  .animation-ui .title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(32px, 5vw, 56px);
    color: rgba(235, 215, 170, 0.88);
    letter-spacing: 3px;
    line-height: 1.1;
    margin: 0;
  }

  .animation-ui .title em {
    font-style: italic;
    color: rgba(212, 175, 55, 0.8);
  }

  .animation-ui .divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
    margin: 15px 0;
  }

  .animation-ui .subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 9px;
    letter-spacing: 4px;
    color: rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
  }

  .badge-bottom {
    position: absolute;
    z-index: 10;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 10px;
    letter-spacing: 4px;
    color: rgba(212, 175, 55, 0.7);
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 10px;
  }

  /* REVEAL ON SCROLL SYSTEM */
  .reveal {
    opacity: 1;
    transition: opacity 1.2s ease-out, transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform, opacity;
  }

  .js-enabled .reveal {
    opacity: 0;
    transform: translateY(30px);
  }

  .reveal.active,
  .reveal-stagger.active {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  /* HERO REVEAL (Fade-in centralizado sem movimento vertical) */
  .hero-reveal {
    opacity: 0;
    animation: heroFadeIn 2.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    animation-delay: 0.3s;
  }

  @keyframes heroFadeIn {
    to {
      opacity: 1;
    }
  }

  /* Stagger delays for children */
  .reveal-stagger>* {
    opacity: 1;
    transition: opacity 0.9s ease-out, transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
  }

  .js-enabled .reveal-stagger>* {
    opacity: 0;
    transform: translateY(20px);
  }

  .reveal-stagger.active>* {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  .reveal-stagger.active>* {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-stagger.active>*:nth-child(1) {
    transition-delay: 0.1s;
  }

  .reveal-stagger.active>*:nth-child(2) {
    transition-delay: 0.2s;
  }

  .reveal-stagger.active>*:nth-child(3) {
    transition-delay: 0.3s;
  }

  .reveal-stagger.active>*:nth-child(4) {
    transition-delay: 0.4s;
  }

  .reveal-stagger.active>*:nth-child(5) {
    transition-delay: 0.5s;
  }

  /* ============================================================
    NEW CONVERSION SECTIONS (GPT OPTIMIZED)
    ============================================================ */

  /* 1. Comparison Section */
  .comparison-section {
    padding: var(--space-xl) 0;
    background: #000;
  }

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

  .comp-card {
    background: #111;
    border-radius: 12px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid #222;
    transition: transform 0.3s ease;
  }

  .comp-card--our {
    border-color: var(--accent-gold);
    background: linear-gradient(145deg, #111 0%, #1a1a1a 100%);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
  }

  .comp-card--other {
    opacity: 0.8;
  }

  .comp-card h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
  }

  .comp-card--our h3 {
    color: var(--accent-gold);
  }

  .comp-list {
    list-style: none;
  }

  .comp-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 1.1rem;
  }

  .comp-item i {
    font-style: normal;
    font-weight: bold;
    font-size: 1.4rem;
  }

  .comp-card--our .comp-item i {
    color: #4CAF50;
    /* Green check */
  }

  .comp-card--other .comp-item i {
    color: #E05252;
    /* Red cross */
  }

  .comp-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent-gold);
    color: #000;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
  }

  /* 2. Benefits / Target Audience Section */
  .benefits-section {
    padding: var(--space-xl) 0;
    background: var(--bg-surface);
  }

  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
  }

  .benefit-card {
    background: #1a1a1a;
    padding: 40px;
    border: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .benefit-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
  }

  .benefit-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
  }

  .benefit-card h3 {
    font-size: 1.4rem;
    color: #FFF;
  }

  .benefit-card p {
    color: var(--text-secondary);
    line-height: 1.7;
  }

  @media (max-width: 900px) {

    .comparison-grid,
    .benefits-grid {
      grid-template-columns: 1fr;
    }

    .comp-card {
      padding: 30px 20px;
    }
  }

  /* 
  ============================================================
  RECIPES SECTION - PREMIUM PARALLAX SYSTEM
  ============================================================
  */

  .recipes-section {
    position: relative;
    background-image: url('assets/images/recipe.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Simple CSS Parallax */
    padding: 120px 0;
    overflow: hidden;
  }

  /* Atmospheric Overlay */
  .recipes-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(10, 10, 10, 0.9) 0%,
        rgba(10, 10, 10, 0.6) 50%,
        rgba(10, 10, 10, 0.9) 100%);
    z-index: 1;
  }

  .recipes-section .container {
    position: relative;
    z-index: 2;
  }

  .recipes-section .section-title {
    color: var(--accent-gold);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  }

  .recipes-section .subtitle-text {
    color: #FFF;
    opacity: 0.8;
    letter-spacing: 4px;
  }

  /* Ensure mobile compatibility (disable fixed attachment) */
  @media (max-width: 991px) {
    .recipes-section {
      background-attachment: scroll;
      padding: 80px 0;
    }
  }

  /* 
  ============================================================
  NEW: SOCIAL PROOF & TRUST SYSTEM
  ============================================================
  */

  /* 3. Testimonials */
  .testimonials-section {
    padding: var(--space-xl) 0;
    background: #050505;
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .testimonial-card {
    background: #111;
    padding: 40px;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .testi-rating {
    color: var(--accent-gold);
    letter-spacing: 2px;
    font-size: 0.8rem;
  }

  .testi-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-primary);
    font-style: italic;
    flex-grow: 1;
  }

  .testi-author {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border-subtle);
    padding-top: 20px;
  }

  .author-name {
    font-weight: 600;
    color: #FFF;
  }

  .author-title {
    font-size: 0.8rem;
    color: var(--accent-gold);
  }

  /* 4. Trust Banner */
  .trust-banner {
    padding: 40px 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
  }

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

  .trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 150px;
  }

  .trust-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 5px;
  }

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

  .trust-divider {
    width: 1px;
    height: 40px;
    background: var(--border-subtle);
  }

  @media (max-width: 991px) {
    .testimonials-grid {
      grid-template-columns: 1fr;
    }

    .trust-flex {
      gap: 40px;
    }

    .trust-divider {
      display: none;
    }
  }

  /* 1.9 LIFESTYLE INTEGRATION SECTION */
  .lifestyle-section {
    padding: var(--space-xl) 0;
    background-color: var(--bg-primary);
  }

  .lifestyle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
  }

  .lifestyle-headline {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--accent-gold);
    line-height: 1.3;
    margin-bottom: var(--space-md);
    font-weight: 300;
    font-family: "Cormorant Garamond", serif;
    /* Adiciona a fonte Cormorant Garamond */
  }

  .lifestyle-body p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 1.1rem;
  }

  .lifestyle-emphasis {
    margin-top: 30px;
    color: var(--text-primary) !important;
    font-weight: 400;
  }

  .lifestyle-cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }

  @media (max-width: 991px) {
    .lifestyle-cards-row {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 576px) {
    .lifestyle-cards-row {
      grid-template-columns: 1fr;
    }
  }

  .lifestyle-card {
    position: relative;
    background: var(--bg-surface);
    border: 0.5px solid #574a27;
    /* Borda fina e clara (tom champanhe) */
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .lifestyle-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
  }

  .card-img-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

  .lifestyle-card:hover .card-img {
    transform: scale(1.1);
  }

  .card-label {
    position: relative;
    z-index: 2;
    padding: 20px 15px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 82%, transparent 100%);
  }

  .card-icon {
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }

  .card-text {
    font-size: 0.9rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    color: #FFF;
    white-space: nowrap;
  }

  /* _______________________________________________________________________________ NEW COMMMIT ________________________________________________________________________________________ */

  .lifestyle-section.lifestyle-compact {
    padding: 100px 0;
    background: #09090a;
  }

  .lifestyle-flex-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .lifestyle-header-compact {
    flex: 0 0 320px;
    text-align: center;
  }

  .lifestyle-headline-compact {
    font-size: 2.2rem;
    color: var(--accent-gold);
    margin-bottom: 30px;
    font-weight: 300;
    font-family: "Cormorant Garamond", serif;
    line-height: 1.3;
  }

  .lifestyle-desc-compact {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 40px;
    line-height: 2;
    letter-spacing: 0.05em;
  }

  .lifestyle-emphasis-compact {
    color: #FFF;
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 400;
  }

  .lifestyle-cards-row-compact {
    flex: 1;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
  }

  .lifestyle-card-compact {
    position: relative;
    flex: 1;
    min-width: 180px;
    /* height: 400px; */
    height: 290px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .card-img-square {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .card-img-square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
    transition: all 0.6s ease;
  }

  .card-label-compact {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFF;
    font-size: 1rem;
  }

  .card-icon-small {
    color: var(--accent-gold);
  }

  @media (max-width: 1200px) {
    .lifestyle-flex-container {
      flex-direction: column;
      gap: 10px;
    }

    .lifestyle-header-compact {
      flex: none;
      max-width: 600px;
      margin-bottom: 40px;
    }

    .lifestyle-flex-container {
      padding: 0 20px;
    }

    .lifestyle-cards-row-compact {
      width: 100%;
      justify-content: center;
      flex-wrap: wrap;
    }

    .lifestyle-card-compact {
      flex: 0 0 240px;
      height: 350px;
    }
  }

  @media (max-width: 600px) {
    .lifestyle-headline-compact {
      font-size: 2.5rem;
    }

    .lifestyle-card-compact {
      flex: 0 0 100%;
      height: 320px;
      max-width: 400px;
    }
  }

  .card-icon-small {
    color: var(--accent-gold);
  }

  /* ============================================================
    RECOMMENDATION SECTION (NEW)
    ============================================================ */

  /* SECTION DIVIDER */
  .section-divider-gold {
    width: 100%;
    max-width: 1200px;
    height: 1px;
    margin: 0 auto;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.4), transparent);
  }

  /* RECOMMENDATION SECTION (NEW DESIGN) */
  .recommendation-section {
    padding: 100px 0;
    background: #000;
  }

  .recommendation-header {
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .recommendation-headline {
    font-size: clamp(2.1rem, 5vw, 2.5rem);
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-weight: 300;
    font-family: "Cormorant Garamond", serif;
    text-align: center;
  }

  .recommendation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px;
    margin-bottom: 80px;
  }

  .recommendation-card {
    background: #09090a;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
  }

  .rec-card-img {
    width: 100%;
    height: 220px;
    position: relative;
    overflow: hidden;
    margin-bottom: -1px;
    /* Overlap to prevent sub-pixel gap */
  }

  .rec-card-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform;
  }

  .rec-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #09090a, transparent 30%, transparent 70%, #0c0c0e);
    pointer-events: none;
  }

  .rec-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--accent-gold);
  }

  .rec-card-header svg {
    color: var(--accent-gold);
  }

  .rec-card-content h3 {
    font-size: 1.2rem;
    color: var(--accent-gold);
    font-family: "Cormorant Garamond", serif;
    font-weight: 300;
    margin: 0;
    line-height: 1.3;
  }

  .rec-title-line {
    height: 1px;
    width: 100%;
    margin-bottom: 20px;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.4) 20%, rgba(212, 175, 55, 0.4) 80%, transparent);
  }

  .rec-card-content p {
    font-size: 0.9rem;
    color: #FFF;
    line-height: 1.8;
    /* opacity: 0.85; */
  }

  .recommendation-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .rec-footer-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.4) 20%, rgba(212, 175, 55, 0.4) 80%, transparent);
    position: relative;
  }

  .rec-footer-text {
    color: var(--accent-gold);
    font-size: 1.3rem;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    text-align: center;
    font-family: "Cormorant Garamond", serif;
  }

  .rec-footer-leaf {
    color: var(--accent-gold);
    flex-shrink: 0;
  }

  @media (max-width: 1100px) {
    .recommendation-grid {
      grid-template-columns: 1fr;
      max-width: 700px;
    }
  }

  @media (max-width: 700px) {
    .recommendation-card {
      height: auto;
      flex-direction: column;
    }

    .rec-card-img {
      height: 180px;
    }

    .rec-card-img::after {
      background:
        linear-gradient(to bottom, transparent 80%, #09090a),
        linear-gradient(to left, #09090a, transparent 15%, transparent 85%, #09090a);
    }

    .rec-footer-line {
      display: none;
    }

    .rec-footer-text {
      white-space: normal;
      text-align: center;
    }
  }

  .recommendation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 60px;
  }

  .recommendation-card {
    background: var(--bg-surface);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
  }

  .rec-card-img {
    height: 200px;
    overflow: hidden;
  }

  .rec-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

  .rec-card-content {
    padding: 25px 10px;
    text-align: center;
    flex-grow: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), #00000061);

    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .rec-card-content h3 {
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
    line-height: 1.4;
  }

  .rec-card-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
  }

  .recommendation-footer {
    /* max-width: 700px; */
    margin: 0 auto;
  }

  .recommendation-footer p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
  }

  @media (max-width: 900px) {
    .lifestyle-flex-container {
      flex-direction: column;
      text-align: center;
    }

    .lifestyle-header-compact {
      text-align: center;
      margin-bottom: 30px;
    }

    .lifestyle-cards-row-compact {
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
    }
  }

  @media (max-width: 1100px) {
    .recommendation-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 600px) {
    .recommendation-grid {
      grid-template-columns: 1fr;
    }

  }

  /* _______________________________________________________________________________ NEW COMMMIT ________________________________________________________________________________________ */

  /* 1.10 HOW TO ENJOY SECTION */
  .enjoy-section {
    padding: var(--space-xl) 0;
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
  }

  .enjoy-eyebrow {
    display: block;
    font-size: 0.98rem;
    color: var(--accent-gold);
    letter-spacing: 3px;
    margin-bottom: 10px;
    font-family: var(--font-heading);
  }

  .enjoy-headline {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: var(--space-lg);
    font-weight: 300;
    font-family: "Cormorant Garamond", serif;
  }

  .enjoy-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .enjoy-card {
    position: relative;
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .enjoy-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
  }

  .enjoy-card-img-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .enjoy-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

  .enjoy-card:hover .enjoy-card-img {
    transform: scale(1.05);
  }

  .enjoy-card-content {
    position: relative;
    z-index: 2;
    padding: 35px 25px 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 80%, transparent 100%);
  }

  .enjoy-card-icon {
    color: var(--accent-gold);
    flex-shrink: 0;
    margin-top: 5px;
  }

  .enjoy-card-text h3 {
    font-size: 1.2rem;
    color: #FFF;
    margin-bottom: 8px;
    font-weight: 500;
  }

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

  .enjoy-footer {
    padding-top: 50px;
  }

  .enjoy-recipe-note {
    margin-bottom: 35px;
  }

  .recipe-status-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    letter-spacing: 1px;
  }

  .recipe-promo-text {
    font-size: 1.3rem;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 1px;
  }

  .enjoy-cta-button {
    display: inline-block;
    padding: 16px 45px;
    background: var(--accent-gold);
    color: #000;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
  }

  .enjoy-cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.25);
    background: #FFF;
    /* Inversão para branco no hover para toque premium */
  }


  .latest-subtitle-text {
    display: block;
    font-size: 0.98rem;
    color: var(--accent-gold);
    letter-spacing: 3px;
    margin-bottom: 10px;
    font-family: var(--font-heading);
  }

  .news-headline {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: var(--space-md);
    font-weight: 300;
    font-family: "Cormorant Garamond", serif;
  }

  .latest-news-section {
    padding: var(--space-lg) 0;
  }


  @media (max-width: 1199px) {
    .lifestyle-grid {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .lifestyle-headline br {
      display: none;
    }

    .lifestyle-cards {
      margin-top: 40px;
    }
  }

  @media (max-width: 991px) {
    .lifestyle-cards {
      grid-template-columns: repeat(2, 1fr);
    }

    .enjoy-cards {
      grid-template-columns: 1fr;
    }

    .enjoy-section {
      padding: var(--space-lg) 0;
    }
  }

  @media (max-width: 480px) {
    .lifestyle-cards {
      grid-template-columns: 1fr;
    }

  }

  /* BLOG LATEST GRID - 5 COLUMNS */
  .blog-latest-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-top: 30px;
  }

  .blog-view-all-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    text-decoration: none;
    color: var(--accent-gold);
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 200px;
  }

  .blog-view-all-card:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }

  .blog-view-all-card .view-all-text {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 12px;
    display: block;
    letter-spacing: 1px;
  }

  .blog-view-all-card svg {
    transition: transform 0.3s ease;
  }

  .blog-view-all-card:hover svg {
    transform: translateX(5px);
  }

  @media (max-width: 1200px) {
    .blog-latest-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 768px) {
    .blog-latest-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 480px) {
    .blog-latest-grid {
      grid-template-columns: 1fr;
    }
  }

  /* DECISION BANNER - FIXED */
  .decision-banner {
    background: #000;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .decision-img-part {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 55%;
    z-index: 1;
  }

  .decision-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .decision-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.4) 40%, #000 85%);
    z-index: 2;
  }

  .decision-text-part {
    position: relative;
    z-index: 10;
    width: 100%;
  }

  .decision-flex-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 50px;
  }

  .decision-text-col {
    flex: 1;
    max-width: 350px;
  }

  .decision-headline {
    font-family: "Cormorant Garamond", serif;
    color: var(--accent-gold);
    font-size: 3.2rem;
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: 500;
  }

  .decision-body {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.3rem;
    line-height: 1.6;
  }

  .decision-body p {
    margin-bottom: 10px;
  }

  .decision-cta-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 280px;
  }

  .btn-gold-fill {
    background: var(--accent-gold);
    color: #000;
    text-align: center;
    padding: 14px;
    font-weight: bold;
    border-radius: 2px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
  }

  .btn-gold-fill:hover {
    background: #FFF;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
  }

  .btn-outline-gold {
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    text-align: center;
    padding: 14px;
    border-radius: 2px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
  }

  .btn-outline-gold:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
  }

  @media (max-width: 991px) {
    .decision-banner {
      min-height: auto;
      display: block;
    }

    .decision-img-part {
      position: relative;
      width: 100%;
      height: 250px;
    }

    .decision-gradient {
      background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.6) 60%, #000 100%);
    }

    .decision-flex-row {
      flex-direction: column;
      text-align: center;
      padding: 40px 0;
      gap: 30px;
    }

    .decision-text-col {
      max-width: 100%;
    }

    .decision-cta-col {
      width: 100%;
      max-width: 320px;
      margin: 0 auto;
    }
  }

  /* PARTNERSHIP SECTION */
  .partnership-section {
    padding: 100px 0;
    background: #000;
  }

  .partnership-header {
    max-width: 800px;
    margin: 0 auto 60px;
  }

  .partnership-headline {
    font-size: 2.8rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-family: "Cormorant Garamond", serif;
    text-align: center;
  }

  .partnership-subheadline {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
  }

  .partnership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .partnership-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
  }

  .partnership-card-img-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .partnership-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

  .partnership-card:hover .partnership-card-img {
    transform: scale(1.05);
  }

  .partnership-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
  }

  .partnership-card-content {
    position: relative;
    z-index: 10;
    padding: 40px;
  }

  .partnership-card-eyebrow {
    display: block;
    font-size: 0.8rem;
    color: var(--accent-gold);
    letter-spacing: 3px;
    margin-bottom: 10px;
    font-weight: 700;
  }

  .partnership-card h3 {
    font-size: 1.8rem;
    color: #FFF;
    margin-bottom: 15px;
    font-family: "Cormorant Garamond", serif;
  }

  .partnership-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 25px;
    max-width: 90%;
  }

  .partnership-cta {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border-radius: 2px;
    text-align: center;
  }

  .partnership-card:hover .partnership-cta {
    background: var(--accent-gold);
    color: #000;
  }

  @media (max-width: 991px) {

    .partnership-eyebrow,
    .partnership-headline,
    .partnership-body,
    .partnership-subheadline {
      text-align: left;
    }

    .partnership-grid {
      grid-template-columns: 1fr;
    }

    .partnership-card {
      height: 400px;
    }
  }

  @media (max-width: 768px) {
    .partnership-headline {
      font-size: 2rem;
    }

    .partnership-card {
      height: auto;
      background: #0a0a0a;
    }

    .partnership-card-img-wrap {
      position: relative;
      height: 250px;
    }

    .partnership-card-content {
      padding: 30px 20px;
    }

    .partnership-card h3 {
      font-size: 1.5rem;
    }
  }

  /* ===========================
    SHARED FAQ ACCORDION
  =========================== */
  .faq-accordion-full {
    display: flex;
    flex-direction: column;
  }

  .faq-item-full {
    border-bottom: 1px solid var(--border-subtle);
  }

  .faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    text-align: left;
    padding: 22px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: color 0.3s ease;
    line-height: 1.5;
  }

  .faq-question:hover {
    color: var(--accent-gold);
  }

  .faq-question[aria-expanded="true"] {
    color: var(--accent-gold);
  }

  .faq-icon {
    flex-shrink: 0;
    font-size: 1.6rem;
    color: var(--accent-gold);
    line-height: 1;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 300;
  }

  .faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
  }

  .faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    opacity: 0;
  }

  .faq-answer.is-open {
    max-height: 800px;
    opacity: 1;
  }

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

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

  /* ===========================
    WORDPRESS CONTENT BLOCK (ARTICLES)
  =========================== */
  .wordpress-content-block {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 900px;
    /* Adjusted from 800px to match user request for entry content */
    margin: 0 auto;
    padding: 40px 10px;
    /* Adjusted padding as requested */
  }

  .wordpress-content-block h2 {
    color: var(--accent-gold);
    font-size: 2.2rem;
    font-family: "Cormorant Garamond", serif;
    margin: 60px 0 30px;
    font-weight: 400;
    line-height: 1.3;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 10px;
  }

  .wordpress-content-block h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin: 40px 0 20px;
    font-weight: 400;
  }

  .wordpress-content-block p {
    margin-bottom: 25px;
  }

  .wordpress-content-block a {
    color: var(--accent-gold);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
  }

  .wordpress-content-block a:hover {
    border-bottom-color: var(--accent-gold);
  }

  /* Lists */
  .wordpress-content-block ul,
  .wordpress-content-block ol {
    margin: 0 0 30px 20px;
    padding: 0;
  }

  .wordpress-content-block li {
    margin-bottom: 12px;
  }

  /* Blocks (AI Summary, Evidence, HowTo) */
  .ai-summary-block {
    background: rgba(212, 175, 55, 0.05);
    border-left: 4px solid var(--accent-gold);
    padding: 25px 30px;
    margin: 40px 0;
    border-radius: 0 4px 4px 0;
  }

  .ai-summary-block h2 {
    margin-top: 0;
    font-size: 1.8rem;
    border: none;
    padding-bottom: 0;
  }

  .ai-summary-block h3 {
    margin-top: 25px;
    font-size: 1.2rem;
    color: var(--accent-gold);
  }

  .evidence-block {
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    margin: 40px 0;
    border-radius: 4px;
  }

  .evidence-block h3 {
    margin-top: 0;
    font-size: 1.2rem;
    color: var(--accent-gold);
  }

  .evidence-block blockquote {
    margin: 0;
    font-style: italic;
    color: var(--text-primary);
    border-left: 3px solid var(--text-secondary);
    padding-left: 20px;
  }

  .evidence-block blockquote p {
    margin-bottom: 0;
  }

  .howto-block {
    margin: 50px 0;
  }

  .howto-block ol {
    list-style: none;
    counter-reset: howto-counter;
    margin-left: 0;
  }

  .howto-block li {
    counter-increment: howto-counter;
    position: relative;
    padding-left: 40px;
    margin-bottom: 25px;
  }

  .howto-block li::before {
    content: counter(howto-counter);
    position: absolute;
    left: 0;
    top: 3px;
    width: 25px;
    height: 25px;
    background: var(--accent-gold);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    font-family: var(--font-heading);
  }

  .howto-block strong {
    color: var(--text-primary);
  }

  .faq-block {
    margin: 50px 0;
  }

  .faq-block h3 {
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin: 35px 0 15px;
  }

  .faq-block div[itemprop="acceptedAnswer"] p {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px 25px;
    border-radius: 4px;
    border-left: 2px solid var(--text-secondary);
  }

  /* Glossary / Term Clarification Block */
  .glossary-block,
  .wordpress-content-block .glossary-block {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-left: 4px solid var(--accent-gold);
    border-radius: 4px;
    padding: 25px 30px;
    margin: 40px 0;
  }

  .glossary-block h3,
  .wordpress-content-block .glossary-block h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.25rem;
    color: var(--accent-gold);
    font-family: var(--font-heading);
    font-weight: 500;
  }

  .wordpress-content-block dl,
  .glossary-block dl {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px 24px;
    margin: 0;
    padding: 0;
  }

  .wordpress-content-block dt,
  .glossary-block dt {
    grid-column: 1;
    font-weight: 600;
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 6px 16px;
    border-radius: 4px;
    white-space: nowrap;
    align-self: start;
    font-size: 0.95rem;
    text-align: center;
    line-height: 1.4;
  }

  .wordpress-content-block dd,
  .glossary-block dd {
    grid-column: 2;
    margin: 0;
    padding: 3px 0;
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.7;
    align-self: center;
  }

  /* Tables */
  .wordpress-content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    table-layout: fixed;
    /* Force all columns to have equal width */
  }

  .wordpress-content-block th,
  .wordpress-content-block td {
    padding: 15px 10px;
    /* Slightly reduced horizontal padding for better fit */
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    font-size: 1rem;
    word-wrap: break-word;
    /* Ensure long words don't break the layout */
    overflow-wrap: break-word;
  }

  .wordpress-content-block th {
    background: rgba(212, 175, 55, 0.05);
    color: var(--accent-gold);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
  }

  .wordpress-content-block tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
  }

  .wordpress-content-block strong {
    color: var(--text-primary);
  }

  /* Images */
  .wordpress-content-block figure {
    margin: 40px 0;
  }

  .wordpress-content-block img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
  }

  .wordpress-content-block figcaption {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 15px;
    font-style: italic;
  }

  /* CTA */
  .wordpress-content-block .cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: var(--accent-gold);
    color: #000 !important;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 2px;
    border: none !important;
    margin-top: 20px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
  }

  .wordpress-content-block .cta-button:hover {
    background: #FFF;
    color: #000 !important;
  }

  /* References Footer */
  .wordpress-content-block hr {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 60px 0 40px;
  }

  /* Single Post Layout Adjustments */
  .single-post .container.article-layout-split {
    max-width: 1400px !important;
  }

  .single-post .entry-content {
    max-width: 900px !important;
    flex: 0 0 900px !important;
    /* Fixing width to 900px on PC */
    margin: 0 auto;
  }

  /* Responsive Layout for Single */
  @media (max-width: 1200px) {
    .single-post .entry-content {
      max-width: 100% !important;
      flex: 1 !important;
    }
  }

  /* Responsive */
  @media (max-width: 768px) {
    .wordpress-content-block {
      padding: 30px 10px;
      font-size: 1rem;
    }

    .wordpress-content-block h2 {
      font-size: 1.8rem;
      margin: 40px 0 20px;
    }

    .ai-summary-block {
      padding: 20px;
    }

    /* Table Responsive */
    .wordpress-content-block table {
      display: block;
      overflow-x: auto;
    }

    /* Glossary Responsive */
    .wordpress-content-block dl,
    .glossary-block dl {
      grid-template-columns: 1fr;
      gap: 10px;
    }

    .wordpress-content-block dt,
    .glossary-block dt {
      justify-self: start;
      margin-top: 6px;
    }

    .wordpress-content-block dd,
    .glossary-block dd {
      margin-bottom: 14px;
      padding-left: 4px;
    }
  }

  /* ===========================
  ARTICLE HERO (ARTICLE HEADER)
=========================== */
  .article-hero {
    margin-bottom: 50px;
    padding-bottom: 45px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
  }

  .article-hero-eyebrow {
    font-size: 0.9rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;
    font-family: var(--font-heading);
    display: block;
  }

  .article-hero-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.8rem;
    line-height: 1.3;
    color: var(--text-primary);
    margin-top: 0;
    margin-bottom: 25px;
    font-weight: 300;
  }

  .article-hero-lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 30px;
  }

  .article-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
  }

  .article-hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .article-hero-meta span:not(:last-child)::after {
    content: "|";
    margin-left: 20px;
    color: rgba(255, 255, 255, 0.15);
  }

  .article-hero-featured-image {
    margin: 40px 0 0 0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
  }

  .article-hero-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
  }

  .article-hero-featured-image:hover img {
    transform: scale(1.02);
  }

  .article-hero-featured-image figcaption {
    font-size: 0.85rem;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.02);
    padding: 15px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 0;
    font-style: italic;
    text-align: center;
  }

  @media (max-width: 768px) {
    .article-hero {
      margin-bottom: 35px;
      padding-bottom: 30px;
    }

    .article-hero-title {
      font-size: 2rem;
      margin-bottom: 20px;
    }

    .article-hero-lead {
      font-size: 1rem;
      line-height: 1.7;
      margin-bottom: 25px;
    }

    .article-hero-meta {
      gap: 10px 15px;
      margin-bottom: 30px;
    }

    .article-hero-meta span::after {
      display: none !important;
    }
  }

  /* ==========================================================================
   LANDING PAGE DE AFILIADOS / PARTNERSHIP LP (.partners-page)
   ========================================================================== */

  .partners-page {
    background-color: #0A0A0A;
    color: var(--text-primary);
    font-family: var(--font-body);
    padding-top: 75px;
    /* Offset para o cabeçalho fixo */
    overflow-x: hidden;
  }

  /* Badge Dourada Comum */
  .partners-page .badge-gold {
    display: inline-block;
    padding: 6px 18px;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 24px;
    background-color: rgba(212, 175, 55, 0.05);
    border-radius: 2px;
    font-family: var(--font-heading);
  }

  /* Seções Comuns */
  .partners-page .affiliate-section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
  }

  /* Remove borda da última seção para não duplicar com .breadcrumbs-section border-top */
  .partners-page .affiliate-section:last-of-type,
  .partners-page #affiliate-faq {
    border-bottom: none;
  }

  .partners-page .affiliate-dark {
    background-color: #0F0F0F;
  }

  .partners-page h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 300;
    margin-bottom: 24px;
    line-height: 1.3;
    font-family: "Cormorant Garamond", serif;
    color: var(--text-primary);
  }

  .partners-page .section-desc {
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 60px auto;
    font-size: 1.05rem;
    line-height: 1.8;
  }

  /* Hero Section */
  .partners-page .hero-dna-v3 {
    position: relative;
    height: 85vh;
    min-height: 650px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: none;
  }

  .partners-page .hero-dna-v3 .background-atmosphere {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.20) 0%, rgba(10, 10, 10, 1) 100%);
    z-index: 1;
  }

  .partners-page .hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
  }

  .partners-page .hero-dna-v3 .display-title {
    font-size: clamp(2.2rem, 6vw, 4.2rem);
    font-weight: 300;
    line-height: 1.25;
    margin-bottom: 30px;
    color: var(--text-primary);
    font-family: "Cormorant Garamond", serif;
    letter-spacing: -1px;
    word-break: keep-all;
  }

  .partners-page .hero-dna-v3 .display-title .line-top {
    display: block;
    font-size: 0.4em;
    letter-spacing: 5px;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-weight: 600;
  }

  .partners-page .hero-dna-v3 .display-title .accent-gold-text {
    color: var(--accent-gold);
  }

  .partners-page .hero-description-v3 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 45px;
    font-family: var(--font-body);
    font-weight: 300;
  }

  .partners-page .mouse-scroll-v3 {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0.6;
  }

  .partners-page .scroll-wheel {
    width: 20px;
    height: 35px;
    border: 1px solid var(--text-secondary);
    border-radius: 10px;
    position: relative;
  }

  .partners-page .scroll-wheel::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    width: 4px;
    height: 8px;
    background-color: var(--accent-gold);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scroll-anim 2s infinite ease-out;
  }

  @keyframes scroll-anim {
    0% {
      top: 6px;
      opacity: 1;
    }

    50% {
      top: 18px;
      opacity: 0;
    }

    100% {
      top: 6px;
      opacity: 1;
    }
  }

  /* Section Who For: Affiliate Card Grid */
  .partners-page .affiliate-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
  }

  .partners-page .affiliate-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    /* border: 1px solid var(--border-subtle); */
    background-size: cover;
    background-position: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  /* Mapeando backgrounds para os cards com gradiente overlay embutido */
  .partners-page .bg-card-gym {
    background-image: linear-gradient(to bottom, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 1) 100%), url('assets/images/partner-gym.png');
  }

  .partners-page .bg-card-gym:hover {
    background-image: linear-gradient(to bottom, rgba(10, 10, 10, 0.45) 0%, rgba(10, 10, 10, 1) 100%), url('assets/images/partner-gym.png');
  }

  .partners-page .bg-card-yoga {
    background-image: linear-gradient(to bottom, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 1) 100%), url('assets/images/partner-yoga.png');
  }

  .partners-page .bg-card-yoga:hover {
    background-image: linear-gradient(to bottom, rgba(10, 10, 10, 0.45) 0%, rgba(10, 10, 10, 1) 100%), url('assets/images/partner-yoga.png');
  }

  .partners-page .bg-card-creator {
    background-image: linear-gradient(to bottom, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 1) 100%), url('assets/images/partner-influencer.png');
  }

  .partners-page .bg-card-creator:hover {
    background-image: linear-gradient(to bottom, rgba(10, 10, 10, 0.45) 0%, rgba(10, 10, 10, 1) 100%), url('assets/images/partner-influencer.png');
  }

  .partners-page .bg-card-cafe {
    background-image: linear-gradient(to bottom, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 1) 100%), url('assets/images/partner-cafe.png');
  }

  .partners-page .bg-card-cafe:hover {
    background-image: linear-gradient(to bottom, rgba(10, 10, 10, 0.45) 0%, rgba(10, 10, 10, 1) 100%), url('assets/images/partner-cafe.png');
  }

  .partners-page .card-overlay {
    display: none !important;
  }

  .partners-page .card-content {
    position: relative;
    z-index: 2;
    padding: 35px 25px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Alinhamento ao topo para fixar os ícones */
    flex-grow: 1;
    /* Garante que o container ocupe toda a altura do card */
    width: 100%;
    background: transparent !important;
  }

  .partners-page .card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--accent-gold);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    /* Impede que o ícone encolha */
  }

  .partners-page .card-content h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 12px;
    line-height: 1.4;
    color: var(--text-primary);
    font-family: var(--font-heading);
    margin-top: auto;
    /* Empurra o bloco de texto para a base do card */
    min-height: 56px;
    /* Altura mínima para acomodar 2 linhas de título */
  }

  .partners-page .card-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    min-height: 110px;
    /* Altura mínima para acomodar 4 linhas de descrição, nivelando as caixas de texto */
  }

  /* Card Hover Effects */
  .partners-page .affiliate-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.1);
  }

  .partners-page .affiliate-card:hover .card-overlay {
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.75) 0%, rgba(10, 10, 10, 1) 100%);
  }

  .partners-page .affiliate-card:hover .card-icon {
    background-color: var(--accent-gold);
    color: #000;
    box-shadow: 0 0 15px var(--accent-gold);
  }

  /* How It Works: Flow Grid */
  .partners-page .affiliate-flow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 45px;
    position: relative;
  }

  .partners-page .affiliate-flow-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
  }

  .partners-page .flow-num-wrapper {
    position: absolute;
    top: 20px;
    right: 25px;
  }

  .partners-page .flow-num {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.3);
    font-family: var(--font-heading);
    letter-spacing: 1px;
  }

  .partners-page .flow-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    color: var(--accent-gold);
  }

  .partners-page .flow-icon svg {
    stroke-width: 1.5;
  }

  .partners-page .affiliate-flow-card h3 {
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 12px;
    font-family: var(--font-heading);
  }

  .partners-page .affiliate-flow-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
  }

  /* Connecting arrow between cards (Desktop) */
  @media (min-width: 992px) {
    .partners-page .affiliate-flow-card:not(:last-child)::after {
      content: '';
      position: absolute;
      top: 50%;
      right: -20px;
      width: 12px;
      height: 12px;
      border-top: 2px solid rgba(212, 175, 55, 0.3);
      border-right: 2px solid rgba(212, 175, 55, 0.3);
      transform: translateY(-50%) rotate(45deg);
      z-index: 2;
    }
  }

  .partners-page .affiliate-flow-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background-color: rgba(20, 20, 20, 0.9);
    transform: translateY(-3px);
  }

  /* Highlight Box */
  .partners-page .affiliate-highlight-box {
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: rgba(212, 175, 55, 0.03);
    border: 1px solid var(--accent-gold);
    border-radius: 6px;
    padding: 30px 40px;
    margin-top: 60px;
    text-align: left;
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.03);
  }

  .partners-page .highlight-icon-wrap {
    color: var(--accent-gold);
    flex-shrink: 0;
    display: flex;
    align-items: center;
  }

  .partners-page .highlight-info-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--accent-gold);
    font-family: var(--font-heading);
  }

  .partners-page .highlight-info-content p {
    font-size: 0.95rem;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.6;
  }

  /* Product Points: Circular Images Grid */
  .partners-page .affiliate-point-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
  }

  .partners-page .affiliate-point {
    background-color: rgba(20, 20, 20, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
  }

  .partners-page .point-image {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px auto;
    border: 2px solid var(--accent-gold);
    background-color: #0A0A0A;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
  }

  .partners-page .point-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.3);
    /* Dá um zoom por padrão nas imagens dentro do círculo */
    transition: transform 0.5s ease;
  }

  .partners-page .affiliate-point h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    color: var(--text-primary);
  }

  .partners-page .affiliate-point p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
  }

  .partners-page .affiliate-point:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    background-color: rgba(25, 25, 25, 0.8);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  }

  .partners-page .affiliate-point:hover .point-image {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
  }

  .partners-page .affiliate-point:hover .point-image img {
    transform: scale(1.45);
    /* Zoom adicional no hover */
  }

  /* Customer Target Grid */
  .partners-page .target-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 40px;
  }

  .partners-page .target-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 35px 20px;
    text-align: center;
    transition: all 0.3s ease;
  }

  .partners-page .target-icon {
    color: var(--accent-gold);
    margin-bottom: 20px;
    display: inline-block;
  }

  .partners-page .target-card h3 {
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 12px;
    font-family: var(--font-heading);
    line-height: 1.4;
  }

  .partners-page .target-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
  }

  .partners-page .target-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    background-color: rgba(25, 25, 25, 0.8);
  }

  /* Sales Talk: Quotes Grid */
  .partners-page .talk-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
  }

  .partners-page .talk-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 40px 30px 40px 60px;
    position: relative;
    transition: all 0.3s ease;
  }

  .partners-page .talk-quote-icon {
    font-size: 4rem;
    font-family: "Cormorant Garamond", serif;
    color: rgba(212, 175, 55, 0.15);
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
  }

  .partners-page .talk-card h3 {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--accent-gold);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    font-family: var(--font-heading);
  }

  .partners-page .talk-card p {
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 2;
  }

  .partners-page .talk-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  }

  /* How To Use & Recipe Layout */
  .partners-page .usage-layout-grid {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 30px;
    margin-top: 45px;
    align-items: start;
  }

  .partners-page .usage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .partners-page .usage-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .partners-page .usage-image {
    height: 130px;
    overflow: hidden;
    border-bottom: 1px solid var(--border-subtle);
  }

  .partners-page .usage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .partners-page .usage-content {
    padding: 20px 15px;
  }

  .partners-page .usage-content h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 8px;
    font-family: var(--font-heading);
  }

  .partners-page .usage-content p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
  }

  .partners-page .usage-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-4px);
  }

  .partners-page .usage-card:hover .usage-image img {
    transform: scale(1.08);
  }

  /* Recipe Mini Box */
  .partners-page .recipe-mini-box {
    background-color: rgba(212, 175, 55, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 30px 24px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }

  .partners-page .recipe-box-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
  }

  .partners-page .recipe-lightbulb {
    color: var(--accent-gold);
    display: flex;
    align-items: center;
  }

  .partners-page .recipe-mini-box h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--accent-gold);
    margin: 0;
    font-family: var(--font-heading);
  }

  .partners-page .recipe-mini-box p {
    font-size: 0.88rem;
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
  }

  /* Compliance Grid */
  .partners-page .compliance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Ajustado para 2 colunas */
    gap: 24px;
    margin-top: 40px;
    max-width: 800px;
    /* Centraliza e limita a largura para melhor proporção */
    margin-left: auto;
    margin-right: auto;
  }

  .partners-page .compliance-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
  }

  .partners-page .card-badge {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 25px;
    align-self: flex-start;
    font-family: var(--font-heading);
  }

  .partners-page .badge-ng {
    background-color: rgba(239, 68, 68, 0.1);
    color: #EF4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
  }

  .partners-page .badge-ok {
    background-color: rgba(34, 197, 94, 0.1);
    color: #22C55E;
    border: 1px solid rgba(34, 197, 94, 0.2);
  }



  .partners-page .compliance-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .partners-page .compliance-card li {
    font-size: 0.92rem;
    color: var(--text-secondary);
    padding: 10px 0 10px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    text-align: left;
  }

  .partners-page .ng-card li::before {
    content: "•";
    color: #EF4444;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    top: 5px;
  }

  .partners-page .ok-card li::before {
    content: "•";
    color: #22C55E;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    top: 5px;
  }



  .partners-page .compliance-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
  }



  /* FAQ Accordion Section */
  .partners-page .faq-container {
    max-width: 900px;
    margin: 0 auto;
  }

  .partners-page .faq-accordion-full {
    margin-top: 45px;
  }

  /* Final CTA Section with product image */
  .partners-page .affiliate-final-cta {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 75% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%), #0A0A0A;
    border-top: 1px solid var(--border-subtle);
  }

  .partners-page .affiliate-final-cta .cta-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    /* Proporção melhorada */
    gap: 80px;
    /* Espaço aumentado para dar respiro em relação à imagem */
    align-items: center;
    text-align: left;
    max-width: 1100px;
    margin: 0 auto;
  }

  .partners-page .cta-left {
    text-align: left;
  }

  .partners-page .cta-left h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    line-height: 1.3;
    margin-bottom: 24px;
    /* Espaço aumentado */
    color: #FFF;
    font-family: var(--font-heading);
    font-weight: 700;
  }

  .partners-page .cta-left p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 45px;
    /* Espaço aumentado para distanciar o botão */
    max-width: 550px;
  }

  .partners-page .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #B89020 100%);
    color: #0A0A0A !important;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    padding: 18px 42px;
    border: 1px solid var(--accent-gold);
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    text-decoration: none;
  }

  .partners-page .cta-button::after {
    content: '\2192';
    margin-left: 12px;
    font-size: 1.1rem;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  }

  .partners-page .cta-button:hover {
    background: #FFF;
    border-color: #FFF;
    color: #0A0A0A !important;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.4);
  }

  .partners-page .cta-button:hover::after {
    transform: translateX(6px);
  }

  .partners-page .cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  }

  .partners-page .cta-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }

  .partners-page .cta-right::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
  }

  .partners-page .cta-product-img {
    max-height: 380px;
    width: auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.7));
    animation: float-anim 6s ease-in-out infinite;
    z-index: 1;
    position: relative;
  }

  @keyframes float-anim {
    0% {
      transform: translateY(0px);
    }

    50% {
      transform: translateY(-12px);
    }

    100% {
      transform: translateY(0px);
    }
  }

  /* Responsive Styles */
  @media (max-width: 1024px) {
    .partners-page .affiliate-point-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .partners-page .target-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .partners-page .usage-layout-grid {
      grid-template-columns: 1fr;
    }

    .partners-page .recipe-mini-box {
      margin-top: 10px;
    }
  }

  @media (max-width: 991px) {
    .partners-page .affiliate-card-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .partners-page .affiliate-flow-grid {
      grid-template-columns: repeat(2, 1fr);
    }



    .partners-page .affiliate-final-cta {
      padding: 60px 0;
      background: radial-gradient(circle at 50% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 70%), #0A0A0A;
    }

    .partners-page .affiliate-final-cta .cta-container {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 40px;
    }

    .partners-page .cta-left {
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .partners-page .cta-left h2 {
      font-size: 1.8rem;
      line-height: 1.4;
      margin-bottom: 16px;
    }

    .partners-page .cta-left p {
      margin-left: auto;
      margin-right: auto;
      font-size: 0.95rem;
      line-height: 1.7;
      margin-bottom: 30px;
    }

    .partners-page .cta-button {
      padding: 15px 30px;
      font-size: 0.8rem;
      width: 100%;
      max-width: 320px;
      letter-spacing: 1px;
    }

    .partners-page .cta-right {
      order: -1;
      /* Posiciona a imagem do produto acima do texto/botão no mobile */
    }

    .partners-page .cta-product-img {
      max-height: 220px;
    }
  }

  @media (max-width: 767px) {
    .partners-page .affiliate-section {
      padding: 60px 0;
    }

    .partners-page .affiliate-card-grid {
      grid-template-columns: 1fr;
    }

    .partners-page .affiliate-flow-grid {
      grid-template-columns: 1fr;
    }

    .partners-page .affiliate-highlight-box {
      flex-direction: column;
      text-align: center;
      padding: 30px 20px;
    }

    .partners-page .affiliate-point-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .partners-page .target-grid {
      grid-template-columns: 1fr;
    }

    .partners-page .usage-grid {
      grid-template-columns: 1fr;
    }

    .partners-page .talk-grid {
      grid-template-columns: 1fr;
    }

    .partners-page .talk-card {
      padding: 40px 30px;
    }

    .partners-page .talk-quote-icon {
      top: 5px;
      left: 15px;
    }

    .partners-page .compliance-grid {
      grid-template-columns: 1fr;
    }

    .partners-page .faq-question {
      padding: 20px 0;
      font-size: 0.95rem;
    }
  }

  @media (max-width: 480px) {
    .partners-page .affiliate-point-grid {
      grid-template-columns: 1fr;
    }
  }

  /* ==========================================================================
     OPÇÕES DE DESIGN E SUPORTE A TEMA (LIGHT/DARK SWITCH)
     ========================================================================== */

  /* --------------------------------------------------------------------------
     TEMA CLARO (PADRÃO 1): Fundo Branco com Letras Escuras (#0F172A)
     -------------------------------------------------------------------------- */
  body.theme-light main#primary.bg-primary {
    background-color: #FFFFFF !important;
  }

  /* Forçar cor escura em todo o texto, parágrafos, listas, spans, tabelas e links secundários */
  body.theme-light .entry-content,
  body.theme-light .entry-content p,
  body.theme-light .entry-content span,
  body.theme-light .entry-content li,
  body.theme-light .entry-content td,
  body.theme-light .entry-content th,
  body.theme-light .entry-content blockquote,
  body.theme-light .entry-content .text-secondary {
    color: #0F172A !important;
    /* Substituído o cinza-claro por preto-azulado (#0F172A) em toda a área do artigo */
  }

  /* Títulos internos do artigo */
  body.theme-light .entry-content h1,
  body.theme-light .entry-content h2,
  body.theme-light .entry-content h3,
  body.theme-light .entry-content h4,
  body.theme-light .entry-content h5,
  body.theme-light .entry-content h6 {
    color: #0F172A !important;
  }

  /* Textos em negrito */
  body.theme-light .entry-content strong,
  body.theme-light .entry-content b {
    color: #0F172A !important;
  }

  /* Tabelas ajustadas para o fundo claro (Pattern 1) */
  body.theme-light .wordpress-content-block table {
    color: #0F172A !important;
  }

  body.theme-light .wordpress-content-block th,
  body.theme-light .wordpress-content-block td {
    border: 1px solid rgba(15, 23, 42, 0.15) !important;
    color: #0F172A !important;
  }

  body.theme-light .wordpress-content-block th {
    background: rgba(154, 123, 28, 0.1) !important;
    color: #856404 !important;
  }

  body.theme-light .wordpress-content-block tr:nth-child(even) {
    background: rgba(15, 23, 42, 0.03) !important;
  }

  /* Links no conteúdo do artigo */
  body.theme-light .entry-content a {
    color: #9A7B1C !important;
  }

  body.theme-light .entry-content a:hover {
    color: #785F15 !important;
  }

  /* Caixa de boas-vindas do sumário da IA (AIO Welcome Box) */
  body.theme-light .ai-welcome-box {
    background: rgba(154, 123, 28, 0.05) !important;
    border-left: 3px solid #9A7B1C !important;
  }

  body.theme-light .ai-welcome-box h4 {
    color: #856404 !important;
  }

  body.theme-light .ai-welcome-box p {
    color: #0F172A !important;
  }

  /* Seção de Tags */
  body.theme-light .post-tags span {
    color: #64748B !important;
  }

  body.theme-light .tag-pill {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    background-color: #F1F5F9;
    border: 1px solid #E2E8F0;
    color: #475569;
    font-size: 0.8rem;
    margin: 2px;
    transition: all 0.2s ease;
  }

  body.theme-light .tag-pill:hover {
    background-color: #E2E8F0;
    color: #0F172A;
  }

  /* Seção de Artigos Relacionados (Related Posts) */
  body.theme-light .related-posts {
    background-color: #F8FAFC !important;
    border-top: 1px solid #E2E8F0 !important;
  }

  body.theme-light .related-posts h3 {
    color: #0F172A !important;
  }

  body.theme-light .related-posts .recipe-card {
    background-color: #FFFFFF !important;
    border: 1px solid #E2E8F0 !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05) !important;
  }

  body.theme-light .related-posts .recipe-card h4 {
    color: #0F172A !important;
  }

  body.theme-light .related-posts .recipe-card span {
    color: #9A7B1C !important;
  }

  body.theme-light .related-posts .recipe-card:hover {
    border-color: #9A7B1C !important;
    box-shadow: 0 10px 15px -3px rgba(154, 123, 28, 0.1) !important;
  }


  /* --------------------------------------------------------------------------
     TEMA ESCURO SUAVE (PADRÃO 2): Fundo #222326 com Letras Originais
     -------------------------------------------------------------------------- */
  body.theme-dark main#primary.bg-primary {
    background-color: #222326 !important;
  }

  body.theme-dark .entry-content {
    color: #E2E8F0 !important;
  }

  body.theme-dark .entry-content h1,
  body.theme-dark .entry-content h2,
  body.theme-dark .entry-content h3,
  body.theme-dark .entry-content h4,
  body.theme-dark .entry-content h5,
  body.theme-dark .entry-content h6 {
    color: #F8FAFC !important;
  }

  body.theme-dark .entry-content ul,
  body.theme-dark .entry-content ol,
  body.theme-dark .entry-content li {
    color: #E2E8F0 !important;
  }

  body.theme-dark .entry-content strong,
  body.theme-dark .entry-content b {
    color: #F8FAFC !important;
  }

  /* Tabelas ajustadas para o fundo escuro suave (Pattern 2) */
  body.theme-dark .wordpress-content-block table {
    color: var(--text-secondary) !important;
  }

  body.theme-dark .wordpress-content-block th,
  body.theme-dark .wordpress-content-block td {
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: var(--text-secondary) !important;
  }

  body.theme-dark .wordpress-content-block th {
    background: rgba(212, 175, 55, 0.05) !important;
    color: var(--accent-gold) !important;
  }

  body.theme-dark .wordpress-content-block tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02) !important;
  }

  body.theme-dark .entry-content a {
    color: var(--accent-gold) !important;
  }

  body.theme-dark .ai-welcome-box {
    background: rgba(212, 175, 55, 0.05) !important;
    border-left: 3px solid var(--accent-gold) !important;
  }

  body.theme-dark .ai-welcome-box h4 {
    color: var(--accent-gold) !important;
  }

  body.theme-dark .ai-welcome-box p {
    color: var(--text-primary) !important;
  }

  body.theme-dark .post-tags span {
    color: var(--text-secondary) !important;
  }

  body.theme-dark .tag-pill {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin: 2px;
  }

  body.theme-dark .related-posts {
    background-color: #1A1B1D !important;
    border-top: 1px solid var(--border-subtle) !important;
  }

  body.theme-dark .related-posts h3 {
    color: #F8FAFC !important;
  }

  body.theme-dark .related-posts .recipe-card {
    background-color: #222326 !important;
    border: 1px solid var(--border-subtle) !important;
  }

  body.theme-dark .related-posts .recipe-card h4 {
    color: #FFFFFF !important;
  }

  body.theme-dark .related-posts .recipe-card span {
    color: var(--accent-gold) !important;
  }


  /* --------------------------------------------------------------------------
     ESTILOS DO BOTÃO FLUTUANTE DE ALTERNÂNCIA DE TEMA (SWITCH)
     -------------------------------------------------------------------------- */
  .theme-switcher-btn {
    position: fixed;
    bottom: 95px;
    /* Posicionado acima do botão backToTop (que fica em 30px) */
    right: 30px;
    /* Alinhado lateralmente com o botão backToTop */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1),
      visibility 0.4s cubic-bezier(0.23, 1, 0.32, 1),
      transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
      background-color 0.3s,
      border-color 0.3s,
      color 0.3s;
    outline: none;
  }

  .theme-switcher-btn:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
    background: var(--accent-gold);
    color: #000;
  }

  .theme-switcher-btn.is-hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    pointer-events: none;
  }

  .theme-switcher-btn .switcher-icon {
    width: 20px;
    height: 20px;
    display: none;
  }

  /* Exibição condicional dos ícones */
  body.theme-light .theme-switcher-btn {
    background: #FFFFFF;
    border-color: #9A7B1C;
    color: #9A7B1C;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  body.theme-light .theme-switcher-btn:hover {
    background: #9A7B1C;
    color: #FFFFFF;
    box-shadow: 0 8px 25px rgba(154, 123, 28, 0.25);
  }

  body.theme-light .theme-switcher-btn .icon-moon {
    display: block;
    /* No tema claro, mostra a lua para mudar para escuro */
  }

  body:not(.theme-light) .theme-switcher-btn .icon-sun {
    display: block;
    /* No tema escuro, mostra o sol para mudar para claro */
  }

  /* ==========================================================================
     ESTILOS DO SIDEBAR E NAVEGAÇÃO DE ARTIGOS
     ========================================================================== */
  .article-sidebar {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    margin-top: 0;
  }

  @media (max-width: 1200px) {
    .article-sidebar {
      max-width: 800px;
      width: 100%;
      margin: 60px auto 0;
    }
  }

  /* Estilos Gerais do Sidebar */
  .sidebar-widget {
    background: rgba(20, 20, 20, 0.4);
    border: 1px solid var(--border-subtle);
    padding: 30px;
    border-radius: 8px;
  }

  .article-sidebar .search-form {
    border: none !important;
    background: transparent !important;
    max-width: 100% !important;
    padding: 0 !important;
  }

  .sidebar-widget .search-form input {
    font-family: var(--font-body);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    color: #FFF !important;
  }

  .sidebar-widget .search-form input:focus {
    border-color: var(--accent-gold) !important;
  }

  /* Clamp para Título Recente no Sidebar (máx. 2 linhas com reticências) */
  .recent-post-title-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
    color: #FFF;
    transition: color 0.3s;
  }

  .recent-post-link:hover .recent-post-title-clamp {
    color: var(--accent-gold) !important;
  }

  /* Transição de cores nos links da Sidebar */
  .article-sidebar .category-link:hover {
    color: var(--accent-gold) !important;
  }

  .article-sidebar .tag-cloud-link:hover {
    border-color: var(--accent-gold) !important;
    color: var(--accent-gold) !important;
    background: rgba(212, 175, 55, 0.05) !important;
  }

  /* Navegação Minimalista de Artigos */
  .post-navigation .nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: var(--accent-gold) !important;
    background: transparent;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .post-navigation .nav-link:hover {
    background: var(--accent-gold) !important;
    color: #000 !important;
    border-color: var(--accent-gold) !important;
    transform: scale(1.05);
  }

  /* Suporte a Tema Claro (Pattern 1) */
  body.theme-light .sidebar-widget {
    background: #FFFFFF !important;
    border-color: #E2E8F0 !important;
  }

  body.theme-light .sidebar-widget .search-form input {
    background: rgba(15, 23, 42, 0.03) !important;
    border-color: rgba(15, 23, 42, 0.1) !important;
    color: #0F172A !important;
  }

  body.theme-light .sidebar-widget .search-form input:focus {
    border-color: #9A7B1C !important;
  }

  body.theme-light .sidebar-widget .search-form button {
    color: #9A7B1C !important;
  }

  body.theme-light .sidebar-widget .widget-title {
    color: #9A7B1C !important;
    border-left-color: #9A7B1C !important;
  }

  body.theme-light .recent-post-title-clamp {
    color: #0F172A !important;
  }

  body.theme-light .recent-post-link:hover .recent-post-title-clamp {
    color: #9A7B1C !important;
  }

  body.theme-light .sidebar-widget .category-link {
    color: #0F172A !important;
  }

  body.theme-light .sidebar-widget .category-link:hover {
    color: #9A7B1C !important;
  }

  body.theme-light .sidebar-widget .categories-widget li {
    border-bottom-color: #E2E8F0 !important;
  }

  body.theme-light .sidebar-widget .tag-cloud-link {
    background: #F1F5F9 !important;
    border-color: #E2E8F0 !important;
    color: #475569 !important;
  }

  body.theme-light .sidebar-widget .tag-cloud-link:hover {
    background: rgba(154, 123, 28, 0.05) !important;
    border-color: #9A7B1C !important;
    color: #9A7B1C !important;
  }

  body.theme-light .post-navigation .nav-link {
    border-color: rgba(15, 23, 42, 0.15) !important;
    color: #9A7B1C !important;
  }

  body.theme-light .post-navigation .nav-link:hover {
    background: #9A7B1C !important;
    color: #FFFFFF !important;
    border-color: #9A7B1C !important;
  }

  /* ==========================================================================
     RECIPE PAGE STYLING (.recipe-container) — Isolated Recipe Template Styles
     ========================================================================== */
  .recipe-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 10px 0;
    font-family: var(--font-body);
    color: var(--text-primary);
  }

  /* 1. Header Meta Bar (Tempo, Quantidade, Preparo) - Centralized */
  .recipe-meta-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background: var(--bg-surface, rgba(20, 20, 20, 0.8));
    border: 1px solid var(--accent-gold, #D4AF37);
    border-radius: 14px;
    padding: 18px 28px;
    margin: 0 auto 40px auto;
    max-width: 680px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(10px);
  }

  .recipe-meta-bar .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
  }

  .recipe-meta-bar .meta-icon {
    font-size: 1.2rem;
  }

  .recipe-meta-bar .meta-label {
    color: var(--text-secondary, #94A3B8);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
  }

  .recipe-meta-bar .meta-value {
    font-weight: 700;
    color: var(--accent-gold, #D4AF37);
  }

  .recipe-meta-bar .meta-divider {
    width: 1px;
    height: 24px;
    background: rgba(212, 175, 55, 0.3);
  }

  /* 2. Recipe Sections & Titles */
  .recipe-section {
    margin-bottom: 40px;
  }

  .recipe-section-title {
    font-size: 1.35rem;
    color: var(--accent-gold, #D4AF37);
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading, inherit);
    font-weight: 600;
  }

  /* 3. Ingredients List (Bullet Points) */
  .recipe-ingredients-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 20px 0 !important;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 12px;
  }

  .recipe-ingredients-list li {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.08));
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary, #F8FAFC);
    transition: border-color 0.2s ease, background 0.2s ease;
  }

  .recipe-ingredients-list li::before {
    content: "•";
    color: var(--accent-gold, #D4AF37);
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
  }

  .recipe-ingredients-list li:hover {
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(212, 175, 55, 0.05);
  }

  /* 4. Preparation Steps (Numbered Circles) */
  .recipe-steps-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .recipe-steps-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.08));
    border-radius: 12px;
    padding: 18px;
    transition: transform 0.2s ease, border-color 0.2s ease;
  }

  .recipe-steps-list li:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
  }

  .recipe-steps-list .step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(212, 175, 55, 0.05));
    border: 1.5px solid var(--accent-gold, #D4AF37);
    color: var(--accent-gold, #D4AF37);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
  }

  .recipe-steps-list .step-text {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--text-primary, #F8FAFC);
    padding-top: 4px;
    flex: 1;
  }

  .recipe-hint {
    margin-top: 20px;
    background: rgba(212, 175, 55, 0.06);
    border-left: 3px solid var(--accent-gold, #D4AF37);
    border-radius: 0 8px 8px 0;
    padding: 14px 18px;
    font-size: 0.9rem;
    color: var(--text-secondary, #94A3B8);
    line-height: 1.6;
  }

  /* 5. Additional Sections (Tags, Cards & Nutrition Grid) */
  .recipe-tags-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
  }

  .recipe-tag-pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.1));
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.88rem;
    color: var(--text-primary, #F8FAFC);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
  }

  .recipe-tag-pill:hover {
    border-color: var(--accent-gold, #D4AF37);
    color: var(--accent-gold, #D4AF37);
    background: rgba(212, 175, 55, 0.08);
  }

  .recipe-card-box {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.08));
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
  }

  .recipe-nutrition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 14px;
    margin-top: 15px;
  }

  .nutrition-card {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 16px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .nutrition-card .val {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--accent-gold, #D4AF37);
  }

  .nutrition-card .unit {
    font-size: 0.8rem;
    color: var(--text-secondary, #94A3B8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Light Theme Overrides for Recipes */
  body.theme-light .recipe-meta-bar {
    background: #FFFFFF;
    border-color: #9A7B1C;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  body.theme-light .recipe-meta-bar .meta-label {
    color: #64748B;
  }

  body.theme-light .recipe-meta-bar .meta-value {
    color: #9A7B1C;
  }

  body.theme-light .recipe-section-title {
    color: #9A7B1C;
    border-bottom-color: rgba(154, 123, 28, 0.2);
  }

  body.theme-light .recipe-ingredients-list li {
    background: #F8FAFC;
    border-color: #E2E8F0;
    color: #0F172A;
  }

  body.theme-light .recipe-ingredients-list li::before {
    color: #9A7B1C;
  }

  body.theme-light .recipe-steps-list li {
    background: #F8FAFC;
    border-color: #E2E8F0;
  }

  body.theme-light .recipe-steps-list .step-number {
    background: linear-gradient(135deg, rgba(154, 123, 28, 0.15), rgba(154, 123, 28, 0.05));
    border-color: #9A7B1C;
    color: #9A7B1C;
  }

  body.theme-light .recipe-steps-list .step-text {
    color: #0F172A;
  }

  body.theme-light .recipe-hint {
    background: rgba(154, 123, 28, 0.06);
    border-left-color: #9A7B1C;
    color: #475569;
  }

  body.theme-light .recipe-tag-pill {
    background: #F1F5F9;
    border-color: #E2E8F0;
    color: #334155;
  }

  body.theme-light .recipe-tag-pill:hover {
    border-color: #9A7B1C;
    color: #9A7B1C;
    background: rgba(154, 123, 28, 0.08);
  }

  body.theme-light .nutrition-card {
    background: rgba(154, 123, 28, 0.05);
    border-color: rgba(154, 123, 28, 0.25);
  }

  body.theme-light .nutrition-card .val {
    color: #9A7B1C;
  }

  body.theme-light .nutrition-card .unit {
    color: #64748B;
  }

















  /* ==========================================================================
   SINGLE RECIPE PREMIUM DESIGN SYSTEM (NO EMOJIS, CLEAN LUXURY DARK & GOLD)
   ========================================================================== */
  .recipe-container {
    max-width: 860px;
    margin: 30px auto;
    padding: 32px;
    background: var(--bg-surface, #141414);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    color: var(--text-primary, #F8FAFC);
    font-family: var(--font-body);
  }

  /* Meta Bar - Single Line Horizontal Alignment */
  .recipe-meta-bar {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 14px;
    padding: 20px 24px;
    margin-bottom: 36px;
    text-align: center;
    width: 100%;
  }

  .recipe-meta-bar .meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1;
  }

  .recipe-meta-bar .meta-label {
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--text-secondary, #94A3B8);
    font-weight: 500;
  }

  .recipe-meta-bar .meta-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary, #FFFFFF);
    font-family: var(--font-heading);
  }

  .recipe-meta-bar .meta-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 12px;
  }

  /* Sections */
  .recipe-section {
    margin-bottom: 36px;
  }

  .recipe-section-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-gold, #D4AF37);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 10px;
  }

  /* Card Box (Usado para Ingredientes, Por Que Funciona, Nutrição, etc.) */
  .recipe-card-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 20px;
  }

  /* Steps List */
  .recipe-steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .recipe-steps-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px 20px;
    border-radius: 12px;
  }

  .recipe-steps-list .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F5E5C0 0%, #D4AF37 50%, #A88420 100%);
    color: #0A0A0A;
    font-weight: 700;
    font-size: 0.95rem;
  }

  .recipe-steps-list .step-text {
    flex: 1;
    line-height: 1.7;
    font-size: 0.98rem;
    color: var(--text-primary, #F8FAFC);
    padding-top: 3px;
  }

  /* Hint Box */
  .recipe-hint {
    margin-top: 16px;
    background: rgba(212, 175, 55, 0.08);
    border-left: 3px solid var(--accent-gold, #D4AF37);
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 0.92rem;
    color: var(--text-primary, #F8FAFC);
    line-height: 1.6;
  }

  /* Tags Grid */
  .recipe-tags-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .recipe-tag-pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: var(--text-primary, #F8FAFC);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
  }

  /* Vertical Stacked Key-Value List (Usado em Nutrição Média e Ingredientes) */
  .recipe-nutrition-list,
  .recipe-ingredients-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .recipe-nutrition-list li,
  .recipe-ingredients-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.98rem;
  }

  .recipe-nutrition-list li:last-child,
  .recipe-ingredients-list li:last-child {
    border-bottom: none;
  }

  .recipe-nutrition-list .nut-label,
  .recipe-ingredients-list .nut-label {
    color: var(--text-secondary, #94A3B8);
    font-weight: 500;
  }

  .recipe-nutrition-list .nut-val,
  .recipe-ingredients-list .nut-val {
    color: var(--accent-gold, #D4AF37);
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.1rem;
  }

  /* Custom Bullet List */
  .recipe-custom-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .recipe-custom-list li {
    margin-bottom: 8px;
    color: var(--text-primary, #F8FAFC);
  }

  /* ==========================================================================
   WP POSTS PAGINATION
   ========================================================================== */
  .pagination-wrapper {
    margin-top: 60px;
    text-align: center;
  }

  .pagination-wrapper .screen-reader-text,
  .pagination-wrapper h2.screen-reader-text,
  .navigation.pagination h2 {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary, #A0A0A0);
    margin-top: 0;
    margin-bottom: 25px;
    letter-spacing: 1.5px;
    display: block;
    text-align: center;
  }

  .pagination-wrapper .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .pagination-wrapper .page-numbers {
    display: inline-block;
    padding: 12px 20px;
    background: var(--bg-surface, #141414);
    border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.1));
    color: #FFF;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
  }

  .pagination-wrapper .page-numbers.prev,
  .pagination-wrapper .page-numbers.next {
    font-size: 0.8rem;
    letter-spacing: 0.5px;
  }

  .pagination-wrapper .page-numbers:hover {
    border-color: var(--accent-gold, #D4AF37);
    color: var(--accent-gold, #D4AF37);
  }

  .pagination-wrapper .page-numbers.current {
    background: var(--accent-gold, #D4AF37);
    color: #000;
    border-color: var(--accent-gold, #D4AF37);
    font-weight: bold;
  }