/* ============================================================
   KNOWLEDGE HUB — PAGE SPECIFIC STYLES
   ============================================================ */

body.page-knowledge-hub {
  background-color: #000000;
  color: #FFFFFF;
}

body.page-knowledge-hub .header.is-scrolled {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(254, 97, 0, 0.2);
  padding: var(--space-3) 0;
}

/* ============================================================
   SECTION 1: THE HERO (A Matriz de Dados)
   ============================================================ */
.knowledge-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: #000000;
  padding-bottom: var(--space-8);
  padding-top: 120px;
}

.knowledge-hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.72; /* Higher opacity so the meat is brighter/more vibrant */
  z-index: 0;
  pointer-events: none;
}

.knowledge-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Spotlight mask directly over the Wagyu beef on the right (66% X, 50% Y) */
  background: 
    radial-gradient(circle at 66% 50%, transparent 15%, rgba(1, 2, 7, 0.65) 45%, rgba(1, 2, 7, 0.96) 85%),
    linear-gradient(90deg, rgba(1, 2, 7, 0.98) 0%, rgba(1, 2, 7, 0.75) 35%, transparent 75%);
  pointer-events: none;
}

/* Animated digital data flow lines */
.hero-data-flow-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(254, 97, 0, 0.3) 50%, transparent 100%);
  z-index: 1;
  pointer-events: none;
  animation: slide-data-flow 10s infinite linear;
}

.hero-data-flow-line:nth-child(2) {
  animation-duration: 14s;
  animation-delay: -3s;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 240, 255, 0.22) 50%, transparent 100%);
}

.hero-data-flow-line:nth-child(3) {
  animation-duration: 8s;
  animation-delay: -6s;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
}

@keyframes slide-data-flow {
  0% {
    top: -10%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    top: 110%;
    opacity: 0;
  }
}

.knowledge-hero .container {
  position: relative;
  z-index: 2;
}

.hero-matrix-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 75vh;
  min-height: 75dvh;
}

.hero-matrix-title {
  font-family: var(--font-display);
  font-stretch: condensed;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(4.2rem, 11vw, 9rem);
  line-height: 0.82;
  color: #FFFFFF;
  letter-spacing: -0.04em;
  display: flex;
  flex-direction: column;
}

.scramble-line {
  display: block;
}

.hero-bottom-row {
  max-width: 720px;
  margin-top: var(--space-7);
}

.hero-bottom-row h2 {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-4);
}

.scramble-orange {
  color: var(--detalhes);
}

.scroll-indicator-white {
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-5);
  cursor: pointer;
  transition: color 0.3s ease;
}

.scroll-indicator-white:hover {
  color: var(--detalhes);
}

.scroll-indicator-white .indicator-line {
  display: inline-block;
  width: 45px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.scroll-indicator-white:hover .indicator-line {
  background-color: var(--detalhes);
}

.scroll-indicator-white .indicator-line::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 50%;
  background-color: var(--detalhes);
  animation: line-slide 1.5s infinite ease-in-out;
}

/* ============================================================
   SECTION 2: THE MACRO VISION (Beef Report 2026)
   ============================================================ */
.macro-vision {
  background: #FFFFFF;
  color: #000000;
  padding: var(--space-9) 0;
  position: relative;
}

.macro-visual-row {
  width: 100%;
  margin-bottom: var(--space-8);
  display: flex;
  justify-content: center;
}

.book-visualizer-container-stacked {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1500px;
  padding: var(--space-5);
  width: 100%;
}

.book-cover-3d {
  width: 100%;
  max-width: 680px; /* Big, impact cover */
  aspect-ratio: 1.414/1;
  background: var(--boi-verde);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.28), 
              inset 3px 3px 15px rgba(255, 255, 255, 0.2);
  border-left: 10px solid #082855; /* Spine in matching dark blue */
  transform-style: preserve-3d;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.book-cover-3d::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 3%, rgba(0,0,0,0.1) 4%, rgba(255,255,255,0.08) 8%, rgba(255,255,255,0) 50%, rgba(0,0,0,0.15) 100%);
  pointer-events: none;
}

.macro-details-grid-stacked {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  padding-top: var(--space-7);
}

