/* =======================================================
   FLOR DA VIDA — ECOSSISTEMA GLOBAL (SHARED STYLES)
   Paleta Luminosa: Palha, Pêssego Suave, Dourado & Branco
   ======================================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,400;1,600&display=swap');

:root {
  /* Cores Principais - Luminosas & Alegres */
  --fdv-bg: #FAF7F2;               /* Fundo geral marfim / palha quente */
  --fdv-bg-subtle: #F3ECE1;        /* Tom secundário palha suave */
  --fdv-bg-peach: #FFF8F0;         /* Nuance acolhedora pêssego claro */
  --fdv-surface: #FFFFFF;          /* Cartões e superfícies brancas puras */
  --fdv-surface-hover: #FCFBF8;
  
  /* Dourado Flor da Vida */
  --fdv-gold: #B8860B;             /* Dourado clássico e nobre */
  --fdv-gold-light: #D4AF37;       /* Dourado brilhante */
  --fdv-gold-dark: #8F6907;        /* Dourado escuro para contraste */
  --fdv-gold-gradient: linear-gradient(135deg, #D4AF37 0%, #AA771C 100%);
  --fdv-gold-subtle: rgba(184, 134, 11, 0.12);
  
  /* Verde Sálvia / Esmeralda Botânico */
  --fdv-emerald: #2D5A43;
  --fdv-emerald-dark: #1E3D2E;
  --fdv-emerald-light: #417A5D;
  --fdv-emerald-subtle: rgba(45, 90, 67, 0.08);

  /* Bordas e Linhas Suaves */
  --fdv-border: #E8DEC8;           /* Borda dourada suave */
  --fdv-border-light: #EFE8DA;
  --fdv-border-gold: rgba(184, 134, 11, 0.35);

  /* Tipografia Escura & Nítida (Alto Contraste) */
  --fdv-text: #1D231F;             /* Texto principal cinza-chumbo profundo */
  --fdv-text-muted: #546258;       /* Texto secundário e descrições */
  --fdv-text-dim: #7B8B80;         /* Metadados e datas */
  --fdv-text-gold: #8F6907;        /* Destaques dourados em texto */

  /* Fontes */
  --fdv-font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --fdv-font-serif: 'Playfair Display', Georgia, serif;

  /* Formas e Efeitos */
  --fdv-radius-sm: 8px;
  --fdv-radius-md: 14px;
  --fdv-radius-lg: 22px;
  --fdv-radius-full: 9999px;
  --fdv-shadow-sm: 0 2px 8px rgba(180, 150, 100, 0.06);
  --fdv-shadow-card: 0 8px 24px rgba(160, 130, 80, 0.08);
  --fdv-shadow-hover: 0 14px 34px rgba(160, 130, 80, 0.14);
  --fdv-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset básico */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--fdv-bg);
  color: var(--fdv-text);
  font-family: var(--fdv-font-sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* =======================================================
   1. GLOBAL TOP NAVIGATION (Obsidiana Nobre & Dourado de Luxo)
   ======================================================= */
.fdv-global-nav {
  background: #111518;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  font-family: var(--fdv-font-sans);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.fdv-global-nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.fdv-brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: var(--fdv-transition);
}

.fdv-brand-flower-svg {
  width: 32px;
  height: 32px;
  min-width: 32px;
  max-width: 32px;
  filter: drop-shadow(0 1px 4px rgba(216, 159, 69, 0.5));
}

.fdv-brand-title {
  font-family: var(--fdv-font-serif);
  font-size: 1.22rem;
  font-weight: 700;
  color: #fbf7b1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fdv-nav-right-cluster {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fdv-nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.fdv-nav-item a {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border-radius: var(--fdv-radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid transparent;
  transition: var(--fdv-transition);
  white-space: nowrap;
}

.fdv-nav-item a:hover {
  color: #fbf7b1;
  background: rgba(216, 159, 69, 0.15);
  border-color: rgba(216, 159, 69, 0.35);
}

.fdv-nav-item a.active {
  color: #111518;
  background: linear-gradient(135deg, #fbf7b1 0%, #d89f45 100%);
  border-color: #d89f45;
  box-shadow: 0 2px 10px rgba(216, 159, 69, 0.35);
  font-weight: 700;
}

/* Seletor de Idioma no Topo */
.fdv-lang-switcher-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 14px;
}

.fdv-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 5px 11px;
  border-radius: var(--fdv-radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  text-decoration: none;
  transition: var(--fdv-transition);
}

.fdv-lang-btn:hover, .fdv-lang-btn.active {
  background: linear-gradient(135deg, #c19340 0%, #d89f45 100%);
  color: #111518;
  border-color: #d89f45;
}

#google_translate_element {
  display: inline-block;
  vertical-align: middle;
}

.goog-te-gadget {
  font-family: var(--fdv-font-sans) !important;
  font-size: 0.78rem !important;
  color: transparent !important;
}

.goog-te-gadget .goog-te-combo {
  margin: 0 !important;
  padding: 4px 8px !important;
  border-radius: var(--fdv-radius-full) !important;
  border: 1px solid var(--fdv-border) !important;
  background: #FFF !important;
  color: var(--fdv-text) !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  outline: none !important;
  cursor: pointer !important;
}

.goog-te-gadget span {
  display: none !important;
}

.goog-te-banner-frame {
  display: none !important;
}

body {
  top: 0 !important;
}

@media (max-width: 768px) {
  .fdv-global-nav-inner {
    padding: 8px 12px;
    justify-content: center;
  }
  .fdv-nav-right-cluster {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 8px;
    margin-top: 6px;
  }
  .fdv-lang-switcher-wrap {
    border-left: none;
    padding-left: 0;
  }
}

/* =======================================================
   2. GLOBAL FOOTER (Luminoso & Institucional)
   ======================================================= */
.fdv-network-footer {
  background: #F3ECE1;
  border-top: 1px solid var(--fdv-border);
  color: var(--fdv-text-muted);
  font-family: var(--fdv-font-sans);
  padding: 45px 20px 25px;
  margin-top: 60px;
}

.fdv-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}