@media (min-width: 992px) {
  .macro-details-grid-stacked {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.macro-col-main {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.macro-kicker {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--boi-verde);
  text-transform: uppercase;
}

.macro-title {
  font-family: var(--font-display);
  font-stretch: condensed;
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: var(--space-3);
}

.macro-body {
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.6;
  color: #333333;
  margin-bottom: var(--space-5);
}

.macro-col-index {
  display: flex;
  flex-direction: column;
}

.data-index-list-stacked {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.data-index-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: flex-start;
}

.data-index-num {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--detalhes);
}

.data-index-text strong {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.1rem;
  font-weight: 700;
  display: block;
  color: #000000;
}

.data-index-text span {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #666666;
}

.download-cta-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

/* Microinteração de preenchimento no botão */
.btn-fill-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--detalhes);
  border: 2px solid var(--detalhes);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
  padding: var(--space-4) var(--space-6);
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s var(--motion-hover);
  align-self: flex-start;
}

.btn-fill-orange::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--detalhes);
  z-index: -1;
  transition: width 0.4s var(--motion-hover);
}

.btn-fill-orange:hover {
  color: #000000;
}

.btn-fill-orange:hover::before {
  width: 100%;
}

.btn-microcopy {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #777777;
}

/* ============================================================
   MACRO VISION — Secondary Publications (sub-row inside section 2)
   Solid-color editorial cards with no imagery
   ============================================================ */
.secondary-pubs {
  margin-top: var(--space-8);
  padding-top: var(--space-7);
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.secondary-pubs-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.secondary-pubs-rule {
  display: inline-block;
  width: 48px;
  height: 2px;
  background: var(--boi-verde);
}

.secondary-pubs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 992px) {
  .secondary-pubs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }
}

.secondary-pub-card {
  position: relative;
  background: var(--boi-verde);
  color: #FFFFFF;
  padding: var(--space-6) var(--space-5);
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  transition: transform 0.45s var(--motion-hover), box-shadow 0.45s var(--motion-hover);
}

@media (min-width: 640px) {
  .secondary-pub-card {
    padding: var(--space-7) var(--space-6);
    min-height: 340px;
  }
}

.secondary-pub-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.22);
}

/* Accent stripe on top — separates the cards and is the primary visual differentiator */
.secondary-pub-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--detalhes);
  transition: width 0.45s var(--motion-hover);
}

.secondary-pub-card:hover::before {
  width: 100%;
}

/* Solid color variants */
.secondary-pub-card--green {
  background: var(--boi-verde);
}

.secondary-pub-card--wine {
  background: var(--ponto-carne);
}

.secondary-pub-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 520px;
  width: 100%;
}

.secondary-pub-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--detalhes);
  text-transform: uppercase;
}

.secondary-pub-title {
  font-family: var(--font-display);
  font-stretch: condensed;
  font-weight: 800;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  text-transform: uppercase;
  line-height: 1.03;
  color: #FFFFFF;
  letter-spacing: -0.015em;
}

.secondary-pub-text {
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(244, 232, 204, 0.9);
}

.secondary-pub-cta {
  display: flex;
  margin-top: var(--space-3);
}

/* White CTA button — stands out on either colored card */
.btn-fill-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  color: #000000;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  padding: var(--space-3) var(--space-5);
  border: 2px solid #FFFFFF;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  align-self: flex-start;
  position: relative;
  overflow: hidden;
  transition: color 0.35s var(--motion-hover), background 0.35s var(--motion-hover);
  z-index: 1;
}

.btn-fill-white:hover {
  background: var(--detalhes);
  border-color: var(--detalhes);
  color: #000000;
}

/* ============================================================
   SECTION 3: LIVE MARKET INTELLIGENCE (O Exportômetro)
   ============================================================ */
.live-intelligence {
  background: var(--detalhes); /* Pure Laranja Background */
  color: var(--ponto-carne); /* Wine Text base */
  padding: var(--space-8) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--ponto-carne);
  border-bottom: 1px solid var(--ponto-carne);
}

.brutalist-fluid {
  padding-left: 0;
  padding-right: 0;
}

.brutalist-numbers-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid var(--ponto-carne);
  margin-bottom: var(--space-7);
}

@media (min-width: 992px) {
  .brutalist-numbers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.brutalist-number-card {
  padding: var(--space-6) var(--space-5);
  border-bottom: 1px solid var(--ponto-carne);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 992px) {
  .brutalist-number-card {
    border-bottom: none;
  }
  .brutalist-number-card:not(:last-child) {
    border-right: 1px solid var(--ponto-carne);
  }
}

.brutalist-card-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ponto-carne);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-2);
  display: block;
}

.brutalist-card-value {
  font-family: var(--font-display);
  font-stretch: condensed;
  font-weight: 900;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  line-height: 0.8;
  letter-spacing: -0.05em;
  margin-bottom: var(--space-2);
  text-transform: uppercase;
  word-break: break-all;
}

.font-white {
  color: #FFFFFF;
}

.font-bordo {
  color: var(--ponto-carne);
}

.brutalist-card-sub {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(77, 5, 0, 0.7);
}

.brutalist-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: flex-start;
}

@media (min-width: 768px) {
  .brutalist-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
}

.brutalist-info-col h2 {
  font-family: var(--font-display);
  font-stretch: condensed;
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 0.9;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-top: var(--space-2);
}

.brutalist-kicker {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ponto-carne);
  letter-spacing: 0.15em;
}

.brutalist-text-col p {
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--ponto-carne);
  margin-bottom: var(--space-4);
  font-weight: 500;
}

.brutalist-api-link {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: #FFFFFF;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 2px solid #FFFFFF;
  padding-bottom: 4px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.brutalist-api-link:hover {
  color: var(--ponto-carne);
  border-color: var(--ponto-carne);
}


/* ============================================================
   SECTION 4: ENVIRONMENTAL & SANITARY DIRECTIVES
   ============================================================ */
.environmental-directives {
  background: var(--boi-verde); /* Fallback background color */
  color: var(--text-on-dark);
  padding: var(--space-9) 0;
  position: relative;
  overflow: hidden;
}

.env-parallax-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  opacity: 0.55; /* Higher opacity to show image details */
  z-index: 0;
  pointer-events: none;
}

.env-parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21, 81, 37, 0.75) 0%, rgba(10, 50, 21, 0.85) 100%); /* Semi-transparent blend */
  z-index: 1;
  pointer-events: none;
}

.environmental-directives .container {
  position: relative;
  z-index: 2;
}

.env-header {
  max-width: 760px;
  margin-bottom: var(--space-8);
}

.env-header h2 {
  font-family: var(--font-display);
  font-stretch: condensed;
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: var(--space-4);
}

.env-header p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-on-dark);
  opacity: 0.9;
}

.directives-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 768px) {
  .directives-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.compliance-card {
  background: rgba(10, 50, 21, 0.5); /* Boi Verde Deep transparent */
  border: 1px solid rgba(244, 232, 204, 0.15);
  padding: var(--space-6) var(--space-5) var(--space-5) var(--space-5);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  overflow: hidden;
  transition: background-color 0.4s ease, border-color 0.4s ease;
  z-index: 1;
}

.compliance-card:hover {
  background: rgba(10, 50, 21, 0.95);
  border-color: var(--detalhes);
}

.compliance-card-seal-bg {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 140px;
  height: 140px;
  opacity: 0.04;
  color: #FFF;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.compliance-card:hover .compliance-card-seal-bg {
  opacity: 0.1;
  transform: scale(1.1) rotate(5deg);
}

.compliance-card-seal-bg svg {
  width: 100%;
  height: 100%;
}

.compliance-card-content {
  position: relative;
  z-index: 2;
}

.compliance-card-title {
  font-family: var(--font-display);
  font-stretch: condensed;
  font-weight: 800;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: var(--space-3);
  line-height: 1.1;
}

.compliance-card-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(244, 232, 204, 0.8);
  margin-bottom: var(--space-4);
}

.compliance-card-link {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--detalhes);
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 2;
  opacity: 0.65;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.compliance-card:hover .compliance-card-link {
  opacity: 1;
  transform: translateX(4px);
}

/* ============================================================
   SECTION 5: CUT CATALOG (Imported structure)
   ============================================================ */
.cut-catalog {
  background: var(--ponto-carne);
  color: var(--text-on-dark);
  padding: var(--space-9) 0;
  position: relative;
  overflow: hidden;
}