@media (max-width: 768px) {
  .fdv-footer-inner {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }
}

.fdv-footer-col h4 {
  color: var(--fdv-emerald-dark);
  font-family: var(--fdv-font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.fdv-footer-col p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--fdv-text-muted);
}

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

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

.fdv-footer-links a {
  color: var(--fdv-text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--fdv-transition);
}

.fdv-footer-links a:hover {
  color: var(--fdv-gold);
  padding-left: 4px;
}

.fdv-footer-bottom {
  max-width: 1100px;
  margin: 35px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(184, 134, 11, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--fdv-text-dim);
  flex-wrap: wrap;
  gap: 12px;
}

.fdv-footer-legal-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.fdv-footer-legal-links a {
  color: var(--fdv-text-muted);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--fdv-transition);
}

.fdv-footer-legal-links a:hover {
  color: var(--fdv-gold);
}

@media (max-width: 640px) {
  .fdv-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .fdv-footer-legal-links {
    justify-content: center;
  }
}

/* =======================================================
   3. ADSENSE SLOTS (Design Limpo e em Conformidade)
   ======================================================= */
.fdv-ad-slot {
  width: 100%;
  max-width: 970px;
  margin: 24px auto;
  padding: 14px 12px 10px;
  background: #FFFDF9;
  border: 1px dashed var(--fdv-border);
  border-radius: var(--fdv-radius-sm);
  text-align: center;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.fdv-ad-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fdv-text-dim);
  margin-bottom: 6px;
  font-weight: 700;
}

.fdv-ad-content {
  color: var(--fdv-text-dim);
  font-size: 0.82rem;
}

/* =======================================================
   4. PÁGINAS REGULAMENTARES & LEGAIS (LGPD / AdSense)
   ======================================================= */
.fdv-legal-wrapper {
  max-width: 860px;
  margin: 35px auto 70px;
  padding: 0 20px;
}

.fdv-legal-card {
  background: #FFFFFF;
  border: 1px solid var(--fdv-border);
  border-radius: var(--fdv-radius-lg);
  padding: 40px;
  box-shadow: var(--fdv-shadow-card);
}

@media (max-width: 640px) {
  .fdv-legal-card {
    padding: 24px 18px;
  }
}

.fdv-legal-header {
  border-bottom: 1px solid var(--fdv-border);
  padding-bottom: 20px;
  margin-bottom: 25px;
}

.fdv-legal-tag {
  display: inline-block;
  background: var(--fdv-gold-subtle);
  border: 1px solid var(--fdv-border);
  color: var(--fdv-gold-dark);
  padding: 3px 12px;
  border-radius: var(--fdv-radius-full);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.fdv-legal-title {
  font-family: var(--fdv-font-serif);
  font-size: clamp(1.8rem, 3.8vw, 2.4rem);
  color: var(--fdv-emerald-dark);
  line-height: 1.25;
  margin-bottom: 6px;
}

.fdv-legal-meta {
  font-size: 0.82rem;
  color: var(--fdv-text-dim);
}

.fdv-legal-content {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--fdv-text);
}

.fdv-legal-content h2 {
  font-family: var(--fdv-font-serif);
  color: var(--fdv-emerald-dark);
  font-size: 1.35rem;
  margin: 28px 0 12px;
  padding-top: 14px;
  border-top: 1px solid var(--fdv-border-light);
}

.fdv-legal-content h3 {
  color: var(--fdv-gold-dark);
  font-size: 1.08rem;
  margin: 18px 0 8px;
}

.fdv-legal-content p {
  margin-bottom: 14px;
}

.fdv-legal-content ul, .fdv-legal-content ol {
  margin: 12px 0 18px 24px;
}

.fdv-legal-content li {
  margin-bottom: 6px;
}

.fdv-legal-alert {
  background: var(--fdv-emerald-subtle);
  border-left: 4px solid var(--fdv-gold);
  padding: 14px 18px;
  border-radius: 0 var(--fdv-radius-sm) var(--fdv-radius-sm) 0;
  margin: 20px 0;
  font-size: 0.92rem;
  color: var(--fdv-emerald-dark);
}

/* =======================================================
   5. PÁGINAS DOS CANAIS (SEM ÍCONES EM QUADRADOS & SEM QUEBRA PDF)
   ======================================================= */