.cut-catalog::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(254, 97, 0, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.catalog-header {
  max-width: 720px;
  margin-bottom: var(--space-8);
}

.catalog-header h2 {
  font-family: var(--font-display);
  font-stretch: condensed;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-4);
  text-transform: uppercase;
}

.catalog-header p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(244, 232, 204, 0.85);
}

.catalog-interactive-area {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: center;
}

@media (min-width: 992px) {
  .catalog-interactive-area {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.cuts-list {
  display: flex;
  flex-direction: column;
}

.cut-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-5) 0;
  border-bottom: 1px solid rgba(244, 232, 204, 0.15);
  cursor: pointer;
  transition: padding-left 0.3s ease, border-color 0.3s ease;
}

.cut-item:hover {
  padding-left: var(--space-3);
  border-bottom-color: var(--detalhes);
}

.cut-item-left {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.cut-number {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--detalhes);
}

.cut-name {
  font-family: var(--font-display);
  font-stretch: condensed;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 700;
  text-transform: uppercase;
  transition: color 0.3s ease;
  color: #FFFFFF;
}

.cut-item:hover .cut-name {
  color: var(--detalhes);
}

.cut-spec {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: rgba(244, 232, 204, 0.5);
  transition: color 0.3s ease;
}

.cut-item:hover .cut-spec {
  color: #FFF;
}

.cut-visualizer {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(244, 232, 204, 0.1);
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.visualizer-stage {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visualizer-render {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  transition: transform var(--motion-reveal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.visualizer-label {
  position: absolute;
  bottom: var(--space-4);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--detalhes);
  letter-spacing: 0.1em;
}

.cut-action-buttons {
  margin-top: var(--space-8);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  align-items: center;
}

.btn-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--detalhes);
  color: #000;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
  padding: var(--space-4) var(--space-6);
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.btn-orange:hover {
  background-color: var(--cta-dark);
  transform: translateY(-2px);
}

.link-secondary-underline {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--text-on-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.3s ease;
}

.link-secondary-underline:hover {
  color: var(--detalhes);
}

/* ============================================================
   FINAL CTA: GLOBAL NETWORK (wine + dot-grid vibe)
   ============================================================ */
.cta-network {
  position: relative;
  min-height: 60vh;
  min-height: 60dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: #000000;
  padding: var(--space-10) 0;
  isolation: isolate;
}

.cta-network-grid {
  display: none;
}

.cta-network-dots {
  z-index: 1 !important;
}

.cta-network-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 75% 50%, transparent 0%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.45) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.12) 50%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
}

/* ============ WORLD MAP (reused from contact-hero, no drag) ============ */
.cta-network-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}

.cta-network-map .dot-map-container {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.cta-network-map #worldMapSVG {
  position: absolute;
  width: 250%;
  height: 250%;
  max-width: none;
  left: 25%;
  top: 50%;
  transform: translate(-36%, -71%);
  background: transparent;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 992px) {
  .cta-network-map #worldMapSVG {
    left: 50%;
    opacity: 0.18;
  }
}

.cta-network-map #worldMapSVG path:not(.arc-line) {
  fill: rgba(244, 232, 204, 0.06) !important;
  stroke: rgba(244, 232, 204, 0.14) !important;
  stroke-width: 0.65 !important;
  opacity: 1 !important;
  pointer-events: none;
}

.cta-network-map #worldMapSVG #br,
.cta-network-map #worldMapSVG g#br path {
  fill: rgba(244, 232, 204, 0.16) !important;
  stroke: rgba(254, 97, 0, 0.5) !important;
  stroke-width: 0.9 !important;
}

.cta-network-map .illustrative-arcs {
  display: block !important;
}

.cta-network-map .illustrative-arcs .arc-line {
  fill: none !important;
  stroke: var(--detalhes) !important;
  stroke-width: 1.2 !important;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  opacity: 0.65;
  animation: cta-network-drawArc 4s cubic-bezier(0.4, 0, 0.2, 1) forwards infinite;
}

.cta-network-map .illustrative-arcs .arc-line:nth-child(1) { animation-delay: 0.0s; }
.cta-network-map .illustrative-arcs .arc-line:nth-child(2) { animation-delay: 0.3s; }
.cta-network-map .illustrative-arcs .arc-line:nth-child(3) { animation-delay: 0.6s; }
.cta-network-map .illustrative-arcs .arc-line:nth-child(4) { animation-delay: 0.9s; }
.cta-network-map .illustrative-arcs .arc-line:nth-child(5) { animation-delay: 1.2s; }
.cta-network-map .illustrative-arcs .arc-line:nth-child(6) { animation-delay: 1.5s; }
.cta-network-map .illustrative-arcs .arc-line:nth-child(7) { animation-delay: 1.8s; }
.cta-network-map .illustrative-arcs .arc-line:nth-child(8) { animation-delay: 2.1s; }

.cta-network-map .illustrative-arcs .origin-pulse {
  fill: none;
  stroke: var(--detalhes);
  stroke-width: 1.5;
  transform-origin: 286px 580px;
  animation: cta-network-originPulse 2.5s ease-out infinite;
}

.cta-network-map .illustrative-arcs .origin-dot {
  fill: var(--detalhes);
}

.cta-network-map .illustrative-arcs .dest-dot {
  fill: var(--detalhes);
  opacity: 0;
  animation: cta-network-fadeInDest 4s ease-out infinite;
}

.cta-network-map .illustrative-arcs .arc-line:nth-child(1) ~ .dest-dot:nth-of-type(1) { animation-delay: 0.8s; }
.cta-network-map .illustrative-arcs .arc-line:nth-child(2) ~ .dest-dot:nth-of-type(2) { animation-delay: 1.1s; }
.cta-network-map .illustrative-arcs .arc-line:nth-child(3) ~ .dest-dot:nth-of-type(3) { animation-delay: 1.4s; }
.cta-network-map .illustrative-arcs .arc-line:nth-child(4) ~ .dest-dot:nth-of-type(4) { animation-delay: 1.7s; }
.cta-network-map .illustrative-arcs .arc-line:nth-child(5) ~ .dest-dot:nth-of-type(5) { animation-delay: 2.0s; }
.cta-network-map .illustrative-arcs .arc-line:nth-child(6) ~ .dest-dot:nth-of-type(6) { animation-delay: 2.3s; }
.cta-network-map .illustrative-arcs .arc-line:nth-child(7) ~ .dest-dot:nth-of-type(7) { animation-delay: 2.6s; }
.cta-network-map .illustrative-arcs .arc-line:nth-child(8) ~ .dest-dot:nth-of-type(8) { animation-delay: 2.9s; }

@keyframes cta-network-drawArc {
  0%   { stroke-dashoffset: 1000; opacity: 0; }
  10%  { opacity: 0.7; }
  70%, 100% { stroke-dashoffset: 0; opacity: 0.15; }
}

@keyframes cta-network-originPulse {
  0%   { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(2.6); opacity: 0; }
}

@keyframes cta-network-fadeInDest {
  0%, 100% { opacity: 0; }
  20%, 60% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .cta-network-map .illustrative-arcs .arc-line,
  .cta-network-map .illustrative-arcs .origin-pulse,
  .cta-network-map .illustrative-arcs .dest-dot {
    animation: none;
  }
  .cta-network-map .illustrative-arcs .arc-line { stroke-dashoffset: 0; opacity: 0.2; }
  .cta-network-map .illustrative-arcs .dest-dot { opacity: 1; }
}

.cta-network .container {
  position: relative;
  z-index: 3;
  max-width: 920px;
}

.cta-network-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--detalhes);
  display: inline-block;
  margin-bottom: var(--space-5);
}

.cta-network-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: var(--space-6);
}

.cta-network-body {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.65;
  color: var(--cream);
  max-width: 65ch;
  margin-bottom: var(--space-7);
  font-weight: 400;
  opacity: 0.95;
}

.cta-network-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-4);
  text-decoration: none;
}

.cta-network-arrow {
  font-family: var(--font-mono);
  font-size: 1.1em;
  transition: transform var(--motion-hover);
  display: inline-block;
}

.cta-network-btn:hover .cta-network-arrow {
  transform: translateX(6px);
}

@media (prefers-reduced-motion: reduce) {
  .cta-network-btn:hover .cta-network-arrow { transform: none; }
}

@media (max-width: 768px) {
  .cta-network {
    min-height: auto;
    padding: var(--space-9) 0;
  }
  .cta-network-title {
    font-size: clamp(34px, 9vw, 56px);
  }
}