.channel-page-container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 24px 20px 70px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* 5.1 Banner Hero & Logo Limpo */
.channel-banner-card {
  width: 100%;
  border-radius: var(--fdv-radius-lg);
  overflow: hidden;
  border: 1px solid var(--fdv-border);
  box-shadow: var(--fdv-shadow-card);
  background: #FFF;
}

.channel-banner-media {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: transparent;
}

.channel-banner-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.channel-banner-overlay {
  display: none !important;
}

.channel-identity-bar {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 22px 28px;
  margin-top: 0;
  position: relative;
  z-index: 5;
}

@media (max-width: 640px) {
  .channel-identity-bar {
    flex-direction: column;
    text-align: center;
    padding: 16px 16px 20px;
    margin-top: 0;
  }
}

.channel-logo-square {
  width: 82px;
  height: 82px;
  border-radius: 16px;
  background: #FFF;
  border: 2px solid var(--fdv-gold);
  box-shadow: 0 6px 18px rgba(184, 134, 11, 0.25);
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.channel-logo-square img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.channel-identity-meta {
  flex-grow: 1;
}

.channel-meta-title {
  font-family: var(--fdv-font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--fdv-emerald-dark);
  line-height: 1.15;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .channel-meta-title {
    justify-content: center;
  }
}

.channel-meta-handle {
  font-size: 0.92rem;
  color: var(--fdv-gold-dark);
  font-weight: 700;
  margin-top: 3px;
}

.channel-meta-tagline {
  font-size: 0.94rem;
  color: var(--fdv-text-muted);
  font-style: italic;
  margin-top: 4px;
  max-width: 640px;
}

/* 5.2 Descrição em Duas Colunas Editoriais */
.channel-editorial-section {
  background: #FFFFFF;
  border: 1px solid var(--fdv-border);
  border-radius: var(--fdv-radius-lg);
  padding: 30px 28px;
  box-shadow: var(--fdv-shadow-card);
}

.channel-editorial-header {
  margin-bottom: 18px;
  border-bottom: 1px solid var(--fdv-border-light);
  padding-bottom: 10px;
}

.channel-editorial-header h2 {
  font-family: var(--fdv-font-serif);
  color: var(--fdv-emerald-dark);
  font-size: 1.3rem;
  font-weight: 700;
}

.channel-editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  font-size: 0.94rem;
  line-height: 1.75;
  color: var(--fdv-text);
}

@media (max-width: 820px) {
  .channel-editorial-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.editorial-col p {
  margin-bottom: 12px;
}

.editorial-col p:last-child {
  margin-bottom: 0;
}

.editorial-highlight-box {
  background: var(--fdv-bg-subtle);
  border: 1px solid var(--fdv-border);
  border-radius: var(--fdv-radius-sm);
  padding: 14px 16px;
  margin-top: 14px;
}

/* 5.3 Três Cards de Redes Sociais (SEM ÍCONES GIGANTES) */
.social-dist-section {
  width: 100%;
}

.social-dist-section h2 {
  font-family: var(--fdv-font-serif);
  color: var(--fdv-emerald-dark);
  font-size: 1.3rem;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--fdv-border-light);
  padding-bottom: 8px;
}

.social-dist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 860px) {
  .social-dist-grid {
    grid-template-columns: 1fr;
  }
}

.social-dist-card {
  background: #FFFFFF;
  border: 1px solid var(--fdv-border);
  border-radius: var(--fdv-radius-md);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--fdv-transition);
  box-shadow: var(--fdv-shadow-card);
}

.social-dist-card:hover {
  transform: translateY(-3px);
  border-color: var(--fdv-gold);
  box-shadow: var(--fdv-shadow-hover);
}

.social-card-title {
  font-family: var(--fdv-font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--fdv-emerald-dark);
  margin-bottom: 4px;
}

.social-badge-multilingual {
  display: inline-block;
  background: var(--fdv-gold-subtle);
  border: 1px solid var(--fdv-border);
  color: var(--fdv-gold-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--fdv-radius-full);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.social-card-details {
  font-size: 0.88rem;
  color: var(--fdv-text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

.social-card-details strong {
  color: var(--fdv-text);
}

.social-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--fdv-radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--fdv-transition);
  text-align: center;
}

.btn-youtube-red {
  background: #C4302B;
  color: #FFF;
}

.btn-youtube-red:hover {
  background: #A82420;
}

.btn-social-clean {
  background: #FAF7F2;
  border: 1px solid var(--fdv-border);
  color: var(--fdv-emerald-dark);
}

.btn-social-clean:hover {
  background: var(--fdv-gold);
  border-color: var(--fdv-gold);
  color: #FFF;
}

/* 5.4 Produtos Recomendados (Físicos vs Digitais) */
.products-dual-section {
  width: 100%;
}

.products-dual-header {
  text-align: center;
  margin-bottom: 24px;
}

.products-dual-header h2 {
  font-family: var(--fdv-font-serif);
  font-size: 1.7rem;
  color: var(--fdv-emerald-dark);
  margin-bottom: 4px;
}

.products-dual-header p {
  color: var(--fdv-text-muted);
  font-size: 0.94rem;
}

.products-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

@media (max-width: 860px) {
  .products-dual-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.products-category-col h3 {
  font-family: var(--fdv-font-serif);
  font-size: 1.2rem;
  color: var(--fdv-gold-dark);
  margin-bottom: 14px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--fdv-border);
}

.products-cards-subgrid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.product-item-card {
  background: #FFFFFF;
  border: 1px solid var(--fdv-border-light);
  border-radius: var(--fdv-radius-md);
  padding: 16px;
  transition: var(--fdv-transition);
  box-shadow: var(--fdv-shadow-sm);
}

.product-item-card:hover {
  border-color: var(--fdv-gold);
  transform: translateY(-2px);
  box-shadow: var(--fdv-shadow-card);
}

.product-item-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--fdv-gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
  margin-bottom: 2px;
}

.product-item-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--fdv-emerald-dark);
  margin-bottom: 4px;
}

.product-item-desc {
  font-size: 0.85rem;
  color: var(--fdv-text-muted);
  line-height: 1.5;
  margin-bottom: 10px;
}

.product-item-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--fdv-gold-dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--fdv-transition);
}

.product-item-link:hover {
  color: var(--fdv-emerald-dark);
  gap: 8px;
}

/* =======================================================
   FLOWER OF LIFE PARTICLES & AMBIENT ANIMATIONS
   ======================================================= */
@keyframes flowerFloat {
  0% {
    transform: scale(0.1) rotate(0deg);
    opacity: 0;
  }
  12% {
    opacity: 0.65;
  }
  50% {
    transform: scale(1.0) rotate(12deg);
    opacity: 0.45;
  }
  88% {
    opacity: 0.15;
  }
  100% {
    transform: scale(1.3) rotate(25deg);
    opacity: 0;
  }
}

.flower-bg-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.flower-particle {
  position: absolute;
  pointer-events: none;
  animation-name: flowerFloat;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
  will-change: transform, opacity;
  user-select: none;
  filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.45));
}

/* Subtle dot grid */
.dot-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(184, 134, 11, 0.12) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

/* Garante que o conteúdo fique acima do fundo de partículas */
.fdv-hero-section,
.channel-page-container,
.blog-portal-container,
.fdv-regulatory-container,
.fdv-portal-container,
.showcase-grid-wrap,
.fdv-footer {
  position: relative;
  z-index: 1;
}

/* =======================================================
   GOLD SHIMMER, BOUNCE & BADGE ANIMATIONS
   ======================================================= */
@keyframes goldShimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes btnBounce {
  0%, 100% {
    transform: translateY(0px);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}

@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.15);
  }
}

.badge-pulse {
  animation: badgePulse 2s ease-in-out infinite;
}

.headline-gold-shimmer {
  background: linear-gradient(90deg,
      #111518 0%,
      #111518 30%,
      #fbf7b1 40%,
      #c19340 45%,
      #f9f9ac 50%,
      #cfa03b 55%,
      #d89f45 60%,
      #111518 70%,
      #111518 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShimmer 5s linear infinite;
}

.btn-hero-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 34px;
  font-size: 1.05rem;
  font-weight: 800;
  border-radius: var(--fdv-radius-full);
  background: linear-gradient(110deg,
      #c19340 0%,
      #d89f45 30%,
      #fbf7b1 40%,
      #ffffff 45%,
      #fbf7b1 50%,
      #cfa03b 55%,
      #c19340 60%,
      #d89f45 100%);
  background-size: 200% auto;
  color: #1a1000 !important;
  font-family: var(--fdv-font-sans);
  box-shadow: 0 8px 24px rgba(193, 147, 64, 0.45);
  animation: goldShimmer 5s linear infinite, btnBounce 1.8s ease-in-out infinite;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-hero-gold:hover {
  animation-play-state: paused;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(193, 147, 64, 0.65);
  filter: brightness(1.1);
}

.btn-affiliate-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: var(--fdv-radius-full);
  background: linear-gradient(110deg,
      #111518 0%,
      #111518 30%,
      #fbf7b1 40%,
      #c19340 45%,
      #f9f9ac 50%,
      #cfa03b 55%,
      #d89f45 60%,
      #111518 70%,
      #111518 100%);
  background-size: 200% auto;
  color: #fbf7b1 !important;
  font-family: var(--fdv-font-sans);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  animation: goldShimmer 5s linear infinite;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(212, 175, 55, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-affiliate-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.6);
  filter: brightness(1.15);
}

/* =======================================================
   THEMES PARA PÁGINAS DOS CANAIS (CORES SUAVIZADAS / 1 TOM ACIMA)
   ======================================================= */

/* 1. PLENITUDE NATURAL — Verde Botânico Suavizado */
body.channel-theme-plenitude {
  background: linear-gradient(175deg, #13422a 0%, #1c5839 45%, #25724a 100%);
  color: #F2FAF5;
}
body.channel-theme-plenitude .dot-grid-pattern {
  background-image: radial-gradient(circle at 1px 1px, rgba(212, 175, 55, 0.28) 1px, transparent 0);
}
body.channel-theme-plenitude .channel-banner-card {
  background: #174b30;
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}
body.channel-theme-plenitude .channel-meta-title {
  color: #FFFFFF;
}
body.channel-theme-plenitude .channel-meta-handle {
  color: #f7d779;
}
body.channel-theme-plenitude .channel-meta-tagline {
  color: #d1e7dd;
}
body.channel-theme-plenitude .channel-editorial-section {
  background: rgba(23, 75, 48, 0.92);
  backdrop-filter: blur(12px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
  color: #E8F5EE;
}
body.channel-theme-plenitude .channel-editorial-grid,
body.channel-theme-plenitude .editorial-col p {
  color: #E8F5EE !important;
}
body.channel-theme-plenitude .editorial-col strong {
  color: #FFFFFF;
}
body.channel-theme-plenitude .channel-editorial-header h2 {
  color: #f7d779;
  border-bottom-color: rgba(212, 175, 55, 0.25);
}
body.channel-theme-plenitude .editorial-highlight-box {
  background: rgba(14, 46, 29, 0.8);
  border-color: rgba(212, 175, 55, 0.3);
  color: #FFFFFF;
}
body.channel-theme-plenitude .social-dist-card {
  background: rgba(23, 75, 48, 0.92);
  backdrop-filter: blur(12px);
  border-color: rgba(212, 175, 55, 0.3);
  color: #E8F5EE;
}
body.channel-theme-plenitude .social-card-title {
  color: #FFFFFF;
}
body.channel-theme-plenitude .social-card-details {
  color: #d1e7dd;
}
body.channel-theme-plenitude .social-card-details strong {
  color: #FFFFFF;
}
body.channel-theme-plenitude .social-dist-section h2,
body.channel-theme-plenitude .products-dual-header h2,
body.channel-theme-plenitude .channel-articles-section h2 {
  color: #FFFFFF;
}
body.channel-theme-plenitude .products-dual-header p,
body.channel-theme-plenitude .channel-articles-section p {
  color: #d1e7dd;
}
body.channel-theme-plenitude .products-category-col h3 {
  color: #f7d779;
  border-bottom-color: rgba(212, 175, 55, 0.3);
}
body.channel-theme-plenitude .product-item-card,
body.channel-theme-plenitude .channel-article-card {
  background: rgba(23, 75, 48, 0.92);
  border-color: rgba(212, 175, 55, 0.3);
  color: #E8F5EE;
}
body.channel-theme-plenitude .product-item-badge {
  color: #f7d779;
}
body.channel-theme-plenitude .product-item-title,
body.channel-theme-plenitude .channel-article-title {
  color: #FFFFFF;
}
body.channel-theme-plenitude .product-item-desc,
body.channel-theme-plenitude .channel-article-desc {
  color: #d1e7dd;
}
body.channel-theme-plenitude .product-item-link,
body.channel-theme-plenitude .channel-article-link {
  color: #f7d779;
}
body.channel-theme-plenitude .btn-social-clean {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 175, 55, 0.4);
  color: #f7d779;
}

/* 2. ESTOY SIEMPRE CON DIOS (ESCD) — Rosa Nobre / Framboesa Suavizado */
body.channel-theme-escd {
  background: linear-gradient(175deg, #541727 0%, #732238 45%, #922c48 100%);
  color: #FDF2F4;
}
body.channel-theme-escd .dot-grid-pattern {
  background-image: radial-gradient(circle at 1px 1px, rgba(212, 175, 55, 0.28) 1px, transparent 0);
}
body.channel-theme-escd .channel-banner-card {
  background: #661e31;
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}
body.channel-theme-escd .channel-meta-title {
  color: #FFFFFF;
}
body.channel-theme-escd .channel-meta-handle {
  color: #f7d779;
}
body.channel-theme-escd .channel-meta-tagline {
  color: #fed7e2;
}
body.channel-theme-escd .channel-editorial-section {
  background: rgba(102, 30, 49, 0.92);
  backdrop-filter: blur(12px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
  color: #FDF2F4;
}
body.channel-theme-escd .channel-editorial-grid,
body.channel-theme-escd .editorial-col p {
  color: #FDF2F4 !important;
}
body.channel-theme-escd .editorial-col strong {
  color: #FFFFFF;
}
body.channel-theme-escd .channel-editorial-header h2 {
  color: #f7d779;
  border-bottom-color: rgba(212, 175, 55, 0.25);
}
body.channel-theme-escd .editorial-highlight-box {
  background: rgba(62, 18, 30, 0.8);
  border-color: rgba(212, 175, 55, 0.3);
  color: #FFFFFF;
}
body.channel-theme-escd .social-dist-card {
  background: rgba(102, 30, 49, 0.92);
  backdrop-filter: blur(12px);
  border-color: rgba(212, 175, 55, 0.3);
  color: #FDF2F4;
}
body.channel-theme-escd .social-card-title {
  color: #FFFFFF;
}
body.channel-theme-escd .social-card-details {
  color: #fed7e2;
}
body.channel-theme-escd .social-card-details strong {
  color: #FFFFFF;
}
body.channel-theme-escd .social-dist-section h2,
body.channel-theme-escd .products-dual-header h2,
body.channel-theme-escd .channel-articles-section h2 {
  color: #FFFFFF;
}
body.channel-theme-escd .products-dual-header p,
body.channel-theme-escd .channel-articles-section p {
  color: #fed7e2;
}
body.channel-theme-escd .products-category-col h3 {
  color: #f7d779;
  border-bottom-color: rgba(212, 175, 55, 0.3);
}
body.channel-theme-escd .product-item-card,
body.channel-theme-escd .channel-article-card {
  background: rgba(102, 30, 49, 0.92);
  border-color: rgba(212, 175, 55, 0.3);
  color: #FDF2F4;
}
body.channel-theme-escd .product-item-badge {
  color: #f7d779;
}
body.channel-theme-escd .product-item-title,
body.channel-theme-escd .channel-article-title {
  color: #FFFFFF;
}
body.channel-theme-escd .product-item-desc,
body.channel-theme-escd .channel-article-desc {
  color: #fed7e2;
}
body.channel-theme-escd .product-item-link,
body.channel-theme-escd .channel-article-link {
  color: #f7d779;
}
body.channel-theme-escd .btn-social-clean {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 175, 55, 0.4);
  color: #f7d779;
}

/* 3. JESUS ALÉM DOS EVANGELHOS (JAE) — Tijolo / Terracota Suavizado */
body.channel-theme-jae {
  background: linear-gradient(175deg, #6c2314 0%, #8f321e 45%, #b1422a 100%);
  color: #FDF4F2;
}
body.channel-theme-jae .dot-grid-pattern {
  background-image: radial-gradient(circle at 1px 1px, rgba(212, 175, 55, 0.28) 1px, transparent 0);
}
body.channel-theme-jae .channel-banner-card {
  background: #802c1a;
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}
body.channel-theme-jae .channel-meta-title {
  color: #FFFFFF;
}
body.channel-theme-jae .channel-meta-handle {
  color: #f7d779;
}
body.channel-theme-jae .channel-meta-tagline {
  color: #fecec6;
}
body.channel-theme-jae .channel-editorial-section {
  background: rgba(128, 44, 26, 0.92);
  backdrop-filter: blur(12px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
  color: #FDF4F2;
}
body.channel-theme-jae .channel-editorial-grid,
body.channel-theme-jae .editorial-col p {
  color: #FDF4F2 !important;
}
body.channel-theme-jae .editorial-col strong {
  color: #FFFFFF;
}
body.channel-theme-jae .channel-editorial-header h2 {
  color: #f7d779;
  border-bottom-color: rgba(212, 175, 55, 0.25);
}
body.channel-theme-jae .editorial-highlight-box {
  background: rgba(78, 26, 15, 0.8);
  border-color: rgba(212, 175, 55, 0.3);
  color: #FFFFFF;
}
body.channel-theme-jae .social-dist-card {
  background: rgba(128, 44, 26, 0.92);
  backdrop-filter: blur(12px);
  border-color: rgba(212, 175, 55, 0.3);
  color: #FDF4F2;
}
body.channel-theme-jae .social-card-title {
  color: #FFFFFF;
}
body.channel-theme-jae .social-card-details {
  color: #fecec6;
}
body.channel-theme-jae .social-card-details strong {
  color: #FFFFFF;
}
body.channel-theme-jae .social-dist-section h2,
body.channel-theme-jae .products-dual-header h2,
body.channel-theme-jae .channel-articles-section h2 {
  color: #FFFFFF;
}
body.channel-theme-jae .products-dual-header p,
body.channel-theme-jae .channel-articles-section p {
  color: #fecec6;
}
body.channel-theme-jae .products-category-col h3 {
  color: #f7d779;
  border-bottom-color: rgba(212, 175, 55, 0.3);
}
body.channel-theme-jae .product-item-card,
body.channel-theme-jae .channel-article-card {
  background: rgba(128, 44, 26, 0.92);
  border-color: rgba(212, 175, 55, 0.3);
  color: #FDF4F2;
}
body.channel-theme-jae .product-item-badge {
  color: #f7d779;
}
body.channel-theme-jae .product-item-title,
body.channel-theme-jae .channel-article-title {
  color: #FFFFFF;
}
body.channel-theme-jae .product-item-desc,
body.channel-theme-jae .channel-article-desc {
  color: #fecec6;
}
body.channel-theme-jae .product-item-link,
body.channel-theme-jae .channel-article-link {
  color: #f7d779;
}
body.channel-theme-jae .btn-social-clean {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 175, 55, 0.4);
  color: #f7d779;
}

/* 4. ONE ESSENCE (ESSÊNCIA) — Lilás & Bronze Cósmico Suavizado */
body.channel-theme-essence {
  background: linear-gradient(155deg, #3c164f 0%, #592370 45%, #834b28 100%);
  color: #FAF5FF;
}
body.channel-theme-essence .dot-grid-pattern {
  background-image: radial-gradient(circle at 1px 1px, rgba(212, 175, 55, 0.28) 1px, transparent 0);
}
body.channel-theme-essence .channel-banner-card {
  background: #4c1d63;
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}
body.channel-theme-essence .channel-meta-title {
  color: #FFFFFF;
}
body.channel-theme-essence .channel-meta-handle {
  color: #f7d779;
}
body.channel-theme-essence .channel-meta-tagline {
  color: #eedaff;
}
body.channel-theme-essence .channel-editorial-section {
  background: rgba(76, 29, 99, 0.92);
  backdrop-filter: blur(12px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
  color: #FAF5FF;
}
body.channel-theme-essence .channel-editorial-grid,
body.channel-theme-essence .editorial-col p {
  color: #FAF5FF !important;
}
body.channel-theme-essence .editorial-col strong {
  color: #FFFFFF;
}
body.channel-theme-essence .channel-editorial-header h2 {
  color: #f7d779;
  border-bottom-color: rgba(212, 175, 55, 0.25);
}
body.channel-theme-essence .editorial-highlight-box {
  background: rgba(45, 17, 59, 0.8);
  border-color: rgba(212, 175, 55, 0.3);
  color: #FFFFFF;
}
body.channel-theme-essence .social-dist-card {
  background: rgba(76, 29, 99, 0.92);
  backdrop-filter: blur(12px);
  border-color: rgba(212, 175, 55, 0.3);
  color: #FAF5FF;
}
body.channel-theme-essence .social-card-title {
  color: #FFFFFF;
}
body.channel-theme-essence .social-card-details {
  color: #eedaff;
}
body.channel-theme-essence .social-card-details strong {
  color: #FFFFFF;
}
body.channel-theme-essence .social-dist-section h2,
body.channel-theme-essence .products-dual-header h2,
body.channel-theme-essence .channel-articles-section h2 {
  color: #FFFFFF;
}
body.channel-theme-essence .products-dual-header p,
body.channel-theme-essence .channel-articles-section p {
  color: #eedaff;
}
body.channel-theme-essence .products-category-col h3 {
  color: #f7d779;
  border-bottom-color: rgba(212, 175, 55, 0.3);
}
body.channel-theme-essence .product-item-card,
body.channel-theme-essence .channel-article-card {
  background: rgba(76, 29, 99, 0.92);
  border-color: rgba(212, 175, 55, 0.3);
  color: #FAF5FF;
}
body.channel-theme-essence .product-item-badge {
  color: #f7d779;
}
body.channel-theme-essence .product-item-title,
body.channel-theme-essence .channel-article-title {
  color: #FFFFFF;
}
body.channel-theme-essence .product-item-desc,
body.channel-theme-essence .channel-article-desc {
  color: #eedaff;
}
body.channel-theme-essence .product-item-link,
body.channel-theme-essence .channel-article-link {
  color: #f7d779;
}
body.channel-theme-essence .btn-social-clean {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 175, 55, 0.4);
  color: #f7d779;
}

/* =======================================================
   5.5 REVISTA DIGITAL (HOME) & SHOWCASE DOS 4 CANAIS
   ======================================================= */

/* Fundo Mineral / Cinza Claro Suave para a Revista */
body.fdv-magazine-home {
  background-color: #F4F5F7;
  color: var(--fdv-text);
  font-family: var(--fdv-font-sans);
}

.magazine-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px 20px 70px;
  position: relative;
  z-index: 2;
}

/* Header Editorial da Revista */
.magazine-header {
  text-align: center;
  margin-bottom: 35px;
}

.magazine-badge {
  display: inline-block;
  background: #EAE6DF;
  border: 1px solid var(--fdv-border);
  color: var(--fdv-gold-dark);
  padding: 4px 16px;
  border-radius: var(--fdv-radius-full);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.magazine-title {
  font-family: var(--fdv-font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  color: var(--fdv-emerald-dark);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
}

.magazine-subtitle {
  font-size: 1.05rem;
  color: var(--fdv-text-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Artigo Destaque do Dia */
.magazine-featured-card {
  background: #FFFFFF;
  border: 1px solid var(--fdv-border);
  border-radius: var(--fdv-radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: var(--fdv-transition);
}

.magazine-featured-card:hover {
  border-color: var(--fdv-gold);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

@media (max-width: 860px) {
  .magazine-featured-card {
    grid-template-columns: 1fr;
  }
}

.magazine-featured-img-wrap {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background: #E8E5DF;
}

.magazine-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.magazine-featured-card:hover .magazine-featured-img {
  transform: scale(1.03);
}

.magazine-featured-body {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.magazine-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--fdv-gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  display: inline-block;
}

.magazine-featured-headline {
  font-family: var(--fdv-font-serif);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: var(--fdv-emerald-dark);
  line-height: 1.25;
  margin-bottom: 14px;
}

.magazine-featured-excerpt {
  font-size: 0.94rem;
  color: var(--fdv-text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.magazine-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--fdv-text-dim);
  margin-bottom: 22px;
}

/* Barra de Filtro de Categorias (Chips) */
.magazine-chips-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 30px 0 35px;
}

.magazine-chip {
  background: #FFFFFF;
  border: 1px solid var(--fdv-border);
  border-radius: var(--fdv-radius-full);
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fdv-text);
  cursor: pointer;
  transition: var(--fdv-transition);
  text-decoration: none;
  box-shadow: var(--fdv-shadow-sm);
}

.magazine-chip:hover,
.magazine-chip.active {
  background: var(--fdv-emerald-dark);
  color: #FFFFFF;
  border-color: var(--fdv-emerald-dark);
}

/* Grade de Artigos da Revista */
.magazine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 55px;
}

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

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

.magazine-card {
  background: #FFFFFF;
  border: 1px solid var(--fdv-border);
  border-radius: var(--fdv-radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--fdv-shadow-sm);
  transition: var(--fdv-transition);
}

.magazine-card:hover {
  border-color: var(--fdv-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.magazine-card-thumb-wrap {
  height: 190px;
  overflow: hidden;
  background: #E8E5DF;
}

.magazine-card-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.magazine-card:hover .magazine-card-thumb {
  transform: scale(1.04);
}

.magazine-card-content {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.magazine-card-title {
  font-family: var(--fdv-font-serif);
  font-size: 1.15rem;
  color: var(--fdv-emerald-dark);
  margin-bottom: 10px;
  line-height: 1.35;
  font-weight: 700;
}

.magazine-card-desc {
  font-size: 0.88rem;
  color: var(--fdv-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

/* Caixa de Inscrição / Newsletter */
.magazine-newsletter-card {
  background: #FFFFFF;
  border: 1px solid var(--fdv-border);
  border-radius: var(--fdv-radius-lg);
  padding: 35px 28px;
  text-align: center;
  margin-bottom: 60px;
  box-shadow: var(--fdv-shadow-card);
}

.magazine-newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 18px auto 0;
  flex-wrap: wrap;
}

.magazine-newsletter-input {
  flex-grow: 1;
  padding: 12px 16px;
  border: 1px solid var(--fdv-border);
  border-radius: var(--fdv-radius-sm);
  font-family: var(--fdv-font-sans);
  font-size: 0.92rem;
  outline: none;
}

.magazine-newsletter-input:focus {
  border-color: var(--fdv-gold);
}

/* =======================================================
   SEÇÃO DOS 4 CANAIS AO FINAL DA REVISTA (QUADRADOS COLORIDOS)
   ======================================================= */
.channels-showcase-section {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid var(--fdv-border);
}

.channels-showcase-header {
  text-align: center;
  margin-bottom: 35px;
}

.channels-showcase-header h2 {
  font-family: var(--fdv-font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--fdv-emerald-dark);
  font-weight: 700;
  margin-bottom: 8px;
}

.channels-showcase-header p {
  font-size: 0.96rem;
  color: var(--fdv-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.channels-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

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

@media (max-width: 640px) {
  .channels-showcase-grid {
    grid-template-columns: 1fr;
  }
}

.channel-box-card {
  border-radius: var(--fdv-radius-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
  transition: var(--fdv-transition);
  position: relative;
  overflow: hidden;
}

.channel-box-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

/* Cores dos 4 Quadrados */
.channel-box-plenitude {
  background: linear-gradient(160deg, #13422a 0%, #1c5839 100%);
  color: #E8F5EE;
}

.channel-box-escd {
  background: linear-gradient(160deg, #541727 0%, #732238 100%);
  color: #FDF2F4;
}

.channel-box-jae {
  background: linear-gradient(160deg, #6c2314 0%, #8f321e 100%);
  color: #FDF4F2;
}

.channel-box-essence {
  background: linear-gradient(160deg, #3c164f 0%, #592370 100%);
  color: #FAF5FF;
}

.channel-box-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.channel-box-avatar {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  border: 1.5px solid var(--fdv-gold);
  object-fit: cover;
  background: #FFF;
  flex-shrink: 0;
}

.channel-box-title {
  font-family: var(--fdv-font-serif);
  font-size: 1.12rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}

.channel-box-handle {
  font-size: 0.74rem;
  color: #f7d779;
  margin-top: 2px;
}

.channel-box-desc {
  font-size: 0.84rem;
  line-height: 1.55;
  opacity: 0.92;
  margin-bottom: 18px;
  flex-grow: 1;
}

.channel-box-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.channel-action-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: var(--fdv-radius-sm);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #FFFFFF;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--fdv-transition);
}

.channel-action-btn:hover {
  background: rgba(212, 175, 55, 0.25);
  border-color: #f7d779;
  color: #f7d779;
  transform: translateX(2px);
}

.channel-action-btn-primary {
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
  color: #111518 !important;
  font-weight: 700;
  border-color: #f7d779;
  justify-content: center;
  text-align: center;
  margin-top: 4px;
}

.channel-action-btn-primary:hover {
  background: linear-gradient(135deg, #f7d779 0%, #d4af37 100%);
  color: #111518 !important;
  transform: translateY(-1px);
}

/* Seção de Artigos Dentro das Páginas dos Canais */
.channel-articles-section {
  margin-top: 30px;
}

.channel-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 18px;
}

.channel-article-card {
  border-radius: var(--fdv-radius-md);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: var(--fdv-transition);
}

.channel-article-card:hover {
  transform: translateY(-3px);
  border-color: var(--fdv-gold);
}

/* =======================================================
   6. REGRAS DE IMPRESSÃO / PDF (EVITA EXPLOSÃO DE SVGS E LOGOS)
   ======================================================= */
@media print {
  body {
    background: #FFF !important;
    color: #000 !important;
  }
  .fdv-global-nav, .fdv-ad-slot, .social-card-btn, .product-item-link {
    display: none !important;
  }
  .channel-banner-media {
    height: 120px !important;
  }
  .channel-logo-square {
    width: 60px !important;
    height: 60px !important;
  }
  img, svg {
    max-width: 100% !important;
    max-height: 200px !important;
  }
  .channel-banner-card, .channel-editorial-section, .social-dist-card, .product-item-card {
    page-break-inside: avoid !important;
    box-shadow: none !important;
    border: 1px solid #CCC !important;
  }
}
