/* =========================================================
   3A DESIGN — Premium Design System v3.0
   Typography: Montserrat / Inter (Clean, Thin, Architectural like Gotham)
   Aesthetic: Architectural Tech & Minimal Luxury
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600;700&display=swap');

/* === DESIGN TOKENS === */
:root {
  /* Backgrounds */
  --bg-primary: #FAFAF8;
  --bg-secondary: #F4F2EE;
  --bg-dark: #0A0A09;
  --bg-charcoal: #141412;
  --bg-card-dark: #181816;

  /* Text */
  --text-dark: #111110;
  --text-muted: #777773;
  --text-light: #FAF8F5;

  /* Brand */
  --gold: #C5A059;
  --gold-light: #DFCDA4;
  --gold-pale: #F3EACF;

  /* Borders */
  --border-color: #111110;
  --border-light: rgba(17, 17, 16, 0.08);
  --border-dark: rgba(255, 255, 255, 0.08);

  /* Typography — Comfortaa everywhere */
  --font-display: 'Comfortaa', sans-serif;
  --font-body: 'Comfortaa', sans-serif;
  --font-main: 'Comfortaa', sans-serif;

  /* Legacy Aliases */
  --dark: #0A0A09;
  --charcoal: #141412;
  --cream: #FAFAF8;
  --cream-dark: #F4F2EE;
  --mid: #777773;

  /* Transitions */
  --transition: 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.22s ease;
  --max-width: 1320px;
  --section-pad: 100px;
}

/* === RESET & GLOBAL TYPOGRAPHY (POVELYON EVERYWHERE) === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Comfortaa', sans-serif;
}

/* === GLOBAL BACKGROUND TEXTURE === */
section:not(.hero):not(.contact-hero):not(.podcast-hero-tech):not(.edu-hero-light),
footer {
  position: relative;
}

section:not(.hero):not(.contact-hero):not(.podcast-hero-tech):not(.edu-hero-light)::before,
footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/texture.jpg');
  background-repeat: repeat;
  background-size: 320px;
  opacity: 0.10;
  /* Opacidade ajustada para 10% conforme solicitado */
  pointer-events: none;
  z-index: 0;
}

section:not(.hero):not(.contact-hero):not(.podcast-hero-tech):not(.edu-hero-light)>*,
footer>* {
  position: relative;
  z-index: 1;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: var(--bg-primary);
  font-family: 'Comfortaa', sans-serif;
}

body {
  background: var(--bg-primary);
  color: var(--text-dark);
  font-family: 'Comfortaa', sans-serif !important;
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.65;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
button,
input,
textarea,
select,
span,
label,
div {
  font-family: 'Comfortaa', sans-serif !important;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* =========================================================
   LOADER — Minimalist Architectural Triangle
   ========================================================= */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-triangle {
  width: 44px;
  height: 40px;
}

.loader-triangle path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.2;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: drawTriangle 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

@keyframes drawTriangle {
  to {
    stroke-dashoffset: 0;
  }
}

.loader-logo {
  font-family: var(--font-main);
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 200;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 0.7s ease 0.8s forwards;
}

.loader-bar {
  width: 90px;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.loader-bar::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: loadBar 1.4s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

@keyframes loadBar {
  to {
    left: 100%;
  }
}

/* =========================================================
   NAVIGATION — Thin Line Aesthetic
   ========================================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250, 250, 248, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: padding var(--transition), background var(--transition), backdrop-filter var(--transition);
}

.nav.scrolled {
  padding: 16px 60px;
  background: rgba(250, 250, 248, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
}

.nav-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1.5px;
  width: 0%;
  background: var(--gold);
  transition: width 0.05s linear;
}

.nav-logo {
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color var(--transition-fast);
}

.nav.scrolled .nav-logo {
  color: var(--text-dark);
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(250, 250, 248, 0.75);
  position: relative;
  transition: color var(--transition-fast);
}

.nav.scrolled .nav-links a {
  color: var(--text-muted);
}

.nav-links a:hover,
.nav-links a.nav-active {
  color: var(--text-light);
}

.nav.scrolled .nav-links a:hover,
.nav.scrolled .nav-links a.nav-active {
  color: var(--text-dark);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition-fast), left var(--transition-fast);
}

.nav-links a:hover::after,
.nav-links a.nav-active::after {
  width: 100%;
  left: 0;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text-light);
  transition: all var(--transition-fast);
}

.nav.scrolled .nav-toggle span {
  background: var(--text-dark);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Menu */
.nav-mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100vh;
  background: var(--bg-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 50px;
  gap: 20px;
  transform: translateX(100%);
  transition: transform 0.55s cubic-bezier(0.76, 0, 0.24, 1);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-mobile.open {
  transform: translateX(0);
}

.nav-mobile a {
  font-family: var(--font-main);
  font-size: 1.3rem;
  font-weight: 200;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 248, 245, 0.6);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-mobile a::before {
  content: attr(data-num);
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--gold);
}

.nav-mobile a:hover {
  color: var(--text-light);
  padding-left: 8px;
}

/* === SECTION LABELS === */
.section-label {
  font-family: var(--font-main);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.section-label::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
}

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 36px;
  background: transparent;
  color: var(--text-light);
  font-family: var(--font-main);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border: 1px solid rgba(250, 248, 245, 0.3);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: -1;
}

.btn-primary:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-primary:hover {
  color: var(--bg-dark);
  border-color: var(--gold);
}

.btn-primary--dark {
  color: var(--text-dark);
  border-color: var(--text-dark);
}

.btn-primary--dark::before {
  background: var(--text-dark);
}

.btn-primary--dark:hover {
  color: var(--bg-primary);
}

.btn-primary svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  transition: transform var(--transition);
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-ghost {
  font-family: var(--font-main);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(250, 248, 245, 0.75);
  border-bottom: 1px solid rgba(250, 248, 245, 0.25);
  padding-bottom: 3px;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.btn-ghost:hover {
  color: var(--text-light);
  border-color: var(--gold);
}

.btn-ghost--dark {
  color: var(--text-muted);
  border-bottom-color: var(--border-light);
}

.btn-ghost--dark:hover {
  color: var(--text-dark);
  border-color: var(--gold);
}

/* =========================================================
   HERO — Clean Centered Logo with Fullscreen Background Slider
   ========================================================= */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background Video & Image Slider */
.hero-video-bg,
.hero-slider-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slide-item {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.8s ease-in-out, transform 8s ease;
  transform: scale(1.05);
}

.hero-slide-item.active {
  opacity: 1;
  transform: scale(1.0);
}

.hero-slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35% !important;
}

/* Dark Overlay */
.hero-slider-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center,
      rgba(10, 10, 9, 0.55) 0%,
      rgba(10, 10, 9, 0.85) 100%);
  z-index: 1;
}

/* Centered Brand Logo Content */
.hero-centered-logo-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.hero-brand-symbol {
  font-family: 'Outfit', 'Quicksand', sans-serif !important;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.hero-brand-main-logo {
  font-family: 'Outfit', 'Quicksand', sans-serif !important;
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 200;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-light);
  line-height: 1.0;
}

.hero-line {
  display: block;
  overflow: hidden;
}

.hero-line-inner {
  display: block;
  transform: translateY(110%);
  opacity: 0;
  animation: lineReveal 0.9s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.hero-line:nth-child(1) .hero-line-inner {
  animation-delay: 1.3s;
}

.hero-line:nth-child(2) .hero-line-inner {
  animation-delay: 1.5s;
}

.hero-line:nth-child(3) .hero-line-inner {
  animation-delay: 1.7s;
}

.hero-line--accent .hero-line-inner {
  font-weight: 300;
  color: var(--gold);
}

@keyframes lineReveal {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero-tagline {
  font-size: 0.9rem;
  font-weight: 200;
  color: rgba(250, 248, 245, 0.65);
  max-width: 460px;
  line-height: 1.85;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.9s ease 1.95s forwards;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease 2.15s forwards;
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(10, 10, 9, 0.7);
  backdrop-filter: blur(12px);
  opacity: 0;
  animation: fadeIn 0.8s ease 2.4s forwards;
}

.hero-stat {
  flex: 1;
  padding: 24px 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-number {
  font-family: var(--font-main);
  font-size: 2.2rem;
  font-weight: 200;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 248, 245, 0.45);
  max-width: 90px;
  line-height: 1.5;
}

.hero-scroll {
  position: absolute;
  bottom: 90px;
  right: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 3;
  opacity: 0;
  animation: fadeIn 0.8s ease 2.7s forwards;
}

.hero-scroll span {
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(250, 248, 245, 0.4);
  writing-mode: vertical-lr;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  opacity: 0.5;
}

/* =========================================================
   QUEM SOMOS — 50/50 Split Editorial (Fiel à Referência)
   ========================================================= */
.about-split-reference {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  background: #FFFFFF;
  /* Fundo branco chique */
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}

.about-split-left {
  position: relative;
  background: transparent;
  /* Permite ver a textura branca da seção pai por baixo do degradê */
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.about-split-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-split-left:hover img {
  transform: scale(1.03);
}

.about-split-right {
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background: transparent;
}

/* Vertical dividing line between 50/50 split */
.about-split-right::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #C5A059;
  /* Linha fina vertical */
  display: none;
  /* Removida para permitir a mistura suave da imagem com o fundo */
}

.about-ref-label {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #8A6C3E;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.about-ref-title {
  font-size: clamp(2.2rem, 3.8vw, 3.8rem);
  font-weight: 300;
  color: #2B2621;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.about-ref-title em {
  font-style: italic;
  font-family: 'Comfortaa', sans-serif !important;
  color: #8A6C3E;
  font-weight: 300;
}

.about-ref-title span.bracket-text {
  color: #8A6C3E;
  font-weight: 400;
}

.about-ref-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: #5C5449;
  line-height: 1.8;
  margin-bottom: 28px;
}

.about-ref-desc strong {
  font-weight: 500;
  color: #2B2621;
}

.about-ref-quote {
  font-size: 0.9rem;
  font-weight: 300;
  color: #4A433A;
  line-height: 1.7;
  margin-bottom: 36px;
}

.about-ref-quote em {
  font-style: normal;
  color: #8A6C3E;
  font-weight: 400;
}

.btn-about-ref {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  background: #8A6C3E;
  color: #FAF8F5;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all var(--transition-fast);
  width: fit-content;
}

.btn-about-ref:hover {
  background: #2B2621;
  transform: translateY(-2px);
}

.btn-about-ref svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* =========================================================
   ABOUT
   ========================================================= */
.about-section {
  padding: var(--section-pad) 60px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 46% 54%;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.about-image-border {
  position: absolute;
  top: 20px;
  left: -20px;
  right: 20px;
  bottom: -20px;
  border: 1px solid var(--gold);
  opacity: 0.25;
  z-index: -1;
  pointer-events: none;
}

.about-badge {
  display: inline-block;
  padding: 4px 0;
  border-bottom: 1px solid var(--gold);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.about-title {
  font-family: var(--font-main);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 200;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 28px;
}

.about-title em {
  font-style: normal;
  font-weight: 400;
  color: var(--gold);
}

.about-quote {
  padding-left: 20px;
  border-left: 1.5px solid var(--gold);
  margin-bottom: 32px;
}

.about-text {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.85;
}

.about-credentials {
  display: flex;
  gap: 36px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border-light);
}

.credential-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.credential-number {
  font-size: 1.8rem;
  font-weight: 200;
  color: var(--gold);
  line-height: 1;
}

.credential-label {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* =========================================================
   SERVICES
   ========================================================= */
.services-section {
  background: var(--bg-secondary);
  padding: var(--section-pad) 0;
}

.services-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
}

.services-header {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 40px;
  align-items: end;
  margin-bottom: 60px;
}

.services-title {
  font-family: var(--font-main);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 200;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.15;
}

.services-subtitle {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.service-card-header {
  padding: 28px 24px;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 2px solid transparent;
  transition: border-color var(--transition-fast);
}

.service-card:hover .service-card-header {
  border-left-color: var(--gold);
}

.service-card-title {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-dark);
  line-height: 1.35;
}

.service-card-subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 8px;
  font-weight: 300;
}

.service-card-image-wrap {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.service-card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover .service-card-image-wrap img {
  transform: scale(1.05);
}

.service-card-footer {
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-light);
}

.service-card-number {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.service-card-link {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dark);
  transition: color var(--transition-fast);
}

.service-card:hover .service-card-link {
  color: var(--gold);
}

/* =========================================================
   PROJECTS — Bento Grid Architecture Layout
   ========================================================= */
#projetos {
  background-color: #2B2A28;
  /* Cinza Escuro Premium */
  color: #FAF8F5;
  /* Texto claro */
  width: 100%;
  overflow: hidden;
}

#projetos .projects-title {
  color: #FAF8F5;
}

#projetos .projects-title em {
  color: var(--gold-light) !important;
}

#projetos .projects-meta {
  color: rgba(250, 248, 245, 0.65);
}

#projetos .section-label {
  color: #FAF8F5;
}

#projetos .section-label::after {
  background: var(--gold);
  /* Linha dourada para o tema escuro */
}

#projetos .btn-primary--dark {
  color: #FAF8F5;
  border-color: #FAF8F5;
}

#projetos .btn-primary--dark::before {
  background: #FAF8F5;
}

#projetos .btn-primary--dark:hover {
  color: #2B2A28;
}

.projects-section {
  padding: var(--section-pad) 30px;
  /* pouca borda nas laterais */
  max-width: 1560px;
  /* mais largo para não ficar espremido, mas estruturado e centralizado */
  margin: 0 auto;
  width: 100%;
}

.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
}

.projects-title {
  font-family: var(--font-main);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 200;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.1;
}

.projects-meta {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 400px 400px 340px;
  gap: 16px;
}

.project-card:nth-child(1) {
  grid-area: 1 / 1 / 2 / 3;
}

.project-card:nth-child(2) {
  grid-area: 1 / 3 / 2 / 4;
}

.project-card:nth-child(3) {
  grid-area: 2 / 1 / 3 / 2;
}

.project-card:nth-child(4) {
  grid-area: 2 / 2 / 3 / 4;
}

.project-card:nth-child(5) {
  grid-area: 3 / 1 / 4 / 2;
}

.project-card:nth-child(6) {
  grid-area: 3 / 2 / 4 / 4;
}

.project-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
  cursor: pointer;
}

.project-card-image-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

.project-card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s ease;
  filter: brightness(0.9);
}

@media (hover: hover) {
  .project-card:hover .project-card-image-wrap img {
    transform: scale(1.06);
    filter: brightness(0.65);
  }
  .project-card:hover .project-card-overlay {
    opacity: 1;
  }
  .project-card:hover .project-card-overlay-body {
    transform: translateY(0);
  }
  .project-card:hover .project-card-footer {
    opacity: 0;
  }
}

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(10, 10, 9, 0.95) 0%,
      rgba(10, 10, 9, 0.5) 50%,
      transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  z-index: 2;
}

.project-card-overlay-body {
  transform: translateY(12px);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 100%;
}

.project-card-tag {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 8px;
}

.project-card-title {
  font-family: var(--font-main);
  font-size: 1.15rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 6px;
}

.project-card-subtitle {
  font-size: 0.75rem;
  color: rgba(250, 248, 245, 0.65);
  line-height: 1.55;
  margin-bottom: 12px;
  font-weight: 200;
}

.project-card-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: rgba(250, 248, 245, 0.6);
  text-transform: uppercase;
  z-index: 1;
  transition: opacity 0.4s ease;
}

.projects-cta {
  margin-top: 50px;
  text-align: center;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials-section {
  background: #1E1E1C;
  /* Cinza Grafite Premium */
  padding: var(--section-pad) 60px;
}

.testimonials-header {
  margin-bottom: 60px;
}

.testimonials-title {
  font-family: var(--font-main);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 200;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--text-light);
}

.testimonials-title em {
  font-style: normal;
  color: var(--gold-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.testimonial-card {
  padding: 36px 30px;
  background: #252422;
  /* Cinza Escuro para destacar no fundo grafite */
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(197, 160, 89, 0.3);
}

.testimonial-quote {
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 0.88rem;
  font-weight: 200;
  color: rgba(250, 248, 245, 0.8);
  line-height: 1.8;
  margin-bottom: 24px;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.testimonial-avatar {
  width: 34px;
  height: 34px;
  background: rgba(197, 160, 89, 0.15);
  border: 1px solid rgba(197, 160, 89, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold-light);
}

.testimonial-name {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-light);
}

.testimonial-role {
  font-size: 0.58rem;
  font-weight: 400;
  color: rgba(250, 248, 245, 0.4);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* =========================================================
   FOOTER — Premium Mini (Prominent Typo & SVG Social Icons)
   ========================================================= */
.footer {
  background: #141413;
  /* Cinza Quase Preto */
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 50px 60px 30px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: 'Outfit', 'Quicksand', sans-serif !important;
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-light);
}

.footer-mini-contacts {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(250, 248, 245, 0.85);
}

.footer-mini-contacts span {
  color: #FFFFFF;
  font-weight: 700;
  margin-right: 6px;
}

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: all var(--transition-fast);
}

.footer-social-icons a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-social-icons a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-dark);
  transform: translateY(-3px);
}

.footer-bottom-mini {
  width: 100%;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: rgba(250, 248, 245, 0.4);
  text-transform: uppercase;
}

/* =========================================================
   WHATSAPP FLOATING BUTTON
   ========================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 500;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

.whatsapp-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: pulse 2.4s ease-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* =========================================================
   ANIMATIONS & RESPONSIVE
   ========================================================= */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* =========================================================
   MINIMALIST ARCHITECTURE QUOTE SECTION
   ========================================================= */
.quote-minimalist-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 40px;
  background: #FFFFFF;
  /* Fundo branco para conectar perfeitamente com a seção Quem Somos */
  color: #2B2621;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: none;
}

.quote-minimalist-inner {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.quote-symbol {
  font-family: var(--font-main);
  font-size: 3.5rem;
  color: #8A6C3E;
  line-height: 1;
  opacity: 0.9;
}

.quote-text {
  font-family: var(--font-main);
  font-size: clamp(1.3rem, 2.8vw, 2.3rem);
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.55;
  color: #2B2621;
  min-height: 2.8em;
}

.quote-author {
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #8A6C3E;
  margin-top: 6px;
}

/* TYPEWRITER ANIMATION */
.typewriter-cursor {
  display: inline-block;
  color: var(--gold);
  font-weight: 300;
  margin-left: 2px;
  animation: blinkCursor 0.75s infinite;
}

@keyframes blinkCursor {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* DIRECTIONAL REVEAL ANIMATIONS */
.reveal,
.reveal-left,
.reveal-right,
.reveal-up,
.reveal-scale,
.reveal-fade {
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

.reveal {
  transform: translateY(30px);
}

.reveal-up {
  transform: translateY(45px);
}

.reveal-left {
  transform: translateX(-50px);
}

.reveal-right {
  transform: translateX(50px);
}

.reveal-scale {
  transform: scale(0.92);
}

.reveal-fade {
  transform: translateY(0);
}

.reveal.visible,
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible,
.reveal-fade.visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.24s;
}

.reveal-delay-3 {
  transition-delay: 0.36s;
}

@media (max-width: 1024px) {
  :root {
    --section-pad: 70px;
  }

  .nav {
    padding: 18px 30px;
  }

  .nav.scrolled {
    padding: 14px 30px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-content {
    padding: 120px 30px 60px 30px;
  }

  .hero-accent-line {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* About Split Reference Tablet/Mobile styling */
  .about-split-reference {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 0;
    gap: 0;
  }

  .about-split-left {
    order: 1;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .about-split-left img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: cover;
    object-position: center top;
    border-radius: 0;
    display: block;
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }

  .about-split-right {
    order: 2;
    padding: 60px 30px;
    width: 100%;
  }

  .services-header {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .projects-section {
    padding: var(--section-pad) 24px;
  }

  .projects-header {
    margin-bottom: 32px;
  }

  .projects-grid {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
    gap: 16px !important;
  }

  .project-card {
    grid-column: span 1 !important;
    grid-area: auto !important;
    height: 320px !important;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  :root {
    --section-pad: 56px;
  }

  .nav {
    padding: 16px 20px;
  }

  .hero-content {
    padding: 100px 20px 50px;
  }

  .hero-stats {
    flex-direction: column;
  }

  .about-split-left {
    height: auto;
  }

  .about-split-right {
    padding: 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .projects-header {
    margin-bottom: 24px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 280px);
    gap: 8px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   HOME — SEÇÕES DE CONEXÃO: PODCAST & FORMAÇÕES
   ========================================================= */

/* SEÇÃO HOME PODCAST (Escura, Sofisticada) */
.home-podcast-section {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: var(--section-pad) 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.home-podcast-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 60px;
  align-items: center;
}

.home-podcast-left {
  display: flex;
  flex-direction: column;
}

.home-podcast-quote {
  font-size: 1.05rem;
  font-weight: 200;
  color: rgba(250, 248, 245, 0.85);
  line-height: 1.8;
  margin-bottom: 28px;
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  font-style: italic;
}

@keyframes podcastInfiniteScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 12px));
  }
}

.home-podcast-carousel-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 10px;
}

.home-podcast-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: podcastInfiniteScroll 25s linear infinite;
}

.home-podcast-track:hover {
  animation-play-state: paused;
}

.home-podcast-card {
  width: 280px;
  background: var(--bg-card-dark);
  border: 1px solid var(--border-dark);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.home-podcast-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.home-podcast-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.home-podcast-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.home-podcast-card-ep {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}

.home-podcast-card-title {
  font-size: 1.05rem;
  font-weight: 300;
  color: #FFFFFF;
  line-height: 1.35;
  text-transform: uppercase;
}

/* SEÇÃO HOME FORMAÇÕES / MINICURSOS (Clara, Arquitetônica) */
.home-courses-section {
  background: var(--bg-primary);
  color: var(--text-dark);
  padding: var(--section-pad) 60px;
  border-top: 1px solid var(--border-light);
  position: relative;
}

.home-courses-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.home-courses-header {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 60px;
  align-items: flex-end;
}

.home-courses-quote {
  font-size: 1.05rem;
  font-weight: 300;
  color: #5C5449;
  line-height: 1.8;
  border-left: 2px solid #8A6C3E;
  padding-left: 20px;
  font-style: italic;
}

.home-courses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.home-course-card {
  background: #FFFFFF;
  border: 1px solid rgba(43, 38, 33, 0.1);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.home-course-card:hover {
  border-color: #8A6C3E;
  transform: translateY(-4px);
}

.home-course-card-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-bottom: 1px solid rgba(43, 38, 33, 0.08);
}

.home-course-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.home-course-card-tag {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #8A6C3E;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.home-course-card-title {
  font-size: 1.05rem;
  font-weight: 300;
  color: #2B2621;
  line-height: 1.35;
  text-transform: uppercase;
}

/* Responsividade para as novas seções */
@media (max-width: 1024px) {

  .home-podcast-inner,
  .home-courses-header {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .home-courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-podcast-section,
  .home-courses-section {
    padding: var(--section-pad) 30px;
  }
}

@media (max-width: 640px) {
  .home-courses-grid {
    grid-template-columns: 1fr;
  }

  .home-podcast-section,
  .home-courses-section {
    padding: var(--section-pad) 20px;
  }

  .home-podcast-card {
    width: 270px;
  }
}

/* =========================================================
   IDENTIDADE VISUAL OFICIAL 3A DESIGN — PÁGINA ESCRITÓRIO (INDEX)
   Aplicação exclusiva para body.page-escritorio
   Cores, contraste e regras tipográficas (NewBlack & Azeret Mono)
   ========================================================= */

body.page-escritorio {
  /* === CORES OFICIAIS === */
  --shadow-grey: #211E1F;
  /* Principal: textos, fundos escuros, alto contraste */
  --rosy-granite: #A09793;
  /* Apoio: fundos neutros e composições editoriais */
  --parchment: #F6F2ED;
  /* Principal: layouts editoriais e materiais institucionais */
  --midnight-violet: #442030;
  /* Apoio: contrastes elegantes e destaques */
  --petal-rouge: #DE7DA0;
  /* Secundária: destaques e capas */
  --canary-yellow: #F5FF66;
  /* Secundária: comunicação institucional e chamadas */
  --dark-teal: #0D4753;
  /* Apoio: elementos gráficos e ícones */

  /* Mapas globais para a página escritório */
  --bg-primary: #F6F2ED;
  /* Parchment */
  --bg-secondary: #A09793;
  /* Rosy Granite */
  --bg-dark: #211E1F;
  /* Shadow Grey */
  --bg-card-dark: #1A1718;

  --text-dark: #211E1F;
  /* Shadow Grey */
  --text-light: #F6F2ED;
  /* Parchment */
  --text-muted: #A09793;
  /* Rosy Granite */

  --gold: #F5FF66;
  /* Canary Yellow institucional */
  --gold-light: #F5FF66;

  --border-color: #211E1F;
  --border-light: rgba(33, 30, 31, 0.15);
  --border-dark: rgba(246, 242, 237, 0.15);

  /* System Fonts */
  --font-display: 'Syne', 'Space Grotesk', sans-serif;
  /* NewBlack Aesthetic */
  --font-mono: 'Azeret Mono', monospace;
  /* Azeret Mono */
  --font-main: 'Azeret Mono', monospace;
  --font-body: 'Azeret Mono', monospace;

  background-color: var(--parchment) !important;
  color: var(--shadow-grey) !important;
  font-family: 'Azeret Mono', monospace !important;
}

/* === TIPOGRAFIA — REGRAS DE DESTAQUE (NewBlack) ===
   Esp. letras: -60 em 1000 = -0.06em (muito justo)
   Esp. linhas: 1.15
   Utilizar sempre em caixa alta (uppercase) */
body.page-escritorio h1,
body.page-escritorio h2,
body.page-escritorio h3,
body.page-escritorio h4,
body.page-escritorio .hero-brand-main-logo,
body.page-escritorio .about-ref-title,
body.page-escritorio .services-title,
body.page-escritorio .projects-title,
body.page-escritorio .testimonials-title,
body.page-escritorio .home-podcast-section h2,
body.page-escritorio .home-courses-section h2,
body.page-escritorio .service-card-title,
body.page-escritorio .project-card-title,
body.page-escritorio .home-podcast-card-title,
body.page-escritorio .home-course-card-title,
body.page-escritorio .loader-logo {
  font-family: 'Syne', 'Space Grotesk', sans-serif !important;
  letter-spacing: -0.06em !important;
  line-height: 1.15 !important;
  text-transform: uppercase !important;
}

/* === TIPOGRAFIA — REGRAS DE DETALHE (Azeret Mono) ===
   Esp. letras: 0
   Esp. linhas: 1.35
   Fonte: Regular (400)
   Utilizar sempre em caixa alta (uppercase) */
body.page-escritorio .section-label,
body.page-escritorio .about-ref-label,
body.page-escritorio .nav-links a,
body.page-escritorio .nav-logo,
body.page-escritorio .nav-mobile a,
body.page-escritorio .btn-primary,
body.page-escritorio .btn-about-ref,
body.page-escritorio .service-card-number,
body.page-escritorio .service-card-link,
body.page-escritorio .project-card-tag,
body.page-escritorio .project-card-footer span,
body.page-escritorio .projects-meta,
body.page-escritorio .testimonial-name,
body.page-escritorio .testimonial-role,
body.page-escritorio .home-podcast-card-ep,
body.page-escritorio .home-course-card-tag,
body.page-escritorio .hero-brand-symbol,
body.page-escritorio .typewriter,
body.page-escritorio .quote-author,
body.page-escritorio .footer-logo,
body.page-escritorio .footer-mini-contacts,
body.page-escritorio .footer-copy {
  font-family: 'Azeret Mono', monospace !important;
  letter-spacing: 0em !important;
  line-height: 1.35 !important;
  font-weight: 400 !important;
  text-transform: uppercase !important;
}

/* === COMBINAÇÕES DE CORES E SEÇÕES (MATRIZ DE CONTRASTE) === */

/* LOADER */
body.page-escritorio .loader {
  background: #211E1F !important;
}

body.page-escritorio .loader-triangle path {
  stroke: #F5FF66 !important;
}

body.page-escritorio .loader-logo {
  color: #F6F2ED !important;
}

body.page-escritorio .loader-bar::after {
  background: #F5FF66 !important;
}

/* NAVIGATION */
body.page-escritorio .nav {
  background: transparent;
}

body.page-escritorio .nav.scrolled {
  background: rgba(246, 242, 237, 0.95) !important;
  border-bottom: 1px solid rgba(33, 30, 31, 0.12) !important;
}

body.page-escritorio .nav-logo {
  color: #F6F2ED !important;
}

body.page-escritorio .nav.scrolled .nav-logo {
  color: #211E1F !important;
}

body.page-escritorio .nav-links a {
  color: rgba(246, 242, 237, 0.85) !important;
}

body.page-escritorio .nav.scrolled .nav-links a {
  color: #211E1F !important;
}

body.page-escritorio .nav-links a:hover,
body.page-escritorio .nav-links a.nav-active {
  color: #F5FF66 !important;
}

body.page-escritorio .nav.scrolled .nav-links a:hover,
body.page-escritorio .nav.scrolled .nav-links a.nav-active {
  color: #0D4753 !important;
}

body.page-escritorio .nav-links a::after {
  background: #F5FF66 !important;
}

body.page-escritorio .nav.scrolled .nav-links a::after {
  background: #0D4753 !important;
}

body.page-escritorio .nav-progress {
  background: #F5FF66 !important;
}

/* HERO SECTION */
body.page-escritorio .hero {
  background: #211E1F !important;
}

body.page-escritorio .hero-brand-symbol {
  color: #F5FF66 !important;
  /* Canary Yellow destaque */
}

body.page-escritorio .hero-brand-main-logo {
  color: #F6F2ED !important;
  /* Parchment */
}

/* CITAÇÃO MINIMALISTA */
body.page-escritorio .quote-minimalist-section {
  background: #F6F2ED !important;
  /* Parchment */
  border-bottom: 1px solid rgba(33, 30, 31, 0.12);
}

body.page-escritorio .quote-symbol {
  color: #442030 !important;
  /* Midnight Violet */
}

body.page-escritorio .quote-text {
  color: #211E1F !important;
  /* Shadow Grey */
}

body.page-escritorio .quote-author {
  color: #0D4753 !important;
  /* Dark Teal */
}

/* SEÇÃO QUEM SOMOS (ESCRITÓRIO) */
body.page-escritorio .about-split-reference {
  background: #F6F2ED !important;
  /* Parchment */
  border-bottom: 1px solid rgba(33, 30, 31, 0.12);
}

body.page-escritorio .about-ref-label {
  color: #0D4753 !important;
  /* Dark Teal */
}

body.page-escritorio .about-ref-title {
  color: #211E1F !important;
  /* Shadow Grey */
}

body.page-escritorio .about-ref-title em {
  color: #442030 !important;
  /* Midnight Violet */
}

body.page-escritorio .about-ref-title .bracket-text {
  color: #0D4753 !important;
  /* Dark Teal */
}

body.page-escritorio .about-ref-desc {
  color: #211E1F !important;
}

body.page-escritorio .about-ref-quote {
  color: #211E1F !important;
}

body.page-escritorio .btn-about-ref {
  background: #F5FF66 !important;
  /* Canary Yellow */
  color: #0D4753 !important;
  /* DARK TEAL na escrita Saiba Mais */
  font-family: 'Azeret Mono', monospace !important;
  letter-spacing: 0em !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  padding: 14px 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

body.page-escritorio .btn-about-ref:hover {
  background: #0D4753 !important;
  /* Dark Teal */
  color: #F5FF66 !important;
  /* Canary Yellow */
}

body.page-escritorio .btn-about-ref svg {
  fill: currentColor;
}

/* SEÇÃO SERVIÇOS (MÓDULOS) */
body.page-escritorio .services-section {
  background: #F6F2ED !important;
  /* Parchment */
}

body.page-escritorio .services-section .section-label {
  color: #0D4753 !important;
  /* Dark Teal */
}

body.page-escritorio .services-section .section-label::after {
  background: #0D4753 !important;
}

body.page-escritorio .services-title {
  color: #211E1F !important;
}

body.page-escritorio .services-title em {
  color: #442030 !important;
  /* Midnight Violet */
}

body.page-escritorio .services-subtitle {
  color: #211E1F !important;
}

body.page-escritorio .service-card {
  background: #0D4753 !important;
  /* DARK TEAL de fundo na parte de módulos */
  border: 1px solid rgba(246, 242, 237, 0.15) !important;
}

body.page-escritorio .service-card-title {
  color: #F6F2ED !important;
  /* Parchment */
}

body.page-escritorio .service-card-subtitle {
  color: rgba(246, 242, 237, 0.85) !important;
}

body.page-escritorio .service-card-number {
  background: #F5FF66 !important;
  /* Canary Yellow badge */
  color: #0D4753 !important;
  /* DARK TEAL no texto do módulo */
  padding: 4px 12px;
  border-radius: 2px;
  font-weight: 500 !important;
}

body.page-escritorio .service-card-link {
  color: #0D4753 !important;
  /* DARK TEAL na escrita saiba mais */
  background: #F5FF66 !important;
  /* Fundo Canary Yellow para alto contraste */
  padding: 6px 16px;
  border-radius: 2px;
  font-weight: 500 !important;
  transition: all 0.3s ease;
  display: inline-block;
}

body.page-escritorio .service-card-link:hover {
  background: #F6F2ED !important;
  color: #0D4753 !important;
}

/* SEÇÃO PROJETOS */
body.page-escritorio #projetos {
  background: #211E1F !important;
  /* Shadow Grey */
}

body.page-escritorio .projects-section {
  background: #211E1F !important;
}

body.page-escritorio .projects-section .section-label {
  color: #F5FF66 !important;
  /* Canary Yellow */
}

body.page-escritorio .projects-section .section-label::after {
  background: #F5FF66 !important;
}

body.page-escritorio .projects-title {
  color: #F6F2ED !important;
}

body.page-escritorio .projects-meta {
  color: #A09793 !important;
}

body.page-escritorio .project-card-overlay {
  background: linear-gradient(to top, rgba(33, 30, 31, 0.95) 0%, rgba(33, 30, 31, 0.4) 100%) !important;
}

body.page-escritorio .project-card-tag {
  color: #F5FF66 !important;
  /* Canary Yellow */
}

body.page-escritorio .project-card-title {
  color: #F6F2ED !important;
}

body.page-escritorio .project-card-subtitle {
  color: rgba(246, 242, 237, 0.8) !important;
}

body.page-escritorio .project-card-footer {
  color: #F6F2ED !important;
  border-top: 1px solid rgba(246, 242, 237, 0.15);
}

/* BUTTON PRIMARY */
body.page-escritorio .btn-primary {
  background: #F5FF66 !important;
  /* Canary Yellow */
  color: #211E1F !important;
  /* Shadow Grey */
  border-color: #F5FF66 !important;
  font-weight: 500 !important;
}

body.page-escritorio .btn-primary::before {
  background: #0D4753 !important;
  /* Dark Teal */
}

body.page-escritorio .btn-primary:hover {
  color: #F5FF66 !important;
  border-color: #0D4753 !important;
}

body.page-escritorio .btn-primary--dark {
  background: #211E1F !important;
  color: #F6F2ED !important;
  border-color: #211E1F !important;
}

body.page-escritorio .btn-primary--dark::before {
  background: #F5FF66 !important;
}

body.page-escritorio .btn-primary--dark:hover {
  color: #211E1F !important;
  border-color: #F5FF66 !important;
}

/* SEÇÃO DEPOIMENTOS */
body.page-escritorio .testimonials-section {
  background: #442030 !important;
  /* Midnight Violet */
}

body.page-escritorio .testimonials-section .section-label {
  color: #DE7DA0 !important;
  /* Petal Rouge */
}

body.page-escritorio .testimonials-section .section-label::after {
  background: #DE7DA0 !important;
}

body.page-escritorio .testimonials-title {
  color: #F6F2ED !important;
}

body.page-escritorio .testimonials-title em {
  color: #DE7DA0 !important;
}

body.page-escritorio .testimonial-card {
  background: #211E1F !important;
  /* Shadow Grey */
  border: 1px solid rgba(222, 125, 160, 0.2);
}

body.page-escritorio .testimonial-quote {
  color: #DE7DA0 !important;
}

body.page-escritorio .testimonial-text {
  color: #F6F2ED !important;
}

body.page-escritorio .testimonial-name {
  color: #F5FF66 !important;
}

body.page-escritorio .testimonial-role {
  color: #A09793 !important;
}

/* SEÇÃO HOME PODCAST */
body.page-escritorio .home-podcast-section {
  background: #0D4753 !important;
  /* Dark Teal */
}

body.page-escritorio .home-podcast-section .section-label {
  color: #F5FF66 !important;
  /* Canary Yellow */
}

body.page-escritorio .home-podcast-section h2 {
  color: #F6F2ED !important;
}

body.page-escritorio .home-podcast-section h2 em {
  color: #DE7DA0 !important;
  /* Petal Rouge */
}

body.page-escritorio .home-podcast-quote {
  color: #F6F2ED !important;
  border-left-color: #F5FF66 !important;
}

body.page-escritorio .home-podcast-card {
  background: #211E1F !important;
  /* Shadow Grey */
  border-color: rgba(246, 242, 237, 0.1);
}

body.page-escritorio .home-podcast-card-ep {
  color: #DE7DA0 !important;
  /* Petal Rouge */
}

body.page-escritorio .home-podcast-card-title {
  color: #F6F2ED !important;
}

/* SEÇÃO HOME COURSES */
body.page-escritorio .home-courses-section {
  background: #A09793 !important;
  /* Rosy Granite */
}

body.page-escritorio .home-courses-section .section-label {
  color: #211E1F !important;
}

body.page-escritorio .home-courses-section .section-label::after {
  background: #211E1F !important;
}

body.page-escritorio .home-courses-section h2 {
  color: #211E1F !important;
}

body.page-escritorio .home-courses-section h2 em {
  color: #442030 !important;
  /* Midnight Violet */
}

body.page-escritorio .home-courses-quote {
  color: #211E1F !important;
  border-left-color: #211E1F !important;
}

body.page-escritorio .home-course-card {
  background: #F6F2ED !important;
  /* Parchment */
  border: 1px solid rgba(33, 30, 31, 0.12);
}

body.page-escritorio .home-course-card-tag {
  color: #0D4753 !important;
  /* Dark Teal */
}

body.page-escritorio .home-course-card-title {
  color: #211E1F !important;
}

/* FOOTER */
body.page-escritorio .footer {
  background: #211E1F !important;
  /* Shadow Grey */
  border-top: 1px solid rgba(160, 151, 147, 0.2);
}

body.page-escritorio .footer-logo {
  color: #F6F2ED !important;
}

body.page-escritorio .footer-mini-contacts {
  color: #A09793 !important;
}

body.page-escritorio .footer-mini-contacts span {
  color: #F5FF66 !important;
}

body.page-escritorio .footer-social-icons a {
  color: #F6F2ED !important;
}

body.page-escritorio .footer-social-icons a:hover {
  color: #F5FF66 !important;
}

body.page-escritorio .footer-copy {
  color: #A09793 !important;
}

/* === BOTÃO NAVBAR ECOSSISTEMA ISA BLACK NO ESCRITÓRIO === */
body.page-escritorio .nav-links a.nav-isablack-pill,
body.page-escritorio .nav.scrolled .nav-links a.nav-isablack-pill,
body.page-escritorio .nav-links a.nav-isablack-pill:visited {
  background-color: #F5FF66 !important;
  /* Canary Yellow */
  color: #211E1F !important;
  /* SHADOW GREY (#211E1F) — ALTO CONTRASTE */
  padding: 8px 18px !important;
  border-radius: 2px !important;
  font-weight: 600 !important;
  border: 1px solid #F5FF66 !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  display: inline-block !important;
}

body.page-escritorio .nav-links a.nav-isablack-pill::after {
  display: none !important;
}

body.page-escritorio .nav-links a.nav-isablack-pill:hover,
body.page-escritorio .nav.scrolled .nav-links a.nav-isablack-pill:hover {
  background-color: #0D4753 !important;
  /* Dark Teal */
  color: #F5FF66 !important;
  /* Canary Yellow */
  border-color: #0D4753 !important;
}

body.page-escritorio .nav-mobile a#mob-isablack {
  background-color: #F5FF66 !important;
  color: #211E1F !important;
  padding: 12px 18px !important;
  border-radius: 2px !important;
  margin-top: 10px !important;
  font-weight: 600 !important;
}

/* === BANNER TEASER ECOSSISTEMA ISA BLACK NO ESCRITÓRIO === */
body.page-escritorio .isablack-banner-section {
  background: #0D4753 !important;
  /* Dark Teal */
  padding: 80px 60px;
  border-top: 1px solid rgba(246, 242, 237, 0.1);
}

body.page-escritorio .isablack-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

body.page-escritorio .isablack-tag {
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.75rem;
  letter-spacing: 0em !important;
  color: #F5FF66 !important;
  display: block;
  margin-bottom: 12px;
}

body.page-escritorio .isablack-title {
  font-family: 'Syne', sans-serif !important;
  font-size: clamp(1.8rem, 3vw, 2.6rem) !important;
  letter-spacing: -0.06em !important;
  color: #F6F2ED !important;
  margin-bottom: 12px;
}

body.page-escritorio .isablack-desc {
  color: rgba(246, 242, 237, 0.8) !important;
  max-width: 580px;
  font-size: 0.9rem;
}

body.page-escritorio .btn-isablack-cta {
  background: #F5FF66 !important;
  color: #211E1F !important;
  padding: 16px 32px;
  font-family: 'Azeret Mono', monospace !important;
  font-weight: 500 !important;
  letter-spacing: 0em !important;
  text-transform: uppercase !important;
  border-radius: 2px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

body.page-escritorio .btn-isablack-cta:hover {
  background: #F6F2ED !important;
  color: #0D4753 !important;
}

/* =========================================================
   ESTILOS GLOBAIS DO ECOSSISTEMA ISA BLACK (ISABLACK.HTML)
   ========================================================= */

body.page-isablack {
  --shadow-grey: #211E1F;
  --rosy-granite: #A09793;
  --parchment: #F6F2ED;
  --midnight-violet: #442030;
  --petal-rouge: #DE7DA0;
  --canary-yellow: #F5FF66;
  --dark-teal: #0D4753;

  background-color: #211E1F !important;
  color: #F6F2ED !important;
  font-family: 'Azeret Mono', monospace !important;
}

/* Header & Nav */
body.page-isablack .isablack-nav {
  background: rgba(33, 30, 31, 0.95) !important;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(246, 242, 237, 0.1);
}

body.page-isablack .nav-logo {
  color: #F6F2ED !important;
  font-family: 'Syne', sans-serif !important;
  letter-spacing: -0.04em;
  font-size: 1.1rem;
}

body.page-isablack .tab-link {
  color: rgba(246, 242, 237, 0.7) !important;
  font-family: 'Azeret Mono', monospace !important;
  letter-spacing: 0em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  font-size: 0.75rem;
}

body.page-isablack .tab-link:hover,
body.page-isablack .tab-link.active {
  color: #F5FF66 !important;
}

body.page-isablack .btn-escritorio-link {
  background: #0D4753 !important;
  color: #F5FF66 !important;
  padding: 10px 20px;
  border-radius: 2px;
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.7rem;
  letter-spacing: 0em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

body.page-isablack .btn-escritorio-link:hover {
  background: #F5FF66 !important;
  color: #211E1F !important;
}

/* Hero */
body.page-isablack .isablack-hero-section {
  padding: 60px 40px 40px;
  text-align: center;
  background: radial-gradient(circle at center, rgba(68, 32, 48, 0.4) 0%, rgba(33, 30, 31, 1) 100%);
  border-bottom: 1px solid rgba(246, 242, 237, 0.08);
}

body.page-isablack .isablack-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

body.page-isablack .isablack-hero-eyebrow {
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.7rem;
  color: #DE7DA0 !important;
  letter-spacing: 0em;
  display: block;
  margin-bottom: 16px;
  text-transform: uppercase;
}

body.page-isablack .isablack-hero-title {
  font-family: 'Syne', sans-serif !important;
  font-size: clamp(2.5rem, 5.5vw, 4.8rem) !important;
  letter-spacing: -0.06em !important;
  line-height: 1.1 !important;
  color: #F6F2ED !important;
  margin-bottom: 20px;
  text-transform: uppercase;
}

body.page-isablack .isablack-hero-title em {
  color: #F5FF66 !important;
  font-style: normal;
}

body.page-isablack .isablack-hero-desc {
  font-size: 0.95rem;
  color: rgba(246, 242, 237, 0.8);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

/* Tabs Switcher */
body.page-isablack .isablack-tabs-switcher {
  display: inline-flex;
  gap: 16px;
  background: rgba(10, 10, 9, 0.6);
  padding: 8px;
  border-radius: 4px;
  border: 1px solid rgba(246, 242, 237, 0.1);
  flex-wrap: wrap;
  justify-content: center;
}

body.page-isablack .tab-btn {
  background: transparent;
  color: rgba(246, 242, 237, 0.7);
  border: none;
  padding: 14px 28px;
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.75rem;
  letter-spacing: 0em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
}

body.page-isablack .tab-btn.active {
  background: #F5FF66 !important;
  color: #211E1F !important;
  font-weight: 600 !important;
}

body.page-isablack .tab-btn:hover:not(.active) {
  color: #F6F2ED !important;
  background: rgba(255, 255, 255, 0.05);
}

/* Tab Contents Toggle */
.isablack-tab-content {
  display: none;
}

.isablack-tab-content.active {
  display: block;
}

/* PODCAST SECTION (ABA 01) */
body.page-isablack .podcast-editorial-section {
  padding: 70px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}

body.page-isablack .podcast-editorial-header {
  margin-bottom: 50px;
  text-align: center;
}

body.page-isablack .podcast-gochi-accent {
  font-family: 'Gochi Hand', cursive !important;
  font-size: 2.2rem !important;
  color: #DE7DA0 !important;
  /* Petal Rouge */
  display: block;
  transform: rotate(-3deg);
  margin-bottom: 8px;
}

body.page-isablack .podcast-main-title {
  font-family: 'Syne', sans-serif !important;
  font-size: clamp(2rem, 4vw, 3.2rem) !important;
  letter-spacing: -0.06em !important;
  color: #F6F2ED !important;
  text-transform: uppercase;
  margin-bottom: 16px;
}

body.page-isablack .podcast-main-title em {
  color: #DE7DA0 !important;
  font-style: normal;
}

body.page-isablack .podcast-intro-text {
  max-width: 600px;
  margin: 0 auto;
  color: rgba(246, 242, 237, 0.8);
  font-size: 0.9rem;
}

/* Featured Card */
body.page-isablack .podcast-featured-card {
  display: grid;
  grid-template-columns: 420px 1fr;
  background: #442030 !important;
  /* Midnight Violet */
  border: 1px solid rgba(222, 125, 160, 0.3);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 60px;
}

body.page-isablack .podcast-featured-img-wrap {
  position: relative;
  height: 100%;
  min-height: 320px;
}

body.page-isablack .podcast-featured-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.page-isablack .podcast-gochi-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #DE7DA0;
  color: #211E1F;
  font-family: 'Gochi Hand', cursive !important;
  font-size: 1.3rem;
  padding: 4px 14px;
  border-radius: 20px;
  transform: rotate(-4deg);
}

body.page-isablack .podcast-featured-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body.page-isablack .podcast-ep-tag {
  font-size: 0.68rem;
  color: #F5FF66 !important;
  margin-bottom: 12px;
  display: block;
}

body.page-isablack .podcast-ep-title {
  font-family: 'Syne', sans-serif !important;
  font-size: 1.6rem !important;
  letter-spacing: -0.04em !important;
  color: #F6F2ED !important;
  line-height: 1.25 !important;
  margin-bottom: 16px;
}

body.page-isablack .podcast-ep-desc {
  color: rgba(246, 242, 237, 0.85);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

body.page-isablack .btn-play-episode {
  background: #F5FF66 !important;
  color: #211E1F !important;
  border: none;
  padding: 14px 28px;
  font-family: 'Azeret Mono', monospace !important;
  font-weight: 600 !important;
  font-size: 0.75rem;
  letter-spacing: 0em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
  align-self: flex-start;
  margin-bottom: 16px;
}

body.page-isablack .btn-play-episode:hover {
  background: #DE7DA0 !important;
  color: #211E1F !important;
}

body.page-isablack .podcast-platforms-label {
  font-size: 0.6rem;
  color: rgba(246, 242, 237, 0.5);
  display: block;
}

/* Episodes Grid */
body.page-isablack .podcast-episodes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

body.page-isablack .podcast-ep-card {
  background: #211E1F !important;
  border: 1px solid rgba(246, 242, 237, 0.1);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

body.page-isablack .podcast-ep-card-img {
  height: 190px;
  overflow: hidden;
}

body.page-isablack .podcast-ep-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.page-isablack .podcast-ep-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

body.page-isablack .podcast-ep-num {
  font-size: 0.65rem;
  color: #DE7DA0 !important;
  margin-bottom: 8px;
}

body.page-isablack .podcast-ep-card-title {
  font-family: 'Syne', sans-serif !important;
  font-size: 1.1rem !important;
  letter-spacing: -0.04em !important;
  color: #F6F2ED !important;
  margin-bottom: 12px;
  line-height: 1.3 !important;
}

body.page-isablack .podcast-ep-card-desc {
  font-size: 0.8rem;
  color: rgba(246, 242, 237, 0.7);
  line-height: 1.6;
  margin-bottom: 16px;
}

body.page-isablack .podcast-gochi-note {
  font-family: 'Gochi Hand', cursive !important;
  color: #F5FF66 !important;
  font-size: 1.15rem;
  margin-top: auto;
}

/* CURSOS SECTION (ABA 02) */
body.page-isablack .courses-platform-section {
  padding: 70px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}

body.page-isablack .courses-platform-header {
  text-align: center;
  margin-bottom: 50px;
}

body.page-isablack .courses-label {
  font-size: 0.7rem;
  color: #F5FF66 !important;
  display: block;
  margin-bottom: 12px;
}

body.page-isablack .courses-platform-title {
  font-family: 'Syne', sans-serif !important;
  font-size: clamp(2rem, 4vw, 3.2rem) !important;
  letter-spacing: -0.06em !important;
  color: #F6F2ED !important;
  margin-bottom: 16px;
}

body.page-isablack .courses-platform-title em {
  color: #F5FF66 !important;
  font-style: normal;
}

body.page-isablack .courses-platform-subtitle {
  max-width: 640px;
  margin: 0 auto;
  color: rgba(246, 242, 237, 0.8);
  font-size: 0.9rem;
}

/* Sales Grid */
body.page-isablack .courses-sales-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

body.page-isablack .course-sale-card {
  background: #0D4753 !important;
  /* Dark Teal */
  border: 1px solid rgba(245, 255, 102, 0.2);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease;
}

body.page-isablack .course-sale-card:hover {
  transform: translateY(-6px);
}

body.page-isablack .course-sale-img-wrap {
  position: relative;
  height: 200px;
}

body.page-isablack .course-sale-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.page-isablack .course-badge-status {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #F5FF66;
  color: #211E1F;
  font-size: 0.6rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 2px;
}

body.page-isablack .course-sale-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

body.page-isablack .course-module-tag {
  font-size: 0.65rem;
  color: #F5FF66 !important;
  margin-bottom: 10px;
  display: block;
}

body.page-isablack .course-sale-title {
  font-family: 'Syne', sans-serif !important;
  font-size: 1.25rem !important;
  letter-spacing: -0.04em !important;
  color: #F6F2ED !important;
  margin-bottom: 14px;
  line-height: 1.3 !important;
}

body.page-isablack .course-sale-desc {
  font-size: 0.82rem;
  color: rgba(246, 242, 237, 0.85);
  line-height: 1.6;
  margin-bottom: 20px;
}

body.page-isablack .course-features-list {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(246, 242, 237, 0.9);
}

body.page-isablack .course-price-box {
  margin-top: auto;
  border-top: 1px solid rgba(246, 242, 237, 0.15);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

body.page-isablack .price-old {
  font-size: 0.7rem;
  text-decoration: line-through;
  color: rgba(246, 242, 237, 0.5);
}

body.page-isablack .price-current {
  font-family: 'Syne', sans-serif !important;
  font-size: 1.3rem !important;
  color: #F5FF66 !important;
  font-weight: 700;
  margin-bottom: 12px;
}

body.page-isablack .btn-buy-course {
  background: #F5FF66 !important;
  color: #0D4753 !important;
  text-align: center;
  padding: 14px 20px;
  font-family: 'Azeret Mono', monospace !important;
  font-weight: 700 !important;
  font-size: 0.72rem;
  letter-spacing: 0em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s ease;
}

body.page-isablack .btn-buy-course:hover {
  background: #F6F2ED !important;
  color: #0D4753 !important;
}

/* Back to Office Banner */
body.page-isablack .back-to-office-section {
  background: #A09793 !important;
  /* Rosy Granite */
  color: #211E1F !important;
  padding: 70px 40px;
  text-align: center;
}

body.page-isablack .back-office-inner {
  max-width: 800px;
  margin: 0 auto;
}

body.page-isablack .back-office-tag {
  font-size: 0.7rem;
  color: #211E1F !important;
  display: block;
  margin-bottom: 12px;
}

body.page-isablack .back-to-office-section h2 {
  font-family: 'Syne', sans-serif !important;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem) !important;
  letter-spacing: -0.06em !important;
  color: #211E1F !important;
  margin-bottom: 14px;
}

body.page-isablack .back-to-office-section p {
  color: #211E1F !important;
  font-size: 0.9rem;
  margin-bottom: 28px;
}

body.page-isablack .btn-back-office {
  background: #211E1F !important;
  color: #F6F2ED !important;
  padding: 16px 32px;
  font-family: 'Azeret Mono', monospace !important;
  font-weight: 500 !important;
  font-size: 0.75rem;
  letter-spacing: 0em;
  text-transform: uppercase;
  border-radius: 2px;
  display: inline-block;
  transition: all 0.3s ease;
}

body.page-isablack .btn-back-office:hover {
  background: #F5FF66 !important;
  color: #211E1F !important;
}

/* Responsividade Isa Black */
@media (max-width: 1024px) {
  body.page-isablack .podcast-featured-card {
    grid-template-columns: 1fr;
  }

  body.page-isablack .podcast-episodes-grid,
  body.page-isablack .courses-sales-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {

  body.page-isablack .podcast-episodes-grid,
  body.page-isablack .courses-sales-grid {
    grid-template-columns: 1fr;
  }

  body.page-isablack .isablack-hero-section,
  body.page-isablack .podcast-editorial-section,
  body.page-isablack .courses-platform-section {
    padding: 40px 20px;
  }
}

/* =========================================================
   PORTAL INICIAL ECOSSISTEMA ISA BLACK (ISABLACK.HTML)
   Visual Minimalista Cinemático com Vídeo Fullscreen
   ========================================================= */

body.page-isablack-portal {
  background: #211E1F !important;
  color: #F6F2ED !important;
  font-family: 'Azeret Mono', monospace !important;
  overflow: hidden;
  height: 100vh;
}

.isablack-fullscreen-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #211E1F;
}

.isablack-portal-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.portal-main-title {
  font-family: 'Syne', 'Space Grotesk', sans-serif !important;
  font-size: clamp(3.5rem, 8.5vw, 7.5rem) !important;
  letter-spacing: -0.06em !important;
  line-height: 1.0 !important;
  color: #F6F2ED !important;
  /* Parchment */
  text-transform: uppercase !important;
  margin-bottom: 48px;
}

/* Os Dois Botões Principais Lado a Lado (Idênticos, Sem Ícones) */
.portal-primary-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.portal-btn-clean {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 230px;
  padding: 18px 36px !important;
  background-color: #F5FF66 !important;
  /* Canary Yellow */
  color: #211E1F !important;
  /* Shadow Grey */
  border: 1px solid #F5FF66 !important;
  border-radius: 2px !important;
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.portal-btn-clean:hover {
  background-color: #0D4753 !important;
  /* Dark Teal no Hover */
  color: #F5FF66 !important;
  /* Canary Yellow no Hover */
  border-color: #0D4753 !important;
  transform: translateY(-3px);
}

/* Terceiro Botão Minimalista Logo Abaixo */
.portal-secondary-action {
  margin-top: 10px;
}

.portal-btn-minimalist {
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.72rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: rgba(246, 242, 237, 0.75) !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(246, 242, 237, 0.3) !important;
  padding-bottom: 4px !important;
  transition: all 0.3s ease !important;
}

.portal-btn-minimalist:hover {
  color: #F5FF66 !important;
  border-color: #F5FF66 !important;
}

@media (max-width: 640px) {
  .portal-primary-actions {
    flex-direction: column;
    width: 100%;
    gap: 14px;
  }

  .portal-btn-clean {
    width: 100%;
    min-width: unset;
  }
}

/* =========================================================
   COM PÉ DIREITO PODCAST — PÁGINA DEDICADA (PODCAST.HTML)
   Identidade: Petal Rouge (#DE7DA0), Midnight Violet (#442030)
   Tipografia: Gochi Hand nos detalhes manuscritos
   ========================================================= */

body.page-podcast-isablack {
  background-color: #211E1F !important;
  color: #F6F2ED !important;
  font-family: 'Azeret Mono', monospace !important;
}

/* Nav */
body.page-podcast-isablack .podcast-nav {
  background: rgba(33, 30, 31, 0.95) !important;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(222, 125, 160, 0.2);
  padding: 0 40px !important;
  height: 68px !important;
  /* Mantém o menu fino e discreto */
  box-sizing: border-box !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: visible !important;
}

body.page-podcast-isablack .podcast-nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none !important;
}

body.page-podcast-isablack .logo1-nav-img {
  height: 58px !important;
  /* Logo maior e em destaque */
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transform: scale(1.15);
  /* Aumenta a logo visualmente sem esticar o menu */
  transform-origin: left center;
}
/* 1. Cores das listras do menu celular (FECHADO) por página */
body.page-isablack .nav-toggle span,
body.page-isablack-hub .nav-toggle span {
  background: #FFFFFF !important;
}
body.page-podcast-isablack .nav-toggle span {
  background: #DE7DA0 !important; /* Petal Rouge */
}
body.page-ensina-isablack .nav-toggle span {
  background: #F5FF66 !important; /* Canary Yellow */
}
body.page-escritorio .nav-toggle span {
  background: #101010 !important; /* Dark/Black */
}

/* 2. Quando o Menu está ABERTO (.open) -> Destaque animado */
.nav-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg) !important;
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0 !important;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg) !important;
}

/* Cores das listras do menu celular (ABERTO) por página */
body.page-isablack .nav-toggle.open span,
body.page-isablack-hub .nav-toggle.open span {
  background: #FFFFFF !important;
}
body.page-podcast-isablack .nav-toggle.open span {
  background: #DE7DA0 !important; /* Petal Rouge */
}
body.page-ensina-isablack .nav-toggle.open span {
  background: #F5FF66 !important; /* Canary Yellow */
}
body.page-escritorio .nav-toggle.open span {
  background: #101010 !important; /* Dark/Black */
}

body.page-podcast-isablack .logo-loader-img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
}

body.page-podcast-isablack .nav-link-isa {
  font-family: 'Azeret Mono', monospace !important;
  color: rgba(246, 242, 237, 0.85) !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
}

body.page-podcast-isablack .nav-link-isa:hover {
  color: #DE7DA0 !important;
}

body.page-podcast-isablack .btn-portal-back {
  background: #442030 !important;
  /* Midnight Violet */
  color: #DE7DA0 !important;
  /* Petal Rouge */
  padding: 10px 20px !important;
  border-radius: 2px !important;
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.72rem !important;
  text-transform: uppercase !important;
  transition: all 0.3s ease !important;
  border: 1px solid rgba(222, 125, 160, 0.3) !important;
  text-decoration: none !important;
}

body.page-podcast-isablack .btn-portal-back:hover {
  background: #DE7DA0 !important;
  color: #211E1F !important;
}

/* === PODCAST HERO FULLSCREEN CENTRALIZADO (FUNDO PODCAST.PNG + PODCAST1.PNG/PODCAST2.PNG CENTRADOS) === */
body.page-podcast-isablack .podcast-hero-fullscreen {
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 90vh !important;
  min-height: 650px !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  background: #211E1F !important;
}

body.page-podcast-isablack .podcast-hero-bg-wrapper {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 1 !important;
}

body.page-podcast-isablack .podcast-hero-bg {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
}

body.page-podcast-isablack .podcast-hero-center-content {
  position: relative !important;
  z-index: 3 !important;
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: center !important;
}

body.page-podcast-isablack .podcast-transparent-slider {
  position: relative !important;
  width: 100% !important;
  max-width: 960px !important;
  height: 100% !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: center !important;
}

body.page-podcast-isablack .podcast-transparent-slider .podcast-slide-img,
body.page-podcast-isablack .podcast-slide-img {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: center !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out !important;
  z-index: 1 !important;
}

body.page-podcast-isablack .podcast-transparent-slider .podcast-slide-img.active,
body.page-podcast-isablack .podcast-slide-img.active {
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 2 !important;
}

body.page-podcast-isablack .podcast-transparent-slider .podcast-slide-img img,
body.page-podcast-isablack .podcast-slide-img img {
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center bottom !important;
  /* Ancorado exatamente na borda inferior */
  display: block !important;
  margin: 0 auto !important;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.4)) !important;
}

body.page-podcast-isablack .podcast-slider-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}

body.page-podcast-isablack .podcast-slider-indicators .indicator {
  width: 28px;
  height: 3px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  transition: background 0.4s ease;
}

body.page-podcast-isablack .podcast-slider-indicators .indicator.active {
  background: #F5FF66 !important;
}

/* =========================================================
   SPOTIFY PODCAST SHOW HEADER
   ========================================================= */
body.page-podcast-isablack .spotify-show-header-section {
  background: linear-gradient(180deg, #3A1B29 0%, #211E1F 100%) !important;
  padding: 60px 40px 40px;
  border-bottom: 1px solid rgba(222, 125, 160, 0.15);
  box-sizing: border-box;
}

body.page-podcast-isablack .spotify-show-header-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  gap: 36px;
}

body.page-podcast-isablack .spotify-show-cover {
  position: relative;
  width: 220px;
  height: 220px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(222, 125, 160, 0.2);
}

body.page-podcast-isablack .spotify-show-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.page-podcast-isablack .spotify-show-cover-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(33, 30, 31, 0.85);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 600;
  color: #DE7DA0;
  border: 1px solid rgba(222, 125, 160, 0.3);
}

body.page-podcast-isablack .spotify-show-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex-grow: 1;
}

body.page-podcast-isablack .spotify-badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

body.page-podcast-isablack .spotify-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  color: #F5FF66;
  font-weight: 700;
  letter-spacing: 0.08em;
}

body.page-podcast-isablack .spotify-show-type {
  font-size: 0.68rem;
  color: rgba(246, 242, 237, 0.6);
  letter-spacing: 0.08em;
}

body.page-podcast-isablack .spotify-show-title {
  font-family: 'Syne', sans-serif !important;
  font-size: clamp(2rem, 4vw, 3.4rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.04em !important;
  color: #F6F2ED !important;
  margin-bottom: 12px;
  line-height: 1.05;
}

body.page-podcast-isablack .spotify-show-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: rgba(246, 242, 237, 0.75);
  margin-bottom: 14px;
  flex-wrap: wrap;
}

body.page-podcast-isablack .spotify-show-meta strong {
  color: #F6F2ED;
}

body.page-podcast-isablack .spotify-bullet {
  opacity: 0.4;
}

body.page-podcast-isablack .spotify-show-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(246, 242, 237, 0.7);
  max-width: 750px;
  margin-bottom: 24px;
  font-weight: 300;
}

body.page-podcast-isablack .spotify-show-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

body.page-podcast-isablack .spotify-btn-primary {
  background: #F5FF66 !important;
  color: #211E1F !important;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(245, 255, 102, 0.25);
}

body.page-podcast-isablack .spotify-btn-primary:hover {
  transform: scale(1.04);
  background: #ffffff !important;
  box-shadow: 0 6px 20px rgba(245, 255, 102, 0.4);
}

body.page-podcast-isablack .spotify-btn-secondary {
  background: transparent;
  color: #F6F2ED;
  border: 1px solid rgba(222, 125, 160, 0.4);
  padding: 11px 24px;
  border-radius: 30px;
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

body.page-podcast-isablack .spotify-btn-secondary:hover {
  border-color: #DE7DA0;
  background: rgba(222, 125, 160, 0.15);
  color: #DE7DA0;
}

body.page-podcast-isablack .spotify-btn-icon {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(246, 242, 237, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

body.page-podcast-isablack .spotify-btn-icon:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #F6F2ED;
  transform: scale(1.06);
}

/* =========================================================
   SPOTIFY EPISODES SECTION & CATEGORY FILTERS
   ========================================================= */
body.page-podcast-isablack .spotify-episodes-main-section {
  padding: 60px 40px;
  box-sizing: border-box;
}

body.page-podcast-isablack .spotify-episodes-container {
  max-width: 1100px;
  margin: 0 auto;
}

body.page-podcast-isablack .spotify-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

body.page-podcast-isablack .spotify-sub-tag {
  font-size: 0.7rem;
  color: #DE7DA0;
  display: block;
  margin-bottom: 6px;
  letter-spacing: 0.08em;
}

body.page-podcast-isablack .spotify-heading {
  font-family: 'Syne', sans-serif !important;
  font-size: clamp(1.8rem, 3vw, 2.6rem) !important;
  font-weight: 700 !important;
  color: #F6F2ED !important;
  letter-spacing: -0.03em;
}

body.page-podcast-isablack .spotify-filter-pills {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}

body.page-podcast-isablack .spotify-filter-pills::-webkit-scrollbar {
  display: none;
}

body.page-podcast-isablack .filter-pill {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(246, 242, 237, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 18px;
  border-radius: 30px;
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.72rem;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

body.page-podcast-isablack .filter-pill:hover {
  background: rgba(222, 125, 160, 0.2);
  border-color: rgba(222, 125, 160, 0.4);
  color: #F6F2ED;
}

body.page-podcast-isablack .filter-pill.active {
  background: #DE7DA0 !important;
  color: #211E1F !important;
  border-color: #DE7DA0 !important;
  font-weight: 700;
}

/* =========================================================
   SPOTIFY EPISODE CARDS LIST & SAIBA MAIS COLLAPSIBLE
   ========================================================= */
body.page-podcast-isablack .spotify-episodes-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

body.page-podcast-isablack .spotify-ep-card {
  display: flex;
  gap: 24px;
  padding: 24px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(222, 125, 160, 0.12);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

body.page-podcast-isablack .spotify-ep-card:hover {
  background: rgba(68, 32, 48, 0.28) !important;
  border-color: rgba(222, 125, 160, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

body.page-podcast-isablack .spotify-ep-cover-wrapper {
  position: relative;
  width: 140px;
  height: 140px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

body.page-podcast-isablack .spotify-ep-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

body.page-podcast-isablack .spotify-ep-card:hover .spotify-ep-img {
  transform: scale(1.06);
}

body.page-podcast-isablack .spotify-play-overlay-btn {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  cursor: pointer;
}

body.page-podcast-isablack .spotify-ep-cover-wrapper:hover .spotify-play-overlay-btn,
body.page-podcast-isablack .spotify-ep-card:hover .spotify-play-overlay-btn {
  opacity: 1;
}

body.page-podcast-isablack .play-svg {
  width: 48px;
  height: 48px;
  fill: #F5FF66;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
  transition: transform 0.2s ease;
}

body.page-podcast-isablack .spotify-play-overlay-btn:hover .play-svg {
  transform: scale(1.15);
}

body.page-podcast-isablack .spotify-ep-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

body.page-podcast-isablack .spotify-ep-header-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: #DE7DA0;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

body.page-podcast-isablack .spotify-ep-number {
  font-weight: 700;
  letter-spacing: 0.05em;
}

body.page-podcast-isablack .spotify-ep-dot {
  opacity: 0.4;
  color: #F6F2ED;
}

body.page-podcast-isablack .spotify-ep-date {
  color: rgba(246, 242, 237, 0.55);
}

body.page-podcast-isablack .spotify-category-tag {
  background: rgba(222, 125, 160, 0.15);
  border: 1px solid rgba(222, 125, 160, 0.3);
  padding: 2px 10px;
  border-radius: 14px;
  font-size: 0.65rem;
  color: #DE7DA0;
}

body.page-podcast-isablack .spotify-ep-title {
  font-family: 'Syne', sans-serif !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  line-height: 1.3;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

body.page-podcast-isablack .spotify-ep-title a {
  color: #F6F2ED !important;
  text-decoration: none;
  transition: color 0.2s ease;
}

body.page-podcast-isablack .spotify-ep-title a:hover {
  color: #F5FF66 !important;
}

body.page-podcast-isablack .spotify-ep-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 12px;
}

body.page-podcast-isablack .spotify-ep-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

body.page-podcast-isablack .spotify-play-row-btn {
  background: #DE7DA0 !important;
  color: #211E1F !important;
  border: none;
  padding: 8px 20px;
  border-radius: 30px;
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.7rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

body.page-podcast-isablack .spotify-play-row-btn:hover {
  background: #F5FF66 !important;
  transform: scale(1.04);
}

body.page-podcast-isablack .play-icon-small {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

body.page-podcast-isablack .spotify-ep-time {
  font-size: 0.75rem;
  color: rgba(246, 242, 237, 0.55);
}

/* BOTÃO SAIBA MAIS & EXPANSÃO DA DESCRIÇÃO */
body.page-podcast-isablack .spotify-btn-saiba-mais {
  background: transparent;
  color: #DE7DA0;
  border: 1px solid rgba(222, 125, 160, 0.35);
  padding: 6px 14px;
  border-radius: 20px;
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.68rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

body.page-podcast-isablack .spotify-btn-saiba-mais:hover {
  background: rgba(222, 125, 160, 0.15);
  border-color: #DE7DA0;
  color: #F6F2ED;
}

body.page-podcast-isablack .spotify-btn-saiba-mais .arrow-icon {
  transition: transform 0.3s ease;
}

body.page-podcast-isablack .spotify-btn-saiba-mais.active .arrow-icon {
  transform: rotate(180deg);
}

body.page-podcast-isablack .spotify-ep-desc-collapse {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease, margin-top 0.25s ease;
  margin-top: 0;
  width: 100%;
}

body.page-podcast-isablack .spotify-ep-desc-collapse.open {
  max-height: 300px;
  opacity: 1;
  margin-top: 12px;
}

body.page-podcast-isablack .spotify-ep-desc {
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(246, 242, 237, 0.78);
  font-weight: 300;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.25);
  border-left: 2px solid #DE7DA0;
  border-radius: 4px;
  margin: 0;
}

body.page-podcast-isablack .spotify-gochi-comment {
  font-family: 'Gochi Hand', cursive !important;
  font-size: 1.35rem !important;
  color: #F5FF66 !important;
  margin-left: auto;
}

/* =========================================================
   STICKY BOTTOM AUDIO PLAYER ESTILO SPOTIFY
   ========================================================= */
body.page-podcast-isablack .spotify-sticky-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 85px;
  background: rgba(18, 16, 17, 0.96) !important;
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(222, 125, 160, 0.25);
  z-index: 9999;
  box-sizing: border-box;
  padding: 0 28px;
  display: flex;
  align-items: center;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

body.page-podcast-isablack .player-top-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  z-index: 2;
}

body.page-podcast-isablack .player-top-progress-bar .player-progress-fill {
  height: 100%;
  background: #DE7DA0;
  border-radius: 0 2px 2px 0;
}

body.page-podcast-isablack .spotify-player-inner {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Track Info (Esquerda) */
body.page-podcast-isablack .spotify-player-track {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 280px;
  flex-shrink: 0;
}

body.page-podcast-isablack .player-track-img {
  width: 52px;
  height: 52px;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

body.page-podcast-isablack .player-track-info {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

body.page-podcast-isablack .player-track-title {
  font-family: 'Syne', sans-serif !important;
  font-size: 0.85rem;
  font-weight: 700;
  color: #F6F2ED;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 3px;
}

body.page-podcast-isablack .player-track-sub {
  font-size: 0.7rem;
  color: #DE7DA0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Controles & Barra (Centro) */
body.page-podcast-isablack .spotify-player-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-grow: 1;
  max-width: 560px;
}

body.page-podcast-isablack .player-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

body.page-podcast-isablack .player-ctrl-btn {
  background: transparent;
  border: none;
  color: rgba(246, 242, 237, 0.7);
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, transform 0.2s ease;
}

body.page-podcast-isablack .player-ctrl-btn:hover {
  color: #F6F2ED;
  transform: scale(1.1);
}

body.page-podcast-isablack .player-play-main-btn {
  background: #F5FF66 !important;
  color: #211E1F !important;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
  box-shadow: 0 4px 12px rgba(245, 255, 102, 0.3);
}

body.page-podcast-isablack .player-play-main-btn:hover {
  transform: scale(1.08);
  background: #ffffff !important;
}

body.page-podcast-isablack .player-progress-row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

body.page-podcast-isablack .player-time {
  font-size: 0.68rem;
  color: rgba(246, 242, 237, 0.5);
  min-width: 36px;
}

body.page-podcast-isablack .player-progress-bar-wrap {
  position: relative;
  flex-grow: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  cursor: pointer;
  transition: height 0.2s ease;
}

body.page-podcast-isablack .player-progress-bar-wrap:hover {
  height: 6px;
}

body.page-podcast-isablack .player-progress-fill {
  height: 100%;
  background: #DE7DA0 !important;
  border-radius: 2px;
}

body.page-podcast-isablack .player-progress-handle {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: #F5FF66;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s ease;
}

body.page-podcast-isablack .player-progress-bar-wrap:hover .player-progress-handle {
  opacity: 1;
}

/* Equalizador & Volume (Direita) */
body.page-podcast-isablack .spotify-player-right {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 200px;
  justify-content: flex-end;
  flex-shrink: 0;
}

body.page-podcast-isablack .player-equalizer {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 18px;
}

body.page-podcast-isablack .eq-bar {
  width: 3px;
  background: #F5FF66;
  border-radius: 2px;
  animation: eqBounce 1.2s infinite ease-in-out alternate;
}

body.page-podcast-isablack .eq-bar:nth-child(1) { height: 60%; animation-delay: 0.1s; }
body.page-podcast-isablack .eq-bar:nth-child(2) { height: 100%; animation-delay: 0.3s; }
body.page-podcast-isablack .eq-bar:nth-child(3) { height: 40%; animation-delay: 0.2s; }
body.page-podcast-isablack .eq-bar:nth-child(4) { height: 80%; animation-delay: 0.4s; }

body.page-podcast-isablack .player-equalizer.paused .eq-bar {
  animation: none !important;
  height: 4px !important;
  background: rgba(246, 242, 237, 0.3) !important;
}

@keyframes eqBounce {
  0% { height: 20%; }
  100% { height: 100%; }
}

body.page-podcast-isablack .player-volume-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(246, 242, 237, 0.6);
}

body.page-podcast-isablack .vol-bar-wrap {
  width: 70px;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  cursor: pointer;
}

body.page-podcast-isablack .vol-bar-fill {
  height: 100%;
  background: rgba(246, 242, 237, 0.7);
  border-radius: 2px;
}

/* =========================================================
   RESPONSIVIDADE MOBILE DA PÁGINA PODCAST (<900px, <768px, <480px)
   ========================================================= */
@media (max-width: 900px) {
  body.page-podcast-isablack .spotify-show-header-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  body.page-podcast-isablack .spotify-badge-row,
  body.page-podcast-isablack .spotify-show-meta,
  body.page-podcast-isablack .spotify-show-actions {
    justify-content: center;
  }

  body.page-podcast-isablack .spotify-show-desc {
    margin-left: auto;
    margin-right: auto;
  }

  body.page-podcast-isablack .spotify-show-cover {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 768px) {
  body.page-podcast-isablack .podcast-hero-fullscreen {
    height: 60vh !important;
    min-height: 400px !important;
    align-items: flex-end !important;
  }

  body.page-podcast-isablack .podcast-nav {
    padding: 0 20px !important;
  }

  body.page-podcast-isablack .spotify-show-header-section {
    padding: 32px 20px 24px;
  }

  body.page-podcast-isablack .spotify-episodes-main-section {
    padding: 32px 16px;
  }

  /* Episódios no celular estilo Spotify Mobile */
  body.page-podcast-isablack .spotify-ep-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
    padding: 14px;
    border-radius: 10px;
  }

  body.page-podcast-isablack .spotify-ep-cover-wrapper {
    width: 68px;
    height: 68px;
    flex-shrink: 0;
    border-radius: 6px;
  }

  body.page-podcast-isablack .play-svg {
    width: 28px;
    height: 28px;
  }

  body.page-podcast-isablack .spotify-ep-title {
    font-size: 0.95rem !important;
    margin-bottom: 4px;
    line-height: 1.25;
  }

  body.page-podcast-isablack .spotify-ep-header-meta {
    font-size: 0.65rem;
    margin-bottom: 4px;
  }

  body.page-podcast-isablack .spotify-ep-footer {
    padding-top: 6px;
    border-top: none;
  }

  body.page-podcast-isablack .spotify-ep-actions {
    gap: 8px;
  }

  body.page-podcast-isablack .spotify-play-row-btn {
    padding: 5px 14px;
    font-size: 0.65rem;
  }

  body.page-podcast-isablack .spotify-btn-saiba-mais {
    padding: 4px 10px;
    font-size: 0.62rem;
  }

  body.page-podcast-isablack .spotify-gochi-comment {
    display: none; /* Oculta frase no mobile para layout super limpo */
  }

  /* Player Sticky de Rodapé no Celular (Otimização para não vazar e manter controles completos) */
  body.page-podcast-isablack .spotify-sticky-player {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 10px !important;
    height: 64px !important;
    overflow: hidden !important;
    background: rgba(18, 16, 17, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    border-top: 1px solid rgba(222, 125, 160, 0.25) !important;
    z-index: 9999 !important;
  }

  body.page-podcast-isablack .spotify-player-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    gap: 8px !important;
  }

  body.page-podcast-isablack .spotify-player-track {
    width: auto !important;
    max-width: 55% !important;
    flex-shrink: 1 !important;
    gap: 8px !important;
    min-width: 0 !important;
  }

  body.page-podcast-isablack .player-track-img {
    width: 40px !important;
    height: 40px !important;
    border-radius: 4px !important;
    flex-shrink: 0 !important;
  }

  body.page-podcast-isablack .player-track-title {
    display: none !important; /* Oculta título longo no mobile conforme solicitado */
  }

  body.page-podcast-isablack .player-track-sub {
    display: block !important;
    font-size: 0.68rem !important;
    color: #DE7DA0 !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  body.page-podcast-isablack .spotify-player-center {
    flex-shrink: 0 !important;
    margin-left: auto !important;
  }

  body.page-podcast-isablack .player-controls {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
  }

  body.page-podcast-isablack .player-ctrl-btn {
    display: flex !important;
    width: 28px !important;
    height: 28px !important;
    padding: 4px !important;
    background: transparent !important;
    border: none !important;
    color: #F6F2ED !important;
  }

  body.page-podcast-isablack .player-play-main-btn {
    display: flex !important;
    width: 34px !important;
    height: 34px !important;
    flex-shrink: 0 !important;
  }

  body.page-podcast-isablack .player-hide-mobile {
    display: none !important;
  }
}

@media (max-width: 480px) {
  body.page-podcast-isablack .podcast-hero-fullscreen {
    height: 52vh !important;
    min-height: 340px !important;
  }

  body.page-podcast-isablack .spotify-show-title {
    font-size: 1.75rem !important;
  }

  body.page-podcast-isablack .spotify-show-cover {
    width: 140px;
    height: 140px;
  }

  body.page-podcast-isablack .spotify-show-actions {
    flex-direction: column;
    width: 100%;
  }

  body.page-podcast-isablack .spotify-btn-primary,
  body.page-podcast-isablack .spotify-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  body.page-podcast-isablack .spotify-sticky-player {
    height: 64px;
    padding: 0 12px;
  }

  body.page-podcast-isablack .player-track-title {
    font-size: 0.72rem;
  }
}



/* ==========================================
   PORTAL / BLOG ISA BLACK (PAGE-ISABLACK-HUB)
   ========================================== */
body.page-isablack-hub {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

/* Nav do Hub */
body.page-isablack-hub .isablack-hub-nav {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 100 !important;
  background: rgba(18, 16, 17, 0.75) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(222, 125, 160, 0.2);
  padding: 16px 40px !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100% !important;
  box-sizing: border-box !important;
}

body.page-isablack-hub .isablack-nav-brand {
  font-family: 'Syne', sans-serif !important;
  font-size: 1.25rem;
  color: #F6F2ED !important;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

body.page-isablack-hub .isablack-nav-brand strong {
  letter-spacing: 0.1em;
}

body.page-isablack-hub .isablack-nav-brand .nav-subtag {
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.65rem;
  color: #F5FF66 !important;
  background: rgba(245, 255, 102, 0.12);
  padding: 2px 8px;
  border-radius: 2px;
}

body.page-isablack-hub .nav-isablack-pill {
  background: #F5FF66 !important;
  color: #211E1F !important;
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  padding: 10px 20px !important;
  border-radius: 30px !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

body.page-isablack-hub .nav-isablack-pill:hover {
  background: #DE7DA0 !important;
  color: #FFFFFF !important;
}

/* Fullscreen Video Hero (Apenas Vídeo e Nome ISABLACK em destaque, sem botões) */
body.page-isablack-hub .isablack-fullscreen-hero {
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 100vh !important;
  min-height: 100vh !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  background: #121011 !important;
}

body.page-isablack-hub .hero-video-bg {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 1 !important;
  overflow: hidden !important;
}

body.page-isablack-hub .hero-video-bg video {
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
  pointer-events: none !important;
}

body.page-isablack-hub .hero-slider-overlay {
  display: none !important;
}

body.page-isablack-hub .isablack-portal-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 16px !important;
  box-sizing: border-box !important;
}

body.page-isablack-hub .portal-main-title {
  font-family: 'Syne', sans-serif !important;
  font-size: clamp(2rem, 9.5vw, 7rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.06em !important; /* DESTAQUE: Esp. letras -60 (muito justo) */
  color: #FFFFFF !important;
  margin-bottom: 12px;
  line-height: 1.15 !important; /* DESTAQUE: Esp. linhas 1.15 */
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.9);
  text-transform: uppercase !important; /* DESTAQUE: Sempre em caixa alta */
  word-break: normal !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

body.page-isablack-hub .portal-main-sub {
  font-family: 'Azeret Mono', monospace !important;
  font-size: clamp(0.58rem, 1.3vw, 0.82rem) !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important; /* DETALHE: Esp. letras 0 */
  line-height: 1.35 !important; /* DETALHE: Esp. linhas 1.35 */
  color: #F5FF66 !important;
  text-transform: uppercase !important; /* DETALHE: Sempre em caixa alta */
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9);
}

/* Layout Geral das Seções */
body.page-isablack-hub .hub-container {
  max-width: 1200px;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 24px;
}

body.page-isablack-hub .hub-section-tag {
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #DE7DA0;
  margin-bottom: 12px;
  display: block;
  text-transform: uppercase;
}

body.page-isablack-hub .hub-section-title {
  font-family: 'Syne', sans-serif !important;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2;
  color: #111110;
  margin-bottom: 24px;
}

body.page-isablack-hub .hub-section-title em {
  font-style: normal;
  color: #DE7DA0;
}

body.page-isablack-hub .hub-section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 20px;
  flex-wrap: wrap;
}

/* SEÇÃO 1: BIO ISA BLACK */
body.page-isablack-hub .hub-bio-section {
  padding: 110px 0;
  background: #FAFAF8;
}

body.page-isablack-hub .hub-bio-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

body.page-isablack-hub .hub-bio-frame {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

body.page-isablack-hub .hub-bio-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.page-isablack-hub .hub-bio-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(18, 16, 17, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 20px;
  border-radius: 0;
  color: #FFFFFF;
}

body.page-isablack-hub .badge-name {
  font-family: 'Syne', sans-serif !important;
  font-size: 1.1rem;
  font-weight: 700;
  display: block;
}

body.page-isablack-hub .badge-role {
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.65rem;
  color: #DE7DA0;
  display: block;
  margin-top: 2px;
}

body.page-isablack-hub .hub-bio-desc {
  font-size: 0.95rem;
  color: #555550;
  line-height: 1.7;
  margin-bottom: 16px;
}

body.page-isablack-hub .hub-gochi-highlight {
  margin: 24px 0;
  padding-left: 20px;
  border-left: 3px solid #DE7DA0;
}

body.page-isablack-hub .gochi-text {
  font-family: 'Gochi Hand', cursive !important;
  font-size: 1.4rem;
  color: #442030;
}

body.page-isablack-hub .hub-metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

body.page-isablack-hub .metric-box {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 20px 14px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
}

body.page-isablack-hub .metric-box strong {
  font-family: 'Syne', sans-serif !important;
  font-size: 1.7rem;
  font-weight: 800;
  color: #442030;
  display: block;
}

body.page-isablack-hub .metric-box span {
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.6rem;
  color: #777770;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

/* SEÇÃO 2: PODCAST TEASER */
body.page-isablack-hub .hub-podcast-teaser-section {
  background-color: #442030 !important;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.18) 1.5px, transparent 1.5px) !important;
  background-size: 20px 20px !important;
  padding: 100px 0;
  border-top: 1px solid rgba(222, 125, 160, 0.15);
}

body.page-isablack-hub .tag-pink {
  color: #DE7DA0 !important;
}

body.page-isablack-hub .light-text {
  color: #F6F2ED !important;
}

body.page-isablack-hub .em-pink {
  color: #DE7DA0 !important;
  font-style: normal !important;
}

body.page-isablack-hub .pink-btn {
  border: 1px solid #DE7DA0 !important;
  color: #DE7DA0 !important;
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  padding: 12px 24px !important;
  border-radius: 4px !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

body.page-isablack-hub .pink-btn:hover {
  background: #DE7DA0 !important;
  color: #442030 !important;
}

body.page-isablack-hub .hub-episodes-list {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

body.page-isablack-hub .hub-ep-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(222, 125, 160, 0.15);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

body.page-isablack-hub .hub-ep-item:hover {
  background: rgba(222, 125, 160, 0.12);
  border-color: rgba(222, 125, 160, 0.4);
  transform: translateX(6px);
}

body.page-isablack-hub .hub-ep-cover {
  width: 68px;
  height: 68px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}

body.page-isablack-hub .hub-ep-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.page-isablack-hub .hub-ep-info {
  flex: 1;
  min-width: 0;
}

body.page-isablack-hub .hub-ep-tag {
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.62rem;
  color: #DE7DA0;
  letter-spacing: 0.1em;
  display: block;
}

body.page-isablack-hub .hub-ep-title {
  font-family: 'Syne', sans-serif !important;
  font-size: 1.05rem;
  font-weight: 700;
  color: #F6F2ED;
  margin: 4px 0;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.page-isablack-hub .hub-ep-meta {
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.62rem;
  color: rgba(246, 242, 237, 0.5);
  display: block;
}

body.page-isablack-hub .hub-ep-play-btn {
  font-size: 1.2rem;
  color: #DE7DA0;
  flex-shrink: 0;
  transition: transform 0.25s ease, color 0.25s ease;
}

body.page-isablack-hub .hub-ep-item:hover .hub-ep-play-btn {
  transform: scale(1.25);
  color: #F5FF66;
}

/* SEÇÃO 3: ISABLACK ENSINA */
body.page-isablack-hub .hub-courses-teaser-section {
  background: #0D4753;
  padding: 100px 0;
}

body.page-isablack-hub .tag-canary {
  color: #F5FF66 !important;
}

body.page-isablack-hub .em-canary {
  color: #F5FF66 !important;
  font-style: normal !important;
}

body.page-isablack-hub .hub-btn-canary {
  background: #F5FF66;
  color: #0D4753;
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

body.page-isablack-hub .hub-btn-canary:hover {
  background: #FFFFFF;
  transform: translateY(-2px);
}

body.page-isablack-hub .hub-courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

body.page-isablack-hub .hub-course-card {
  background: rgba(246, 242, 237, 0.05);
  border: 1px solid rgba(245, 255, 102, 0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

body.page-isablack-hub .hub-course-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 255, 102, 0.5);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

body.page-isablack-hub .hub-course-img-wrap {
  height: 190px;
  overflow: hidden;
}

body.page-isablack-hub .hub-course-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

body.page-isablack-hub .hub-course-card:hover .hub-course-img-wrap img {
  transform: scale(1.08);
}

body.page-isablack-hub .hub-course-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

body.page-isablack-hub .hub-course-badge {
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.6rem;
  color: #F5FF66;
  letter-spacing: 0.15em;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

body.page-isablack-hub .hub-course-title {
  font-family: 'Syne', sans-serif !important;
  font-size: 1.15rem;
  font-weight: 800;
  color: #F6F2ED;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1.25;
}

body.page-isablack-hub .hub-course-desc {
  font-size: 0.82rem;
  color: rgba(246, 242, 237, 0.7);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

body.page-isablack-hub .hub-course-link {
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.7rem;
  color: #F5FF66;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.1em;
  align-self: flex-start;
}

/* SEÇÃO 4: BLOG DE ARTIGOS */
body.page-isablack-hub .hub-blog-section {
  padding: 100px 0;
  background: #FAFAF8;
}

body.page-isablack-hub .hub-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

body.page-isablack-hub .blog-post-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

body.page-isablack-hub .blog-post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

body.page-isablack-hub .post-image-wrap {
  height: 200px;
  position: relative;
  overflow: hidden;
}

body.page-isablack-hub .post-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

body.page-isablack-hub .blog-post-card:hover .post-image-wrap img {
  transform: scale(1.08);
}

body.page-isablack-hub .post-category-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(18, 16, 17, 0.85);
  color: #DE7DA0;
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 4px;
  backdrop-filter: blur(8px);
}

body.page-isablack-hub .post-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

body.page-isablack-hub .post-date {
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.62rem;
  color: #888880;
  margin-bottom: 8px;
  display: block;
}

body.page-isablack-hub .post-title {
  font-family: 'Syne', sans-serif !important;
  font-size: 1.1rem;
  font-weight: 700;
  color: #111110;
  margin-bottom: 10px;
  line-height: 1.35;
}

body.page-isablack-hub .post-excerpt {
  font-size: 0.85rem;
  color: #666660;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

body.page-isablack-hub .post-read-more {
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.68rem;
  font-weight: 700;
  color: #442030;
  text-decoration: none;
  letter-spacing: 0.08em;
  align-self: flex-start;
  border-bottom: 1px solid #442030;
  padding-bottom: 2px;
}

/* SEÇÃO 5: MARCAS & PARCEIROS */
body.page-isablack-hub .hub-partners-section {
  background: #0A090A;
  padding: 110px 0;
  color: #FFFFFF;
}

body.page-isablack-hub .partners-header {
  text-align: center;
  margin-bottom: 60px;
}

body.page-isablack-hub .partners-tag {
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: #F5FF66;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

body.page-isablack-hub .partners-title {
  font-family: 'Syne', sans-serif !important;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 16px;
}

body.page-isablack-hub .partners-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
}

body.page-isablack-hub .partners-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

body.page-isablack-hub .partner-metric-box {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 28px 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
}

body.page-isablack-hub .metric-num {
  font-family: 'Syne', sans-serif !important;
  font-size: 2.4rem;
  font-weight: 800;
  color: #F5FF66;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

body.page-isablack-hub .metric-label {
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.page-isablack-hub .partners-brand-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}

body.page-isablack-hub .brand-item-card {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 24px 12px;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.3s ease;
}

body.page-isablack-hub .brand-item-card:hover {
  border-color: #F5FF66;
  transform: translateY(-4px);
  background: rgba(245, 255, 102, 0.05);
}

body.page-isablack-hub .brand-name {
  font-family: 'Syne', sans-serif !important;
  font-size: 0.9rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

body.page-isablack-hub .brand-type {
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.52rem;
  color: #F5FF66;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.page-isablack-hub .partners-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

body.page-isablack-hub .testimonial-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

body.page-isablack-hub .testimonial-quote {
  font-family: 'Gochi Hand', cursive !important;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin-bottom: 24px;
}

body.page-isablack-hub .testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

body.page-isablack-hub .author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif !important;
  font-size: 0.9rem;
  font-weight: 800;
}

body.page-isablack-hub .avatar-pink {
  background: #442030;
  color: #DE7DA0;
}

body.page-isablack-hub .avatar-teal {
  background: #0D4753;
  color: #F5FF66;
}

body.page-isablack-hub .author-name {
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.72rem;
  color: #FFFFFF;
  font-weight: 700;
}

body.page-isablack-hub .author-role {
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.6);
}

/* =========================================================
   CARROSSEIS SLIDERS (CURSOS, BLOG E DEPOIMENTOS)
   ========================================================= */
.hub-carousel-wrapper {
  display: flex !important;
  gap: 24px !important;
  overflow-x: auto !important;
  scroll-snap-type: none !important;
  scroll-behavior: smooth !important;
  -webkit-overflow-scrolling: touch !important;
  padding: 10px 4px 20px 4px !important;
  scrollbar-width: none !important;
}

.hub-carousel-wrapper::-webkit-scrollbar {
  display: none !important;
}

.carousel-item {
  flex: 0 0 calc(33.333% - 16px) !important;
  min-width: 300px !important;
  scroll-snap-align: start !important;
  box-sizing: border-box !important;
}

.carousel-nav-btns {
  display: flex;
  align-items: center;
  gap: 10px;
}

.carousel-arrow-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.carousel-arrow-btn:hover {
  background: #F5FF66;
  color: #111110;
  border-color: #F5FF66;
  transform: scale(1.08);
}

.carousel-arrow-btn.dark-arrow {
  background: rgba(18, 16, 17, 0.08);
  border-color: rgba(18, 16, 17, 0.2);
  color: #111110;
}

.carousel-arrow-btn.dark-arrow:hover {
  background: #442030;
  color: #DE7DA0;
  border-color: #442030;
}

.testimonials-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 56px;
  margin-bottom: 24px;
}

/* Ações dos Cursos (Saiba mais & Inscreva-se) */
.hub-course-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.btn-course-action {
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.65rem !important;
  font-weight: 700 !important;
  padding: 10px 16px !important;
  border-radius: 4px !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  transition: all 0.25s ease !important;
  display: inline-block !important;
}

.btn-course-action.primary-canary {
  background: #F5FF66 !important;
  color: #0D4753 !important;
}

.btn-course-action.primary-canary:hover {
  background: #FFFFFF !important;
  transform: translateY(-2px) !important;
}

.btn-course-action.secondary-canary {
  border: 1px solid #F5FF66 !important;
  color: #F5FF66 !important;
}

.btn-course-action.secondary-canary:hover {
  background: rgba(245, 255, 102, 0.15) !important;
  transform: translateY(-2px) !important;
}

@media (max-width: 900px) {
  .carousel-item {
    flex: 0 0 84vw !important;
    min-width: 260px !important;
  }
}

/* RODAPÉ BRANCO TOTAL */
footer,
.footer,
.isablack-hub-footer,
.footer-inner,
.footer-logo,
.footer-hub-links a,
.footer-copy,
.footer-bottom-mini p {
  color: #FFFFFF !important;
  opacity: 1 !important;
}

/* SEÇÃO 6: BANNER TEASER DO ESCRITÓRIO 3A DESIGN */
body.page-isablack-hub .hub-office-teaser-banner {
  padding: 90px 24px;
  background: linear-gradient(135deg, #181617 0%, #2a2226 100%);
  border-top: 1px solid rgba(222, 125, 160, 0.2);
  text-align: center;
  color: #FFFFFF;
}

body.page-isablack-hub .office-banner-inner {
  max-width: 760px;
  margin: 0 auto;
}

body.page-isablack-hub .office-banner-tag {
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.7rem;
  color: #DE7DA0;
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 16px;
}

body.page-isablack-hub .office-banner-inner h2 {
  font-family: 'Syne', sans-serif !important;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.25;
}

body.page-isablack-hub .office-banner-inner p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  line-height: 1.6;
}

body.page-isablack-hub .btn-office-action {
  display: inline-block;
  background: #DE7DA0;
  color: #181617;
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.12em;
  transition: all 0.3s ease;
}

body.page-isablack-hub .btn-office-action:hover {
  background: #F5FF66;
  color: #181617;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(245, 255, 102, 0.25);
}

/* RESPONSIVIDADE MOBILE DO PORTAL ISABLACK */
@media (max-width: 900px) {
  body.page-isablack-hub .hub-bio-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  body.page-isablack-hub .hub-courses-grid,
  body.page-isablack-hub .hub-blog-grid,
  body.page-isablack-hub .partners-testimonials-grid {
    grid-template-columns: 1fr;
  }

  body.page-isablack-hub .partners-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  body.page-isablack-hub .partners-brand-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  body.page-isablack-hub .hub-metrics-row {
    grid-template-columns: 1fr;
  }

  body.page-isablack-hub .partners-brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================
   VINHETA DE TRANSIÇÃO CINEMÁTICA ISABLACK
   ========================================== */
.isablack-vignette {
  position: fixed !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100vh !important;
  background: #211E1F !important;
  z-index: 999999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-direction: column !important;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.isablack-vignette.active {
  opacity: 1 !important;
  pointer-events: all !important;
}

.vignette-content {
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.vignette-brand {
  font-family: 'Syne', sans-serif !important;
  font-size: clamp(2.5rem, 6vw, 4.5rem) !important;
  font-weight: 800 !important;
  letter-spacing: 0.25em !important;
  color: #F6F2ED !important;
  margin-bottom: 12px !important;
  animation: vignettePulse 1.2s ease-in-out infinite alternate !important;
}

.vignette-sub {
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.2em !important;
  color: #F5FF66 !important;
  /* Canary Yellow */
  margin-bottom: 30px !important;
}

.vignette-progress-line {
  width: 180px !important;
  height: 3px !important;
  background: rgba(246, 242, 237, 0.15) !important;
  border-radius: 3px !important;
  overflow: hidden !important;
  position: relative !important;
}

.vignette-progress-line::after {
  content: '' !important;
  position: absolute !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: #F5FF66 !important;
  animation: vignetteProgress 1.4s infinite !important;
}

@keyframes vignettePulse {
  0% {
    opacity: 0.7;
    transform: scale(0.98);
  }

  100% {
    opacity: 1;
    transform: scale(1.02);
  }
}

@keyframes vignetteProgress {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

/* ==========================================
   SEÇÃO DE PARCERIAS ISABLACK
   ========================================== */
body.page-isablack-hub .hub-partners-section {
  background: #1A1819 !important;
  padding: 100px 0 !important;
  border-top: 1px solid rgba(246, 242, 237, 0.05);
  border-bottom: 1px solid rgba(246, 242, 237, 0.05);
}

body.page-isablack-hub .hub-partners-desc {
  font-size: 0.95rem;
  color: rgba(246, 242, 237, 0.7);
  max-width: 580px;
  margin: 16px auto 0;
  line-height: 1.6;
}

body.page-isablack-hub .hub-partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 48px;
}

body.page-isablack-hub .partner-card {
  background: #211E1F;
  border: 1px solid rgba(246, 242, 237, 0.06);
  border-radius: 12px;
  padding: 32px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body.page-isablack-hub .partner-card:hover {
  transform: translateY(-6px);
  border-color: #F5FF66;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

body.page-isablack-hub .partner-logo-box {
  font-family: 'Syne', sans-serif !important;
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.15em !important;
  color: #F6F2ED !important;
  margin-bottom: 8px;
}

body.page-isablack-hub .partner-type {
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.58rem !important;
  letter-spacing: 0.12em !important;
  color: #F5FF66 !important;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  body.page-isablack-hub .hub-partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  body.page-isablack-hub .hub-partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================
   CONFIGURAÇÕES GLOBAIS DE RESPONSIVIDADE MOBILE E TABLET
   ========================================== */
html,
body {
  max-width: 100% !important;
  overflow-x: hidden !important;
}

/* HAMBURGER TOGGLE STYLING (BOTÃO DO MENU MOBILE) */
.nav-toggle {
  width: 44px !important;
  height: 44px !important;
  display: none;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
  background: transparent !important;
  border: none !important;
  cursor: pointer !important;
  z-index: 100005 !important;
  padding: 0 !important;
  position: relative !important;
}

/* =========================================================
   CONTRASTE PERFEITO DOS 3 RISQUINHOS DO HAMBÚRGUER (MOBILE)
   ========================================================= */

.nav-toggle span {
  display: block !important;
  width: 26px !important;
  height: 2px !important;
  border-radius: 2px !important;
  transition: all 0.3s ease !important;
}



/* AMPLIAÇÃO 5X DA LOGO NA VINHETA E NO LOADER DO PODCAST */
body.page-podcast-isablack .logo-loader-img,
.vignette-logo-img {
  height: clamp(200px, 40vh, 350px) !important;
  width: auto !important;
  max-width: 90vw !important;
  object-fit: contain !important;
  filter: brightness(0) invert(1) drop-shadow(0 15px 35px rgba(0, 0, 0, 0.7)) !important;
}

body.page-podcast-isablack .loader-logo {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 30px !important;
}

/* =========================================================
   ULTRA-MINIMALIST MOBILE DRAWER (ONLY TABS & CLOSE BUTTON)
   ========================================================= */
/* =========================================================
   MENU SUSPENSO MOBILE MINIMALISTA (DESCE DO TOPO)
   ========================================================= */
.nav-mobile {
  position: fixed !important;
  top: 76px !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: auto !important;
  max-height: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important;
  z-index: 99999 !important;
  background: rgba(18, 16, 17, 0.97) !important;
  backdrop-filter: blur(25px) !important;
  -webkit-backdrop-filter: blur(25px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important;
  transform: translateY(-12px) !important;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1), 
              opacity 0.35s ease, 
              transform 0.35s ease !important;
}

body.page-escritorio .nav-mobile {
  top: 64px !important;
  background: rgba(250, 248, 245, 0.98) !important;
  border-bottom: 1px solid rgba(33, 30, 31, 0.1) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
}

.nav-mobile.open {
  max-height: calc(100vh - 70px) !important;
  opacity: 1 !important;
  pointer-events: all !important;
  transform: translateY(0) !important;
  overflow-y: auto !important;
}

.nav-mobile-inner {
  width: 100% !important;
  max-width: 520px !important;
  margin: 0 auto !important;
  padding: 20px 20px 24px 20px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  box-sizing: border-box !important;
  height: auto !important;
}

.nav-mobile-top {
  display: none !important;
}

.nav-mobile-links {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  width: 100% !important;
}

.nav-mobile-link,
.nav-mobile a {
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.76rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  color: #F6F2ED !important;
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 14px 18px !important;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  transition: all 0.25s ease !important;
  box-sizing: border-box !important;
}

body.page-escritorio .nav-mobile-link,
body.page-escritorio .nav-mobile a {
  color: #211E1F !important;
  background: #FFFFFF !important;
  border: 1px solid rgba(33, 30, 31, 0.08) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03) !important;
}

.nav-mobile-link::before,
.nav-mobile a::before {
  content: none !important;
  display: none !important;
}

.nav-link-num {
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.7rem !important;
  font-weight: 800 !important;
  margin-right: 12px !important;
  flex-shrink: 0 !important;
  color: rgba(255, 255, 255, 0.4) !important; /* Default sutil */
}

/* Cores específicas dos números por página no celular */
body.page-isablack .nav-link-num,
body.page-isablack-hub .nav-link-num {
  color: #C5A059 !important; /* Dourado */
}

body.page-podcast-isablack .nav-link-num {
  color: #DE7DA0 !important; /* Petal Rouge */
}

body.page-ensina-isablack .nav-link-num {
  color: #F5FF66 !important; /* Canary Yellow */
}

body.page-escritorio .nav-link-num {
  color: #777773 !important; /* Cinza Muted */
}

.nav-link-text {
  flex-grow: 1 !important;
  text-transform: uppercase !important;
}

.nav-link-arrow {
  width: 16px !important;
  height: 16px !important;
  stroke: rgba(246, 242, 237, 0.5) !important;
  transition: transform 0.25s ease, stroke 0.25s ease !important;
  flex-shrink: 0 !important;
}

body.page-escritorio .nav-link-arrow {
  stroke: rgba(33, 30, 31, 0.4) !important;
}

/* --- ESTILOS DE INTERAÇÃO DO DRAWER MOBILE POR PÁGINA --- */

/* 1. Portal ISABLACK (Foco em Dourado #C5A059) */
body.page-isablack .nav-mobile-link:hover,
body.page-isablack .nav-mobile-link.active,
body.page-isablack-hub .nav-mobile-link:hover,
body.page-isablack-hub .nav-mobile-link.active {
  background: rgba(197, 160, 89, 0.1) !important;
  border-color: rgba(197, 160, 89, 0.4) !important;
  color: #C5A059 !important;
  transform: translateY(-1px) !important;
}
body.page-isablack .nav-mobile-link:hover .nav-link-arrow,
body.page-isablack .nav-mobile-link.active .nav-link-arrow,
body.page-isablack-hub .nav-mobile-link:hover .nav-link-arrow,
body.page-isablack-hub .nav-mobile-link.active .nav-link-arrow {
  stroke: #C5A059 !important;
  transform: translateX(4px) !important;
}

/* 2. Podcast (Foco em Petal Rouge #DE7DA0 e Fundo Violet #442030) */
body.page-podcast-isablack .nav-mobile {
  background: #442030 !important;
  border-bottom: 2px solid #DE7DA0 !important;
}
body.page-podcast-isablack .nav-mobile-link {
  color: #FDFBF7 !important;
  border-bottom: 1px solid rgba(222, 125, 160, 0.15) !important;
}
body.page-podcast-isablack .nav-mobile-link .nav-link-arrow {
  stroke: rgba(253, 251, 247, 0.5) !important;
}
body.page-podcast-isablack .nav-mobile-link:hover,
body.page-podcast-isablack .nav-mobile-link.active {
  background: rgba(222, 125, 160, 0.12) !important;
  border-color: rgba(222, 125, 160, 0.4) !important;
  color: #DE7DA0 !important;
  transform: translateY(-1px) !important;
}
body.page-podcast-isablack .nav-mobile-link:hover .nav-link-arrow,
body.page-podcast-isablack .nav-mobile-link.active .nav-link-arrow {
  stroke: #DE7DA0 !important;
  transform: translateX(4px) !important;
}

/* 3. Cursos / Ensina (Foco em Canary Yellow #F5FF66 e Fundo Dark Teal #0D4753) */
body.page-ensina-isablack .nav-mobile {
  background: #0D4753 !important;
  border-bottom: 2px solid #F5FF66 !important;
}
body.page-ensina-isablack .nav-mobile-link {
  color: #FFFFFF !important;
  border-bottom: 1px solid rgba(245, 255, 102, 0.15) !important;
}
body.page-ensina-isablack .nav-mobile-link .nav-link-arrow {
  stroke: rgba(255, 255, 255, 0.5) !important;
}
body.page-ensina-isablack .nav-mobile-link:hover,
body.page-ensina-isablack .nav-mobile-link.active {
  background: rgba(245, 255, 102, 0.1) !important;
  border-color: rgba(245, 255, 102, 0.4) !important;
  color: #F5FF66 !important;
  transform: translateY(-1px) !important;
}
body.page-ensina-isablack .nav-mobile-link:hover .nav-link-arrow,
body.page-ensina-isablack .nav-mobile-link.active .nav-link-arrow {
  stroke: #F5FF66 !important;
  transform: translateX(4px) !important;
}

/* 4. Escritório Principal (Preto, Branco, Cinza) */
body.page-escritorio .nav-mobile-link:hover,
body.page-escritorio .nav-mobile-link.active {
  background: #211E1F !important;
  color: #F6F2ED !important;
  transform: translateY(-1px) !important;
}
body.page-escritorio .nav-mobile-link:hover .nav-link-text,
body.page-escritorio .nav-mobile-link.active .nav-link-text {
  color: #F6F2ED !important;
}
body.page-escritorio .nav-mobile-link:hover .nav-link-arrow,
body.page-escritorio .nav-mobile-link.active .nav-link-arrow {
  stroke: #F6F2ED !important;
  transform: translateX(4px) !important;
}

.nav-mobile-footer,
.nav-mobile-header {
  display: none !important;
}

.nav-footer-tag {
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.65rem !important;
  color: rgba(246, 242, 237, 0.5) !important;
  letter-spacing: 0.12em !important;
  font-weight: 500 !important;
}

.nav-footer-quote {
  font-family: 'Gochi Hand', cursive !important;
  font-size: 1.25rem !important;
  color: #F5FF66 !important;
  margin-bottom: 4px !important;
}

.nav-footer-copy {
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.58rem !important;
  color: rgba(246, 242, 237, 0.35) !important;
}

@media (max-width: 1024px) {

  .nav-links,
  .podcast-nav .nav-links,
  .nav-isablack-pill,
  .btn-portal-back {
    display: none !important;
  }

  .nav-toggle,
  .podcast-nav .nav-toggle {
    display: flex !important;
    position: relative !important;
    z-index: 100005 !important;
  }

  /* REESTRUTURAÇÃO HERO ISABLACK ENSINA (minicursos.html) */
  body.page-ensina-isablack .ensina-hero-split {
    height: auto !important;
    min-height: auto !important;
    padding: 110px 20px 50px !important;
  }

  body.page-ensina-isablack .ensina-hero-split-container {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  body.page-ensina-isablack .ensina-hero-left {
    padding: 0 !important;
    align-items: center !important;
    text-align: center !important;
  }

  body.page-ensina-isablack .logoensina2-hero-img {
    max-width: 320px !important;
    margin: 0 auto 20px !important;
  }

  body.page-ensina-isablack .ensina-hero-right-image {
    height: 280px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
  }

  /* AJUSTE HERO PODCAST (podcast.html) - ANCORAGEM PERFEITA NA DIVISA INFERIOR */
  body.page-podcast-isablack .podcast-hero-fullscreen {
    height: 60vh !important;
    min-height: 380px !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: flex-end !important;
  }

  body.page-podcast-isablack .podcast-transparent-slider,
  body.page-podcast-isablack .podcast-hero-center-content {
    max-width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: flex-end !important;
  }

  body.page-podcast-isablack .podcast-slide-img img,
  body.page-podcast-isablack .podcast-transparent-slider .podcast-slide-img img {
    object-position: center bottom !important;
    object-fit: contain !important;
    bottom: 0 !important;
    margin-bottom: 0 !important;
  }
}

.mobile-only-break {
  display: none;
}

@media (max-width: 640px) {

  /* ===== VINHETA AUTO-AJUSTÁVEL MÓVEL ===== */
  .isablack-vignette .vignette-brand {
    font-size: 1.8rem !important;
    letter-spacing: 0.15em !important;
    margin-bottom: 8px !important;
  }

  .isablack-vignette .vignette-sub {
    font-size: 0.58rem !important;
    letter-spacing: 0.1em !important;
  }

  .isablack-vignette .vignette-progress-line {
    width: 120px !important;
    height: 2px !important;
  }

  /* ===== PORTAL ISABLACK CENTRALIZAÇÃO GERAL MOBILE ===== */
  body.page-isablack-hub,
  body.page-isablack-hub main,
  body.page-isablack-hub .hub-bio-section {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
  }

  body.page-isablack-hub .hub-container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
    margin: 0 auto !important;
    overflow: hidden !important;
  }

  body.page-isablack-hub .hub-bio-section {
    padding: 60px 0 !important;
  }

  body.page-isablack-hub .hub-bio-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 36px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 auto !important;
  }

  body.page-isablack-hub .hub-bio-image-col {
    width: 100% !important;
    max-width: 360px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }

  body.page-isablack-hub .hub-bio-frame {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  body.page-isablack-hub .hub-bio-badge {
    left: 10px !important;
    right: 10px !important;
    bottom: 10px !important;
    padding: 12px 14px !important;
    box-sizing: border-box !important;
    text-align: center !important;
  }

  body.page-isablack-hub .hub-bio-text-col {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  body.page-isablack-hub .hub-section-tag {
    margin: 0 auto 12px auto !important;
    text-align: center !important;
    display: inline-block !important;
  }

  body.page-isablack-hub .hub-section-title {
    text-align: center !important;
    margin: 0 auto 16px auto !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    font-size: clamp(1.4rem, 6.5vw, 2.2rem) !important;
    line-height: 1.25 !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }

  body.page-isablack-hub .hub-bio-desc {
    text-align: center !important;
    margin: 0 auto 14px auto !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    font-size: 0.88rem !important;
    line-height: 1.6 !important;
  }

  body.page-isablack-hub .hub-gochi-highlight {
    border-left: none !important;
    border-bottom: 2px solid #DE7DA0 !important;
    padding: 0 0 10px 0 !important;
    margin: 18px auto !important;
    text-align: center !important;
    max-width: 95% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  body.page-isablack-hub .gochi-text {
    font-size: 1.2rem !important;
    text-align: center !important;
    display: block !important;
    width: 100% !important;
  }

  body.page-isablack-hub .hub-metrics-row {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin: 24px auto 0 auto !important;
  }

  body.page-isablack-hub .metric-box {
    padding: 12px 4px !important;
    box-sizing: border-box !important;
    width: 100% !important;
  }

  body.page-isablack-hub .metric-box strong {
    font-size: 1.15rem !important;
  }

  body.page-isablack-hub .metric-box span {
    font-size: 0.52rem !important;
    letter-spacing: 0 !important;
    line-height: 1.2 !important;
  }

  body.page-isablack-hub .hub-bio-frame img,
  body.page-isablack-hub .hub-bio-image-col {
    margin: 0 auto !important;
  }

  /* ===== PORTAL ISABLACK HERO MOBILE (isablack.html) ===== */
  body.page-isablack-hub .isablack-fullscreen-hero {
    height: 100vh !important;
    min-height: 580px !important;
  }

  body.page-isablack-hub .isablack-portal-content {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 0 16px !important;
    margin-top: 40px !important;
  }

  body.page-isablack-hub .portal-main-title {
    font-size: clamp(1.6rem, 12.5vw, 3.8rem) !important;
    letter-spacing: -0.06em !important;
    line-height: 1.15 !important;
    margin-bottom: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    word-break: normal !important;
    padding: 0 4px !important;
    width: 100% !important;
    text-align: center !important;
  }

  .mobile-only-break {
    display: block !important;
  }

  body.page-isablack-hub .portal-main-sub {
    display: none !important;
  }

  /* ===== PODCAST SPOTIFY LIST MOBILE (podcast.html) ===== */
  body.page-podcast-isablack .spotify-ep-row {
    flex-direction: row !important;
    align-items: center !important;
    padding: 14px 10px !important;
    gap: 12px !important;
  }

  body.page-podcast-isablack .spotify-ep-cover {
    width: 80px !important;
    height: 80px !important;
    flex-shrink: 0 !important;
    border-radius: 6px !important;
  }

  body.page-podcast-isablack .spotify-ep-cover img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  body.page-podcast-isablack .spotify-ep-details {
    flex-grow: 1 !important;
    width: auto !important;
  }

  body.page-podcast-isablack .spotify-ep-title {
    font-size: 0.9rem !important;
    line-height: 1.25 !important;
    margin-bottom: 4px !important;
  }

  body.page-podcast-isablack .spotify-ep-description {
    display: none !important;
  }

  body.page-podcast-isablack .spotify-ep-bottom {
    margin-top: 6px !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
  }

  body.page-podcast-isablack .spotify-mini-play-btn {
    padding: 5px 12px !important;
    font-size: 0.58rem !important;
  }

  body.page-podcast-isablack .spotify-ep-duration,
  body.page-podcast-isablack .spotify-ep-badge {
    font-size: 0.58rem !important;
  }

  body.page-podcast-isablack .spotify-gochi-comment {
    display: none !important;
  }

  /* ===== ISABLACK ENSINA TESTIMONIALS MOBILE (minicursos.html) ===== */
  body.page-ensina-isablack .testimonials-carousel {
    min-height: 220px !important;
  }

  body.page-ensina-isablack .testimonial-slide {
    padding: 0 10px !important;
  }

  body.page-ensina-isablack .testimonial-quote {
    font-size: 1.15rem !important;
    line-height: 1.5 !important;
    margin-bottom: 16px !important;
  }

  body.page-ensina-isablack .testimonial-author {
    font-size: 0.72rem !important;
  }

  body.page-ensina-isablack .testimonial-role {
    font-size: 0.65rem !important;
  }
}

/* ESTILO DO BOTÃO CONHEÇA O ISABLACK NO DRAWER MOBILE */
.nav-mobile-isablack-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #DE7DA0 !important;
  color: #FFFFFF !important;
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  padding: 14px 20px !important;
  border-radius: 30px !important;
  text-decoration: none !important;
  margin-top: 24px !important;
  box-shadow: 0 4px 15px rgba(222, 125, 160, 0.3) !important;
  transition: all 0.3s ease !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.nav-mobile-isablack-btn:hover {
  background: #F5FF66 !important;
  color: #211E1F !important;
}

/* ===================================================
   CORREÇÕES PROFISSIONAIS PARA MOBILE — FINAL DO CSS
   =================================================== */

@media (max-width: 768px) {

  /* --- SEÇÃO QUEM SOMOS (3A DESIGN): IMAGEM PRIMEIRO, TEXTO DEPOIS --- */
  .about-split-reference {
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
    gap: 0 !important;
  }

  .about-split-left {
    order: 1 !important; /* IMAGEM EM PRIMEIRO LUGAR NO CELULAR */
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }

  .about-split-left img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center top !important;
    border-radius: 0 !important;
    display: block !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }

  .about-split-right {
    order: 2 !important; /* TEXTO ABAIXO DA IMAGEM */
    width: 100% !important;
    max-width: 100% !important;
    padding: 50px 20px !important;
  }

  /* --- ISABLACK HERO: BOTÕES MENORES E MINIMALISTAS --- */
  .portal-main-title {
    font-size: clamp(2.8rem, 14vw, 4.5rem) !important;
    margin-bottom: 28px !important;
  }

  .portal-primary-actions {
    flex-direction: column !important;
    width: 100% !important;
    max-width: 280px !important;
    gap: 10px !important;
    margin: 0 auto 24px !important;
  }

  .portal-btn-clean {
    width: 100% !important;
    min-width: unset !important;
    padding: 13px 20px !important;
    font-size: 0.68rem !important;
    letter-spacing: 0.08em !important;
    box-sizing: border-box !important;
    border-radius: 3px !important;
  }

  /* --- PODCAST EPISODES: SPOTIFY MOBILE STYLE ---
     Layout compacto: capa quadrada à esq + info à direita
     Fundo escuro marrom/vinho unificado como no Spotify
  */
  body.page-podcast-isablack .podcast-episodes-section {
    padding: 40px 0 60px !important;
    background: #1a0e13 !important;
  }

  body.page-podcast-isablack .episodes-container {
    max-width: 100% !important;
    padding: 0 !important;
  }

  body.page-podcast-isablack .episodes-header-spotify {
    padding: 0 16px 16px !important;
    margin-bottom: 8px !important;
  }

  body.page-podcast-isablack .episodes-main-heading {
    font-size: 1.6rem !important;
  }

  body.page-podcast-isablack .spotify-episodes-list {
    gap: 0 !important;
  }

  body.page-podcast-isablack .spotify-ep-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 12px 16px !important;
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(222, 125, 160, 0.08) !important;
    border-radius: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  body.page-podcast-isablack .spotify-ep-row:hover {
    background: rgba(68, 32, 48, 0.5) !important;
  }

  body.page-podcast-isablack .spotify-ep-cover {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    flex-shrink: 0 !important;
    border-radius: 4px !important;
    overflow: hidden !important;
  }

  body.page-podcast-isablack .spotify-ep-cover img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  body.page-podcast-isablack .spotify-ep-details {
    flex: 1 !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
    overflow: hidden !important;
  }

  body.page-podcast-isablack .spotify-ep-meta {
    font-size: 0.6rem !important;
    margin-bottom: 2px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  body.page-podcast-isablack .spotify-ep-title {
    font-size: 0.88rem !important;
    line-height: 1.25 !important;
    margin-bottom: 4px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  body.page-podcast-isablack .spotify-ep-description {
    display: none !important;
  }

  body.page-podcast-isablack .spotify-ep-bottom {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin-top: 4px !important;
    flex-wrap: nowrap !important;
    overflow: hidden !important;
  }

  body.page-podcast-isablack .spotify-mini-play-btn {
    padding: 4px 10px !important;
    font-size: 0.55rem !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
  }

  body.page-podcast-isablack .spotify-ep-duration {
    font-size: 0.6rem !important;
    white-space: nowrap !important;
  }

  body.page-podcast-isablack .spotify-ep-badge {
    font-size: 0.55rem !important;
    padding: 2px 6px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    max-width: 70px !important;
    text-overflow: ellipsis !important;
  }

  body.page-podcast-isablack .spotify-gochi-comment {
    display: none !important;
  }

  /* Player de áudio compacto */
  body.page-podcast-isablack .podcast-featured-player-section {
    padding: 30px 16px !important;
  }

  body.page-podcast-isablack .podcast-audio-card {
    padding: 16px !important;
  }

  body.page-podcast-isablack .podcast-audio-info {
    gap: 12px !important;
    margin-bottom: 16px !important;
  }

  body.page-podcast-isablack .audio-mic-icon {
    width: 44px !important;
    height: 44px !important;
    font-size: 1.6rem !important;
    flex-shrink: 0 !important;
  }

  body.page-podcast-isablack .audio-ep-name {
    font-size: 0.95rem !important;
  }

  body.page-podcast-isablack .audio-ep-meta {
    font-size: 0.65rem !important;
  }

  body.page-podcast-isablack .audio-controls-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }

  body.page-podcast-isablack .audio-buttons {
    width: 100% !important;
    justify-content: space-between !important;
  }

  body.page-podcast-isablack .btn-audio-ctrl,
  body.page-podcast-isablack .btn-audio-play {
    flex: 1 !important;
    text-align: center !important;
    font-size: 0.65rem !important;
    padding: 8px 12px !important;
  }

  body.page-podcast-isablack .podcast-gochi-quote {
    display: none !important;
  }

  body.page-podcast-isablack .podcast-hero-fullscreen {
    height: 55vh !important;
    min-height: 320px !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: flex-end !important;
  }

  body.page-podcast-isablack .podcast-transparent-slider {
    min-height: 260px !important;
    height: 100% !important;
    display: flex !important;
    align-items: flex-end !important;
  }

  /* --- ISABLACK PORTAL: PARCERIAS E CURSOS RESPONSIVOS --- */
  body.page-isablack-portal #parcerias div[style*="grid-template-columns:repeat(4,1fr)"],
  #parcerias div[style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    margin-bottom: 40px !important;
  }

  body.page-isablack-portal #parcerias div[style*="grid-template-columns:repeat(6,1fr)"],
  #parcerias div[style*="grid-template-columns:repeat(6,1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .hub-courses-teaser-section div[style*="grid-template-columns: repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}

/* =========================================================
   CARROSSEL MOBILE: 2 CARDS LADO A LADO EM DISPOSITIVOS MÓVEIS
   ========================================================= */
@media (max-width: 768px) {
  body.page-isablack-hub .hub-carousel-wrapper {
    gap: 16px !important;
    padding: 10px 16px 24px 16px !important;
  }

  body.page-isablack-hub .carousel-item {
    flex: 0 0 82vw !important;
    width: 82vw !important;
    max-width: 330px !important;
    min-width: 260px !important;
    box-sizing: border-box !important;
  }

  body.page-isablack-hub .hub-course-img-wrap,
  body.page-isablack-hub .post-image-wrap {
    height: 160px !important;
  }

  body.page-isablack-hub .hub-course-content,
  body.page-isablack-hub .post-content {
    padding: 20px 16px !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
  }

  body.page-isablack-hub .hub-course-title,
  body.page-isablack-hub .post-title {
    font-size: 0.95rem !important;
    letter-spacing: -0.02em !important;
    line-height: 1.25 !important;
    margin-bottom: 8px !important;
    text-transform: uppercase !important;
  }

  body.page-isablack-hub .hub-course-desc,
  body.page-isablack-hub .post-excerpt {
    display: block !important;
    font-size: 0.76rem !important;
    line-height: 1.5 !important;
    margin-bottom: 16px !important;
    flex-grow: 1 !important;
  }

  body.page-isablack-hub .testimonial-quote {
    font-size: 0.68rem !important;
    line-height: 1.35 !important;
    margin-bottom: 10px !important;
  }

  /* PARCERIAS CENTRALIZADO ABSOLUTO MOBILE: 2 LOGOS LADO A LADO */
  body.page-isablack-hub .hub-partners-section,
  .hub-partners-section,
  #parcerias {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
    padding: 50px 0 !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  body.page-isablack-hub .partners-header,
  .partners-header {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    margin: 0 auto 28px auto !important;
    padding: 0 16px !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  body.page-isablack-hub .partners-brand-grid,
  body.page-isablack-hub .hub-partners-grid,
  .partners-brand-grid,
  .hub-partners-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 16px !important;
    box-sizing: border-box !important;
    margin: 0 auto !important;
    justify-content: center !important;
    justify-items: center !important;
    align-items: center !important;
  }

  body.page-isablack-hub .brand-item-card,
  .brand-item-card {
    padding: 20px 10px !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  body.page-isablack-hub .partner-card,
  .partner-card {
    padding: 0 !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  body.page-isablack-hub .hub-course-actions {
    gap: 6px !important;
    margin-top: 10px !important;
    flex-direction: column !important;
  }

  body.page-isablack-hub .btn-course-action {
    padding: 6px 8px !important;
    font-size: 0.52rem !important;
    letter-spacing: 0 !important;
    line-height: 1.35 !important;
    text-align: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  body.page-isablack-hub .post-date,
  body.page-isablack-hub .hub-course-badge,
  body.page-isablack-hub .post-category-tag {
    font-size: 0.52rem !important;
    letter-spacing: 0 !important;
    line-height: 1.35 !important;
    text-transform: uppercase !important;
  }

  /* Overrides para grid de parceiros 3 colunas compactas em telas pequenas */
  body.page-isablack-hub .partners-brand-grid {
    grid-template-columns: repeat(3, 85px) !important; /* Colunas fixas no mobile */
    justify-content: center !important; /* Centraliza as colunas e as junta */
    gap: 8px !important;
    padding: 0 !important;
  }

  body.page-isablack-hub .partner-card {
    height: auto !important;
    max-width: 85px !important; /* Limita a caixinha no celular */
    margin: 0 auto !important; /* Centraliza a caixinha na célula */
    padding: 0 !important;
    border: 1.5px solid transparent !important; /* Sem contornos no fundo escuro */
    border-radius: 4px !important;
  }

  body.page-isablack-hub .partner-logo {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
  }
}

/* =========================================================
   RODAPÉ UNIVERSAL CENTRALIZADO & SEM CORTE DE CONTEÚDO
   ========================================================= */
footer,
.footer,
.isablack-hub-footer,
.podcast-footer,
.ensina-footer-bar {
  width: 100% !important;
  max-width: 100vw !important;
  background: #100E0F !important;
  color: #F6F2ED !important;
  padding: 50px 20px 32px 20px !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  margin-top: 0 !important;
}

body.page-escritorio footer,
body.page-escritorio .footer {
  background: #181617 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.footer-inner,
.ensina-footer-bar-inner {
  width: 100% !important;
  max-width: 840px !important;
  margin: 0 auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  gap: 20px !important;
  box-sizing: border-box !important;
}

.footer-logo {
  font-family: 'Syne', sans-serif !important;
  font-size: clamp(1.4rem, 4.5vw, 2.2rem) !important;
  font-weight: 800 !important;
  letter-spacing: 0.1em !important;
  color: #F6F2ED !important;
  text-transform: uppercase !important;
  margin: 0 auto 4px auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.footer-logo img,
.logoensina1-footer {
  max-height: 65px !important;
  width: auto !important;
  object-fit: contain !important;
  margin: 0 auto !important;
}

.footer-hub-links,
.footer-links {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px 20px !important;
  width: 100% !important;
  margin: 4px auto !important;
}

.footer-hub-links a,
.footer-links a {
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  color: rgba(246, 242, 237, 0.75) !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  transition: color 0.3s ease !important;
}

.footer-hub-links a:hover,
.footer-links a:hover {
  color: #F5FF66 !important;
}

.footer-mini-contacts {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px 20px !important;
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.72rem !important;
  color: rgba(246, 242, 237, 0.6) !important;
  width: 100% !important;
  word-break: break-word !important;
  text-align: center !important;
}

.footer-mini-contacts span {
  color: #FFFFFF !important;
  font-weight: 700 !important;
}

.footer-social-icons {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  width: 100% !important;
  margin: 4px auto !important;
}

.footer-social-icons a {
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
}

.footer-social-icons a svg {
  width: 18px !important;
  height: 18px !important;
  fill: #F6F2ED !important;
}

.footer-social-icons a:hover {
  background: #DE7DA0 !important;
  border-color: #DE7DA0 !important;
  transform: translateY(-3px) !important;
}

.footer-social-icons a:hover svg {
  fill: #100E0F !important;
}

.footer-bottom-mini {
  width: 100% !important;
  padding-top: 18px !important;
  margin-top: 6px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
}

.footer-copy,
.footer-copy-text {
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.68rem !important;
  color: rgba(246, 242, 237, 0.45) !important;
  line-height: 1.6 !important;
  letter-spacing: 0.04em !important;
  text-align: center !important;
  margin: 0 !important;
  width: 100% !important;
  word-break: break-word !important;
}

/* =========================================================
   OVERRIEDES EXCLUSIVOS PARA O PORTAL ISA BLACK (ISABLACK.HTML)
   ========================================================= */

/* Declaração da Fonte Local New Black */
@font-face {
  font-family: 'NewBlack';
  src: url('../fontes/New Black Font/Newblack/WOFF&WOFF2/NewBlackTypeface-Regular.woff2') format('woff2'),
       url('../fontes/New Black Font/Newblack/WOFF&WOFF2/NewBlackTypeface-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'NewBlack';
  src: url('../fontes/New Black Font/Newblack/WOFF&WOFF2/NewBlackTypeface-Bold.woff2') format('woff2'),
       url('../fontes/New Black Font/Newblack/WOFF&WOFF2/NewBlackTypeface-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'NewBlack';
  src: url('../fontes/New Black Font/Newblack/WOFF&WOFF2/NewBlackTypeface-Medium.woff2') format('woff2'),
       url('../fontes/New Black Font/Newblack/WOFF&WOFF2/NewBlackTypeface-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}

body.page-isablack-hub {
  /* Enforce exclusive color palette */
  --shadow-grey: #211E1F;
  --rosy-granite: #A09793;
  --parchment: #F6F2ED;
  
  background-color: #211E1F !important;
  color: #F6F2ED !important;
  font-family: 'Azeret Mono', monospace !important;
}

/* Tipografia */
body.page-isablack-hub h1,
body.page-isablack-hub h2,
body.page-isablack-hub h3,
body.page-isablack-hub h4,
body.page-isablack-hub h5,
body.page-isablack-hub h6,
body.page-isablack-hub .vignette-brand,
body.page-isablack-hub .isablack-nav-brand,
body.page-isablack-hub .brand-name,
body.page-isablack-hub .partner-logo-box,
body.page-isablack-hub .loader-logo {
  font-family: 'NewBlack', sans-serif !important;
  font-weight: normal !important; /* Títulos sem negrito */
  text-transform: uppercase !important;
  letter-spacing: -0.02em !important; /* Esp. letras: -20 */
  line-height: 1.15 !important; /* Esp. linhas: 1.15 */
}

body.page-isablack-hub p,
body.page-isablack-hub span,
body.page-isablack-hub a,
body.page-isablack-hub div,
body.page-isablack-hub li {
  font-family: 'Azeret Mono', monospace !important;
  font-weight: 200 !important; /* Usar a fonte em Extralight */
  letter-spacing: -0.075em !important; /* Esp. letras: -75 */
  line-height: 1.25 !important; /* Esp. linhas: 1.25 */
}

/* Estilização dos Logos */
body.page-isablack-hub .loader-logo-img {
  max-width: 400px;
  max-height: 120px;
  width: auto;
  height: auto;
  display: inline-block;
  filter: brightness(0) invert(1) !important;
}

body.page-isablack-hub .isablack-nav-logo {
  max-height: 52px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1) !important;
}

body.page-isablack-hub .hero-logo-img {
  max-width: 500px;
  width: 80%;
  height: auto;
  display: block;
  margin: 0 auto;
  /* Mantida preta no Hero */
}

body.page-isablack-hub .vignette-logo-img {
  max-width: 600px;
  width: 90%;
  max-height: 180px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: brightness(0) invert(1) !important;
}

/* Nav Menu: Cor Sólida e Remoção de Transparência */
body.page-isablack-hub .isablack-hub-nav,
body.page-isablack-hub .isablack-hub-nav.scrolled {
  background: #211E1F !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 1px solid #A09793 !important;
}
body.page-isablack-hub .nav-links a {
  color: #FFFFFF !important;
  opacity: 1 !important;
}

/* Ajustes de Cores Substituindo Amarelo, Rosa, Violeta e Azul por tons de Cinza e Off-white */

/* 1. Botão Escritório (Nav e Mobile) */
body.page-isablack-hub .nav-isablack-pill {
  background: #F6F2ED !important;
  color: #211E1F !important;
  border: 1px solid #A09793 !important;
}
body.page-isablack-hub .nav-isablack-pill:hover {
  background: #A09793 !important;
  color: #211E1F !important;
}

/* 2. Subtítulos / Tags e Elementos em Rosa e Amarelo */
body.page-isablack-hub .portal-main-sub,
body.page-isablack-hub .hub-section-tag,
body.page-isablack-hub .hub-section-title em,
body.page-isablack-hub .badge-role,
body.page-isablack-hub .hub-ep-tag,
body.page-isablack-hub .hub-ep-play-btn,
body.page-isablack-hub .hub-course-badge,
body.page-isablack-hub .hub-course-link,
body.page-isablack-hub .post-category-tag,
body.page-isablack-hub .partners-tag,
body.page-isablack-hub .metric-num,
body.page-isablack-hub .brand-type,
body.page-isablack-hub .partner-type,
body.page-isablack-hub .vignette-sub,
body.page-isablack-hub .office-banner-tag,
body.page-isablack-hub .em-canary {
  color: #A09793 !important;
}

/* Destaque Gochi */
body.page-isablack-hub .hub-gochi-highlight {
  border-left: 3px solid #A09793 !important;
}
body.page-isablack-hub .gochi-text {
  color: #F6F2ED !important;
}

/* 3. Botões e Ações */
body.page-isablack-hub .pink-btn {
  border: 1px solid #A09793 !important;
  color: #A09793 !important;
}
body.page-isablack-hub .pink-btn:hover {
  background: #A09793 !important;
  color: #211E1F !important;
}

body.page-isablack-hub .hub-btn-canary,
body.page-isablack-hub .btn-course-action.primary-canary,
body.page-isablack-hub .btn-office-action {
  background: #F6F2ED !important;
  color: #211E1F !important;
  border: 1px solid #A09793 !important;
}
body.page-isablack-hub .hub-btn-canary:hover,
body.page-isablack-hub .btn-course-action.primary-canary:hover,
body.page-isablack-hub .btn-office-action:hover {
  background: #A09793 !important;
  color: #211E1F !important;
}

body.page-isablack-hub .btn-course-action.secondary-canary {
  border: 1px solid #A09793 !important;
  color: #A09793 !important;
  background: transparent !important;
}
body.page-isablack-hub .btn-course-action.secondary-canary:hover {
  background: rgba(160, 151, 147, 0.15) !important;
}

/* 4. Fundos e Transições */
body.page-isablack-hub .hub-bio-section,
body.page-isablack-hub .hub-blog-section {
  background: #211E1F !important; /* Fundo sempre escuro (Shadow Grey) */
  color: #F6F2ED !important;
}
body.page-isablack-hub .hub-bio-desc,
body.page-isablack-hub .post-excerpt,
body.page-isablack-hub .hub-partners-desc,
body.page-isablack-hub .hub-section-title,
body.page-isablack-hub .post-title,
body.page-isablack-hub .post-date,
body.page-isablack-hub .gochi-text,
body.page-isablack-hub .metric-box strong,
body.page-isablack-hub .metric-box span,
body.page-isablack-hub .office-banner-inner h2,
body.page-isablack-hub .office-banner-inner p,
body.page-isablack-hub .brand-name,
body.page-isablack-hub .partner-logo-box,
body.page-isablack-hub .vignette-brand {
  color: #F6F2ED !important; /* Sempre branca para legibilidade e conformidade */
}
body.page-isablack-hub .blog-post-card {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(160, 151, 147, 0.2) !important;
}
body.page-isablack-hub .post-read-more {
  color: #F6F2ED !important;
  border-bottom: 1px solid #F6F2ED !important;
}

body.page-isablack-hub .hub-podcast-teaser-section *,
body.page-isablack-hub .hub-ep-title {
  background-color: transparent;
}
body.page-isablack-hub .hub-ep-item {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(160, 151, 147, 0.2) !important;
}
body.page-isablack-hub .hub-ep-item:hover {
  background: rgba(160, 151, 147, 0.15) !important;
  border-color: rgba(160, 151, 147, 0.4) !important;
}

body.page-isablack-hub .hub-courses-teaser-section {
  background: #211E1F !important;
  border-top: 1px solid rgba(160, 151, 147, 0.2) !important;
}
body.page-isablack-hub .hub-course-card {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(160, 151, 147, 0.2) !important;
}
body.page-isablack-hub .hub-course-card:hover {
  border-color: #A09793 !important;
}

body.page-isablack-hub .hub-partners-section {
  background: #211E1F !important;
  border-top: 1px solid rgba(160, 151, 147, 0.2) !important;
  border-bottom: 1px solid rgba(160, 151, 147, 0.2) !important;
}
body.page-isablack-hub .brand-item-card,
body.page-isablack-hub .partner-card,
body.page-isablack-hub .testimonial-card {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(160, 151, 147, 0.15) !important;
}
body.page-isablack-hub .brand-item-card:hover,
body.page-isablack-hub .partner-card:hover {
  border-color: #A09793 !important;
  background: rgba(160, 151, 147, 0.1) !important;
}

body.page-isablack-hub .metric-box {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(160, 151, 147, 0.2) !important;
}
body.page-isablack-hub .metric-box strong {
  color: #F6F2ED !important;
}

body.page-isablack-hub .hub-office-teaser-banner {
  background: #181617 !important;
  border-top: 1px solid rgba(160, 151, 147, 0.2) !important;
}

/* Vinheta de Transição */
.isablack-vignette {
  background: #211E1F !important;
}
.vignette-progress-line::after {
  background: #F6F2ED !important;
}

/* Carousel Buttons */
.carousel-arrow-btn:hover {
  background: #A09793 !important;
  border-color: #A09793 !important;
  color: #211E1F !important;
}
.carousel-arrow-btn.dark-arrow:hover {
  background: #A09793 !important;
  color: #211E1F !important;
  border-color: #A09793 !important;
}

/* Bento Grid de Projetos na página Isa Black */
body.page-isablack-hub .project-card-overlay {
  background: linear-gradient(to top, rgba(33, 30, 31, 0.95) 0%, rgba(33, 30, 31, 0.4) 100%) !important;
}

body.page-isablack-hub .project-card-tag {
  color: #A09793 !important; /* Rosy Granite instead of Canary Yellow */
}

body.page-isablack-hub .project-card-title {
  color: #F6F2ED !important;
  font-family: 'NewBlack', sans-serif !important;
  font-weight: normal !important;
  text-transform: uppercase !important;
}

body.page-isablack-hub .project-card-subtitle {
  color: rgba(246, 242, 237, 0.8) !important;
}

body.page-isablack-hub .project-card-footer {
  color: #F6F2ED !important;
  border-top: 1px solid rgba(246, 242, 237, 0.15) !important;
}

/* =========================================================
   CARD BUTTON ALIGNMENT OVERRIDES (DESKTOP & MOBILE)
   ========================================================= */
body.page-isablack-hub .hub-course-content,
body.page-isablack-hub .post-content {
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1 !important;
}

body.page-isablack-hub .hub-course-desc,
body.page-isablack-hub .post-excerpt {
  flex-grow: 1 !important;
}

body.page-isablack-hub .hub-course-actions,
body.page-isablack-hub .post-read-more {
  margin-top: auto !important;
}

/* Garante visibilidade das setas do blog no fundo escuro */
body.page-isablack-hub .carousel-arrow-btn.dark-arrow {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  color: #FFFFFF !important;
}

/* =========================================================
   OVERRIDE SEÇÃO PODCAST (INTEGRAÇÃO DE PALETA COM PODCAST.HTML)
   ========================================================= */
body.page-isablack-hub .hub-podcast-teaser-section {
  background:
    radial-gradient(circle, rgba(0, 0, 0, 0.4) 1px, transparent 1px),
    radial-gradient(ellipse at 20% 0%, #6B2D46 0%, transparent 55%),
    radial-gradient(ellipse at 80% 100%, #2E1520 0%, transparent 55%),
    linear-gradient(160deg, #3A1A2A 0%, #442030 30%, #4E2438 55%, #3A1A2A 80%, #2C1620 100%) !important;
  background-size: 20px 20px, 100% 100%, 100% 100%, 100% 100% !important;
  border-top: 1px solid rgba(222, 125, 160, 0.25) !important;
}

body.page-isablack-hub .hub-podcast-teaser-section .tag-pink {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  color: #DE7DA0 !important;
}

body.page-isablack-hub .hub-podcast-teaser-section .em-pink {
  color: #DE7DA0 !important;
  font-style: italic !important;
}

body.page-isablack-hub .hub-podcast-teaser-section .pink-btn {
  border: 1.5px solid #DE7DA0 !important;
  color: #DE7DA0 !important;
}

body.page-isablack-hub .hub-podcast-teaser-section .pink-btn:hover {
  background: #DE7DA0 !important;
  color: #2E1520 !important;
}

body.page-isablack-hub .hub-ep-item {
  background: rgba(253, 251, 247, 0.04) !important;
  border: 1px solid rgba(222, 125, 160, 0.2) !important;
  color: #FDFBF7 !important;
}

body.page-isablack-hub .hub-ep-item:hover {
  background: rgba(253, 251, 247, 0.08) !important;
  border-color: #DE7DA0 !important;
}

body.page-isablack-hub .hub-ep-tag {
  color: #DE7DA0 !important;
}

body.page-isablack-hub .hub-ep-title {
  color: #FDFBF7 !important;
}

body.page-isablack-hub .hub-ep-meta {
  color: rgba(253, 251, 247, 0.6) !important;
}

body.page-isablack-hub .hub-ep-play-btn {
  color: #DE7DA0 !important;
  border: 1px solid rgba(222, 125, 160, 0.3) !important;
}

body.page-isablack-hub .hub-ep-item:hover .hub-ep-play-btn {
  background: #DE7DA0 !important;
  color: #442030 !important;
  border-color: #DE7DA0 !important;
}

/* =========================================================
   OVERRIDE SEÇÃO CURSOS (INTEGRAÇÃO DE PALETA COM MINICURSOS.HTML)
   ========================================================= */
body.page-isablack-hub .hub-courses-teaser-section {
  background: radial-gradient(ellipse at 15% 10%, rgba(19, 93, 108, 0.9) 0%, transparent 50%),
              radial-gradient(ellipse at 85% 90%, rgba(8, 46, 56, 1) 0%, transparent 55%),
              linear-gradient(155deg, #0A3540 0%, #0D4753 25%, #0F5562 50%, #0D4753 72%, #082E38 100%) !important;
  border-top: 1px solid rgba(245, 255, 102, 0.2) !important;
}

body.page-isablack-hub .hub-courses-teaser-section .tag-canary {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  color: #F5FF66 !important;
}

body.page-isablack-hub .hub-courses-teaser-section .em-canary {
  color: #F5FF66 !important;
}

body.page-isablack-hub .hub-courses-teaser-section .carousel-arrow-btn:hover {
  background: #F5FF66 !important;
  color: #0D4753 !important;
  border-color: #F5FF66 !important;
}

body.page-isablack-hub .hub-courses-teaser-section .hub-course-card {
  background: #FFFFFF !important;
  border: 1px solid rgba(13, 71, 83, 0.15) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35) !important;
}

body.page-isablack-hub .hub-courses-teaser-section .hub-course-card:hover {
  border-color: #F5FF66 !important;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.45) !important;
}

body.page-isablack-hub .hub-courses-teaser-section .hub-course-content {
  background: #FFFFFF !important;
}

body.page-isablack-hub .hub-courses-teaser-section .hub-course-badge {
  color: #0D4753 !important;
  opacity: 0.8 !important;
}

body.page-isablack-hub .hub-courses-teaser-section .hub-course-title {
  color: #082E38 !important;
}

body.page-isablack-hub .hub-courses-teaser-section .hub-course-desc {
  color: rgba(13, 71, 83, 0.8) !important;
}

body.page-isablack-hub .hub-courses-teaser-section .btn-course-action.primary-canary {
  background: #0D4753 !important;
  color: #F5FF66 !important;
  border: none !important;
}

body.page-isablack-hub .hub-courses-teaser-section .btn-course-action.primary-canary:hover {
  background: #082E38 !important;
  color: #FFFFFF !important;
}

body.page-isablack-hub .hub-courses-teaser-section .btn-course-action.secondary-canary {
  border: 1px solid rgba(13, 71, 83, 0.4) !important;
  color: #0D4753 !important;
  background: transparent !important;
}

body.page-isablack-hub .hub-courses-teaser-section .btn-course-action.secondary-canary:hover {
  background: rgba(13, 71, 83, 0.08) !important;
  border-color: #0D4753 !important;
}

/* =========================================================
   NOVA ESTILIZAÇÃO DO BOTÃO PLAY E MICRO-ANIMAÇÕES NO PODCAST
   ========================================================= */
body.page-isablack-hub .hub-ep-right-wrap {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
}

body.page-isablack-hub .hub-ep-play-btn {
  background: rgba(222, 125, 160, 0.1) !important;
  color: #DE7DA0 !important;
  border: none !important; /* Sem linha/borda! */
  border-radius: 50% !important;
  width: 44px !important;
  height: 44px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15) !important;
}

body.page-isablack-hub .hub-ep-item:hover .hub-ep-play-btn {
  background: #DE7DA0 !important;
  color: #442030 !important;
  transform: scale(1.1) !important;
  box-shadow: 0 6px 15px rgba(222, 125, 160, 0.35) !important;
}

/* Equalizer no Teaser */
body.page-isablack-hub .hub-ep-equalizer {
  display: flex !important;
  align-items: flex-end !important;
  gap: 3px !important;
  width: 22px !important;
  height: 18px !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
}

body.page-isablack-hub .hub-ep-item:hover .hub-ep-equalizer {
  opacity: 1 !important;
}

body.page-isablack-hub .hub-ep-equalizer .eq-bar {
  width: 3px !important;
  height: 100% !important;
  background-color: #DE7DA0 !important;
  transform-origin: bottom !important;
  animation: eqBounce 1s ease-in-out infinite alternate !important;
}

body.page-isablack-hub .hub-ep-equalizer .eq-bar:nth-child(1) { animation-delay: 0.1s !important; height: 30% !important; }
body.page-isablack-hub .hub-ep-equalizer .eq-bar:nth-child(2) { animation-delay: 0.4s !important; height: 90% !important; }
body.page-isablack-hub .hub-ep-equalizer .eq-bar:nth-child(3) { animation-delay: 0.2s !important; height: 50% !important; }
body.page-isablack-hub .hub-ep-equalizer .eq-bar:nth-child(4) { animation-delay: 0.6s !important; height: 75% !important; }

@keyframes eqBounce {
  0% { transform: scaleY(0.2); }
  100% { transform: scaleY(1); }
}

/* Plataformas Badges */
body.page-isablack-hub .podcast-platforms-row {
  margin-top: 36px !important;
  padding-top: 24px !important;
  border-top: 1px solid rgba(222, 125, 160, 0.15) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
  gap: 16px !important;
}

body.page-isablack-hub .platforms-label {
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.12em !important;
  color: rgba(253, 251, 247, 0.5) !important;
  font-weight: 700 !important;
}

body.page-isablack-hub .platforms-links {
  display: flex !important;
  gap: 12px !important;
}

body.page-isablack-hub .platform-badge {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: rgba(222, 125, 160, 0.08) !important;
  border: 1px solid rgba(222, 125, 160, 0.2) !important;
  padding: 8px 16px !important;
  border-radius: 30px !important;
  color: #DE7DA0 !important;
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
}

body.page-isablack-hub .platform-badge:hover {
  background: #DE7DA0 !important;
  color: #442030 !important;
  border-color: #DE7DA0 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(222, 125, 160, 0.2) !important;
}

/* =========================================================
   DEGRADÊS METÁLICOS NAS OUTRAS SEÇÕES DO PORTAL ISABLACK
   ========================================================= */

/* Seção de Perfil/Bio */
body.page-isablack-hub .hub-bio-section {
  background: radial-gradient(ellipse at 10% 20%, #3a3235 0%, transparent 50%),
              radial-gradient(ellipse at 90% 80%, #1c1819 0%, transparent 50%),
              linear-gradient(135deg, #252022 0%, #2a2426 40%, #211c1d 75%, #181516 100%) !important;
  border-top: 1px solid rgba(160, 151, 147, 0.15) !important;
}

/* Seção de Projetos */
body.page-isablack-hub .projects-section {
  background: radial-gradient(ellipse at 80% 10%, #302d32 0%, transparent 50%),
              radial-gradient(ellipse at 20% 90%, #151417 0%, transparent 50%),
              linear-gradient(145deg, #1c1b1f 0%, #232226 45%, #1e1d21 80%, #131214 100%) !important;
  border-top: 1px solid rgba(160, 151, 147, 0.2) !important;
}

/* Seção de Blog */
body.page-isablack-hub .hub-blog-section {
  background: radial-gradient(ellipse at 30% 10%, #322b2d 0%, transparent 50%),
              radial-gradient(ellipse at 70% 90%, #171314 0%, transparent 50%),
              linear-gradient(155deg, #1f1b1c 0%, #262122 35%, #211c1d 70%, #141112 100%) !important;
  border-top: 1px solid rgba(160, 151, 147, 0.2) !important;
}

/* Seção de Parcerias */
body.page-isablack-hub .hub-partners-section {
  background: linear-gradient(135deg, #181617 0%, #1d1b1c 50%, #131112 100%) !important;
  border-top: 1px solid rgba(160, 151, 147, 0.2) !important;
  border-bottom: none !important;
}

body.page-isablack-hub .hub-partners-section .partners-title {
  color: #FDFBF7 !important; /* Revertido para texto claro */
}

body.page-isablack-hub .hub-partners-section .partners-tag {
  color: #C5A059 !important; /* Revertido para dourado original */
}


/* Banner do Escritório */
body.page-isablack-hub .hub-office-teaser-banner {
  background: linear-gradient(135deg, #181617 0%, #232021 50%, #141213 100%) !important;
  border-top: 1px solid rgba(160, 151, 147, 0.2) !important;
}

/* Layout e Estilos dos Parceiros para Telas Grandes (Desktop) */
@media (min-width: 769px) {
  body.page-isablack-hub .partners-brand-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 160px) !important; /* Colunas de largura fixa */
    justify-content: center !important; /* Junta as colunas e centraliza o bloco */
    gap: 16px !important; /* Espaçamento menor e controlado */
    margin-bottom: 64px !important;
  }

  body.page-isablack-hub .partner-card {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    aspect-ratio: 1 / 1 !important;
    width: 100% !important;
    max-width: 160px !important; /* Tamanho fixado no desktop */
    height: auto !important;
    margin: 0 auto !important;
    padding: 0 !important;
    background: #FFFFFF !important;
    border: 1.5px solid transparent !important; /* Sem contornos no fundo escuro */
    border-radius: 4px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04) !important;
    box-sizing: border-box !important;
    transition: border-color 0.25s ease, box-shadow 0.25s ease !important;
  }
}

/* Regra Geral Compartilhada (Resoluções de Logo) */
body.page-isablack-hub .partner-logo {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  opacity: 1 !important;
  filter: none !important;
  transition: transform 0.25s ease !important;
}

/* Força fundo branco dos cards em qualquer tamanho de tela (mobile e desktop) */
body.page-isablack-hub .partner-card {
  background: #FFFFFF !important;
}

body.page-isablack-hub .partner-card:hover {
  transform: none !important;
  background: #FFFFFF !important; /* Garante que o card continue com fundo branco no hover */
  border-color: #A09793 !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08) !important;
}

body.page-isablack-hub .partner-card:hover .partner-logo {
  transform: scale(1.02) !important;
}

/* =========================================================
   SEÇÃO DE FEEDBACKS & LIGHTBOX (CARROSSEL MARQUEE INFINITO)
   ========================================================= */
body.page-isablack-hub .hub-feedbacks-section {
  padding: 100px 0 !important;
  background: radial-gradient(ellipse at 50% 10%, #2f2529 0%, transparent 60%),
              linear-gradient(135deg, #1c1819 0%, #110f10 100%) !important;
  border-top: 1px solid rgba(160, 151, 147, 0.15) !important;
  overflow: hidden !important;
}

body.page-isablack-hub .feedback-marquee-container {
  width: 100% !important;
  overflow: hidden !important;
  display: flex !important;
  position: relative !important;
  padding: 10px 0 !important;
  cursor: grab !important;
  touch-action: pan-y !important;
  user-select: none !important;
  -webkit-user-select: none !important;
}

/* Track deslizante do Marquee */
body.page-isablack-hub .feedback-marquee-track {
  display: flex !important;
  flex: 0 0 auto !important;
  width: max-content !important;
  height: 380px !important; /* Altura fixa padrão no desktop */
  gap: 18px !important;
  animation: none !important;
}

body.page-isablack-hub .feedback-marquee-container.is-dragging {
  cursor: grabbing !important;
}

/* Cards das imagens do feedback (se adaptam dinamicamente ao tamanho/proporção da imagem) */
body.page-isablack-hub .feedback-card {
  flex-shrink: 0 !important;
  height: 100% !important;
  width: auto !important; /* Largura se adapta dinamicamente à imagem */
  border-radius: 8px !important;
  overflow: hidden !important;
  cursor: pointer !important;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25) !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.3s ease !important;
  background: #1A1718 !important;
}

body.page-isablack-hub .feedback-card img {
  height: 100% !important;
  width: auto !important;
  display: block !important;
  object-fit: contain !important; /* Preserva o tamanho e proporção sem cortes */
  pointer-events: none !important;
}

body.page-isablack-hub .feedback-card:hover {
  transform: scale(1.02) !important;
  box-shadow: 0 10px 25px rgba(222, 125, 160, 0.25) !important;
}

/* Lightbox Modal Estilizado */
body.page-isablack-hub .lightbox-modal {
  display: none;
  position: fixed;
  z-index: 11000 !important;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(16, 14, 15, 0.95);
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
}

body.page-isablack-hub .lightbox-content {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
  animation: lightboxZoom 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes lightboxZoom {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

body.page-isablack-hub .lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  color: #FDFBF7;
  font-size: 42px;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
  user-select: none;
}

body.page-isablack-hub .lightbox-close:hover {
  color: #DE7DA0;
  transform: scale(1.1);
}

/* Responsividade do Marquee */
@media (max-width: 768px) {
  body.page-isablack-hub .hub-feedbacks-section {
    padding: 60px 0 !important;
  }
  body.page-isablack-hub .feedback-marquee-track {
    height: 250px !important; /* Altura do track menor no mobile */
    gap: 12px !important;
  }
  body.page-isablack-hub .feedback-card {
    height: 100% !important;
    width: auto !important; /* Mantém proporção da imagem */
  }
  body.page-isablack-hub .lightbox-close {
    top: 16px;
    right: 20px;
    font-size: 36px;
  }
}

/* Custom Split Layout for Hub Sections */
body.page-isablack-hub .hub-split-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: flex-start;
  margin-top: 40px;
}

body.page-isablack-hub .hub-split-left {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

body.page-isablack-hub .hub-split-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
}

body.page-isablack-hub .hub-podcast-teaser-section .hub-split-desc {
  color: #FDFBF7;
}

body.page-isablack-hub .hub-courses-teaser-section .hub-split-desc {
  color: #E2EFF2;
}

body.page-isablack-hub .hub-split-benefits {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

body.page-isablack-hub .hub-split-benefits li {
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #F5FF66;
  font-family: 'Azeret Mono', monospace !important;
}

body.page-isablack-hub .hub-podcast-teaser-section .podcast-platforms-row {
  margin-top: 10px;
  padding-top: 0;
  border-top: none;
}

body.page-isablack-hub .hub-info-block {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 45px;
  margin-bottom: 45px;
  align-items: center;
}

@media (max-width: 991px) {
  body.page-isablack-hub .hub-split-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  body.page-isablack-hub .hub-info-block {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    margin-bottom: 30px !important;
  }
}

/* Wider containers on desktop to span edge-to-edge style */
@media (min-width: 1200px) {
  body.page-isablack-hub .hub-container {
    max-width: 90% !important;
  }
}

/* Edge-to-edge split bio section overrides */
body.page-isablack-hub .hub-bio-section {
  padding: 0 !important;
  background: #FAFAF8;
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden;
}

/* Default (Portrait: height > width, or mobile): Stacked layout */
body.page-isablack-hub .hub-bio-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}

body.page-isablack-hub .hub-bio-image-col {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  height: auto !important;
}

body.page-isablack-hub .hub-bio-frame {
  width: 100% !important;
  max-width: 100% !important;
  height: 80vh !important; /* fills 80% of screen height side to side */
  box-shadow: none !important;
  position: relative;
  overflow: hidden;
  border-radius: 0 !important;
}

body.page-isablack-hub .hub-bio-frame img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
}

body.page-isablack-hub .hub-bio-text-col {
  padding: 60px 24px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Landscape mode: width > height (desktops and landscape devices) */
@media (orientation: landscape) {
  body.page-isablack-hub .hub-bio-grid {
    grid-template-columns: 1fr 1fr !important;
    align-items: stretch !important;
  }

  body.page-isablack-hub .hub-bio-image-col {
    height: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  body.page-isablack-hub .hub-bio-frame {
    height: 100% !important;
    max-width: 100% !important;
    min-height: 650px !important;
  }

  body.page-isablack-hub .hub-bio-text-col {
    padding: 100px 8% 100px 80px !important;
  }
}

/* Podcast Teaser Showcase Cards Grid */
body.page-isablack-hub .podcast-cards-grid {
  display: flex !important;
  justify-content: center !important;
  margin-bottom: 50px;
  width: 100%;
}

body.page-isablack-hub .podcast-host-card,
body.page-isablack-hub .podcast-video-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(222, 125, 160, 0.15);
  border-radius: 8px !important;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  width: 100%;
  max-width: 720px !important;
  aspect-ratio: 16 / 9 !important;
}

/* Card 1: Host image and quote */
body.page-isablack-hub .podcast-host-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

body.page-isablack-hub .podcast-host-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.page-isablack-hub .podcast-host-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 9, 0.95) 0%, rgba(10, 10, 9, 0.2) 65%, rgba(10, 10, 9, 0.3) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

body.page-isablack-hub .podcast-quote {
  font-family: 'Comfortaa', sans-serif !important;
  font-size: clamp(0.85rem, 1.6vw, 1.05rem);
  line-height: 1.5;
  color: #FFFFFF;
  margin-bottom: 12px;
  font-style: italic;
  font-weight: 300;
}

body.page-isablack-hub .podcast-host-name {
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.68rem;
  color: #DE7DA0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Card 2: Video Cuts space */
body.page-isablack-hub .podcast-video-preview {
  position: relative;
  width: 100%;
  height: 100%;
}

body.page-isablack-hub .podcast-preview-video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  display: block;
  background: #111;
}

body.page-isablack-hub .podcast-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 9, 0.95) 0%, rgba(10, 10, 9, 0.15) 50%, rgba(10, 10, 9, 0.3) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  z-index: 2;
  transition: background 0.3s ease;
}

body.page-isablack-hub .podcast-video-card:hover .podcast-video-overlay {
  background: linear-gradient(to top, rgba(10, 10, 9, 0.98) 0%, rgba(10, 10, 9, 0.3) 50%, rgba(10, 10, 9, 0.4) 100%);
}

body.page-isablack-hub .video-card-tag {
  align-self: flex-start;
  background: rgba(222, 125, 160, 0.85);
  color: #FFFFFF;
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.58rem;
  font-weight: 700;
  padding: 4px 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

body.page-isablack-hub .video-card-title {
  font-family: 'Syne', sans-serif !important;
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  font-weight: 700;
  line-height: 1.4;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-top: auto;
  margin-bottom: 20px;
}

body.page-isablack-hub .video-play-btn-circle {
  align-self: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(222, 125, 160, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(222, 125, 160, 0.3);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.3s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
}

body.page-isablack-hub .podcast-video-card:hover .video-play-btn-circle {
  transform: translate(-50%, -50%) scale(1.1);
  background: #DE7DA0;
  box-shadow: 0 0 30px rgba(222, 125, 160, 0.5);
}

body.page-isablack-hub .video-play-btn-circle .play-icon {
  color: #FFFFFF;
  font-size: 1rem;
  margin-left: 3px;
}

/* Layout Dividido: Vídeo (Esquerda) e Player (Direita) */
body.page-isablack-hub .podcast-teaser-split-layout {
  display: grid !important;
  grid-template-columns: 1.1fr 1.25fr !important;
  gap: 40px !important;
  width: 100% !important;
  margin-bottom: 50px !important;
  align-items: stretch !important;
}

body.page-isablack-hub .podcast-teaser-left-col,
body.page-isablack-hub .podcast-teaser-right-col {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  justify-content: flex-start !important;
}

/* Alinhamento de Altura e Scroll de Playlist */
body.page-isablack-hub .podcast-video-card {
  height: 560px !important;
  max-width: 100% !important;
  aspect-ratio: auto !important;
  margin-top: 0 !important;
}

body.page-isablack-hub .transistor-player-widget {
  height: 560px !important;
  display: flex !important;
  flex-direction: column !important;
  margin-top: 0 !important;
}

body.page-isablack-hub .transistor-player-upper {
  flex-shrink: 0 !important;
}

body.page-isablack-hub .transistor-player-lower {
  flex-grow: 1 !important;
  overflow-y: auto !important;
}

/* Custom Scrollbar */
body.page-isablack-hub .transistor-player-lower::-webkit-scrollbar {
  width: 6px !important;
}
body.page-isablack-hub .transistor-player-lower::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02) !important;
}
body.page-isablack-hub .transistor-player-lower::-webkit-scrollbar-thumb {
  background: rgba(222, 125, 160, 0.3) !important;
  border-radius: 3px !important;
}
body.page-isablack-hub .transistor-player-lower::-webkit-scrollbar-thumb:hover {
  background: rgba(222, 125, 160, 0.6) !important;
}

@media (max-width: 991px) {
  body.page-isablack-hub .podcast-teaser-split-layout {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    align-items: stretch !important;
  }
  
  body.page-isablack-hub .podcast-video-card {
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
  }
  body.page-isablack-hub .transistor-player-widget {
    height: auto !important;
  }
}


/* ===== LIGHTBOX GALERIA DE PROJETOS ===== */
.project-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.project-lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 9, 0.92);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(92vw, 1100px);
  max-height: 92vh;
  background: #181516;
  border: 1px solid rgba(160, 151, 147, 0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-lightbox.open .lightbox-panel {
  transform: translateY(0) scale(1);
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 18px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: #F6F2ED;
  font-size: 1.1rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.18);
}

.lightbox-header {
  padding: 26px 28px 18px;
  border-bottom: 1px solid rgba(160, 151, 147, 0.1);
  flex-shrink: 0;
}

.lightbox-tag {
  display: block;
  font-family: 'Azeret Mono', monospace;
  font-size: 0.65rem;
  color: #A09793;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

.lightbox-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 700;
  color: #F6F2ED;
  text-transform: uppercase;
  margin: 0;
}

.lightbox-carousel-track-wrap {
  position: relative;
  flex: 1;
  overflow: hidden;
  background: #0e0c0d;
  min-height: 0;
}

.lightbox-carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 380px;
}

.lightbox-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.lightbox-slide.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  max-height: 60vh;
}

.lightbox-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 16px 28px;
  border-top: 1px solid rgba(160, 151, 147, 0.1);
  flex-shrink: 0;
}

.lightbox-nav-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(160, 151, 147, 0.2);
  color: #F6F2ED;
  font-size: 1.2rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.lightbox-nav-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(160, 151, 147, 0.5);
}

.lightbox-counter {
  font-family: 'Azeret Mono', monospace;
  font-size: 0.75rem;
  color: #A09793;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  min-width: 60px;
  text-align: center;
}

@media (max-width: 640px) {
  .lightbox-panel {
    width: 100vw;
    max-height: 100dvh;
    border: none;
  }
  .lightbox-slide img {
    max-height: 50vh;
  }
}

/* Garante que todo o card seja clicável, sem interferência dos elementos internos */
body.page-isablack-hub .project-card * {
  pointer-events: none;
}

/* =========================================================
   TRANSISTOR-STYLE PODCAST PLAYER WIDGET (HUB ISABLACK)
   ========================================================= */

/* Override Gochi Hand for specific Transistor player classes to match the reference design's professional typography */
body.page-isablack-hub .transistor-player-widget,
body.page-isablack-hub .transistor-player-widget * {
  font-family: 'Syne', sans-serif !important;
}

body.page-isablack-hub .transistor-time-display,
body.page-isablack-hub .transistor-speed-btn,
body.page-isablack-hub .transistor-watermark,
body.page-isablack-hub .transistor-ep-number,
body.page-isablack-hub .transistor-ep-row-duration {
  font-family: 'Azeret Mono', monospace !important;
}

body.page-isablack-hub .transistor-player-widget {
  background: #12090e !important; /* Extremely dark violet/black */
  border: 1px solid rgba(222, 125, 160, 0.25) !important;
  border-radius: 8px !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6) !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
  margin-top: 20px;
}

/* Upper player area */
body.page-isablack-hub .transistor-player-upper {
  display: flex;
  padding: 30px;
  gap: 30px;
  align-items: flex-start;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  body.page-isablack-hub .transistor-player-upper {
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 20px;
    text-align: center;
  }
}

body.page-isablack-hub .transistor-player-cover-wrap {
  width: 160px;
  height: 160px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

body.page-isablack-hub .transistor-player-cover-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.page-isablack-hub .transistor-player-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  body.page-isablack-hub .transistor-player-info {
    width: 100%;
  }
}

body.page-isablack-hub .transistor-ep-number {
  font-size: 0.68rem !important;
  color: #DE7DA0 !important;
  letter-spacing: 0.1em !important;
  font-weight: 700 !important;
  display: block;
  margin-bottom: 6px;
}

body.page-isablack-hub .transistor-ep-title {
  font-size: 1.35rem !important;
  font-weight: 700 !important;
  color: #FDFBF7 !important;
  line-height: 1.35 !important;
  margin: 0 0 16px 0 !important;
  letter-spacing: -0.01em !important;
  text-align: left;
}

@media (max-width: 768px) {
  body.page-isablack-hub .transistor-ep-title {
    text-align: center;
  }
}

/* Controls container */
body.page-isablack-hub .transistor-player-controls-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

body.page-isablack-hub .transistor-controls-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  body.page-isablack-hub .transistor-controls-row {
    justify-content: center;
  }
}

body.page-isablack-hub .transistor-play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FDFBF7 !important;
  color: #12090e !important;
  border: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(253, 251, 247, 0.2);
  transition: all 0.2s ease;
}

body.page-isablack-hub .transistor-play-btn:hover {
  background: #DE7DA0 !important;
  color: #12090e !important;
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(222, 125, 160, 0.4);
}

body.page-isablack-hub .play-svg-widget {
  width: 20px;
  height: 20px;
}

body.page-isablack-hub .transistor-ctrl-btn {
  background: transparent !important;
  border: none !important;
  color: rgba(253, 251, 247, 0.7) !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

body.page-isablack-hub .transistor-ctrl-btn:hover {
  color: #DE7DA0 !important;
  transform: scale(1.08);
}

body.page-isablack-hub .transistor-speed-btn {
  background: transparent !important;
  border: 1px solid rgba(253, 251, 247, 0.2) !important;
  color: rgba(253, 251, 247, 0.7) !important;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.65rem !important;
  font-weight: 700 !important;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 32px;
  text-align: center;
}

body.page-isablack-hub .transistor-speed-btn:hover {
  border-color: #DE7DA0 !important;
  color: #DE7DA0 !important;
}

body.page-isablack-hub .transistor-volume-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

body.page-isablack-hub .transistor-volume-bar-wrap {
  width: 65px;
  height: 4px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

body.page-isablack-hub .transistor-volume-bar-fill {
  height: 100%;
  background: #DE7DA0;
  border-radius: 2px;
  width: 80%;
}

body.page-isablack-hub .transistor-scrubber-row {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

@media (max-width: 768px) {
  body.page-isablack-hub .transistor-scrubber-row {
    flex-direction: column;
    gap: 8px;
  }
}

body.page-isablack-hub .transistor-progress-container {
  flex-grow: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  body.page-isablack-hub .transistor-progress-container {
    width: 100%;
  }
}

body.page-isablack-hub .transistor-progress-fill {
  height: 100%;
  background: #DE7DA0;
  border-radius: 3px;
  width: 0%;
  transition: width 0.1s linear;
}

body.page-isablack-hub .transistor-time-display {
  font-size: 0.68rem !important;
  color: rgba(253, 251, 247, 0.5) !important;
  white-space: nowrap;
}

/* Sub actions styling */
body.page-isablack-hub .transistor-sub-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
  margin-top: 6px;
}

body.page-isablack-hub .transistor-sub-left {
  display: flex;
  gap: 16px;
}

body.page-isablack-hub .transistor-action-link {
  background: transparent !important;
  border: none !important;
  color: rgba(253, 251, 247, 0.5) !important;
  font-size: 0.65rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease;
}

body.page-isablack-hub .transistor-action-link:hover,
body.page-isablack-hub .transistor-action-link.active {
  color: #DE7DA0 !important;
}

body.page-isablack-hub .transistor-watermark {
  font-size: 0.65rem !important;
  font-weight: 800 !important;
  color: rgba(253, 251, 247, 0.2) !important;
  letter-spacing: 0.1em !important;
}

/* Drawer styles */
body.page-isablack-hub .transistor-info-drawer,
body.page-isablack-hub .transistor-subscribe-drawer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: rgba(0, 0, 0, 0.25);
  border-top: 0px solid transparent;
}

body.page-isablack-hub .transistor-info-drawer.open,
body.page-isablack-hub .transistor-subscribe-drawer.open {
  max-height: 200px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

body.page-isablack-hub .transistor-drawer-content {
  padding: 20px 30px;
  text-align: left;
}

body.page-isablack-hub .transistor-drawer-heading {
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  color: #DE7DA0 !important;
  margin: 0 0 8px 0 !important;
}

body.page-isablack-hub #widgetEpisodeDesc {
  font-size: 0.8rem !important;
  line-height: 1.5 !important;
  color: rgba(253, 251, 247, 0.7) !important;
  margin: 0 !important;
}

body.page-isablack-hub .transistor-subscribe-options {
  display: flex;
  padding: 20px 30px;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  body.page-isablack-hub .transistor-subscribe-options {
    justify-content: center;
    padding: 16px;
  }
}

body.page-isablack-hub .subscribe-option-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(222, 125, 160, 0.2);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 0.72rem !important;
  color: rgba(253, 251, 247, 0.8) !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

body.page-isablack-hub .subscribe-option-btn:hover {
  background: rgba(222, 125, 160, 0.12);
  border-color: #DE7DA0;
  color: #FDFBF7;
  transform: translateY(-1px);
}

body.page-isablack-hub .platform-icon {
  font-size: 0.9rem;
}

/* Toast */
body.page-isablack-hub .transistor-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #DE7DA0;
  color: #12090e;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  z-index: 10005;
  transition: opacity 0.3s, transform 0.3s;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

body.page-isablack-hub .transistor-toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* Divider styling */
body.page-isablack-hub .transistor-widget-divider {
  height: 1px;
  background: rgba(222, 125, 160, 0.15);
}

/* Lower player list area */
body.page-isablack-hub .transistor-player-lower {
  padding: 24px 30px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  body.page-isablack-hub .transistor-player-lower {
    padding: 16px 20px;
  }
}

body.page-isablack-hub .transistor-lower-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

body.page-isablack-hub .transistor-more-title {
  font-size: 0.68rem !important;
  font-weight: 800 !important;
  color: rgba(253, 251, 247, 0.45) !important;
  letter-spacing: 0.08em !important;
}

body.page-isablack-hub .transistor-episodes-list {
  display: flex;
  flex-direction: column;
}

body.page-isablack-hub .transistor-ep-row {
  display: flex;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(222, 125, 160, 0.1);
  box-sizing: border-box;
  transition: background-color 0.2s ease;
  cursor: pointer;
}

body.page-isablack-hub .transistor-ep-row:last-child {
  border-bottom: none;
}

body.page-isablack-hub .transistor-ep-row:hover {
  background-color: rgba(222, 125, 160, 0.04);
}

body.page-isablack-hub .transistor-ep-play-col {
  width: 36px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

body.page-isablack-hub .transistor-row-play-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(222, 125, 160, 0.4) !important;
  background: transparent !important;
  color: #DE7DA0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

body.page-isablack-hub .row-play-icon {
  width: 10px;
  height: 10px;
  fill: currentColor;
}

body.page-isablack-hub .transistor-ep-row:hover .transistor-row-play-btn,
body.page-isablack-hub .transistor-ep-row.active .transistor-row-play-btn {
  background: #DE7DA0 !important;
  color: #12090e !important;
  border-color: #DE7DA0 !important;
}

body.page-isablack-hub .transistor-ep-info-col {
  flex-grow: 1;
  padding: 0 12px;
  overflow: hidden;
  text-align: left;
}

body.page-isablack-hub .transistor-ep-row-title {
  font-size: 0.88rem !important;
  font-weight: 500 !important;
  color: rgba(253, 251, 247, 0.85) !important;
  transition: color 0.2s ease;
}

body.page-isablack-hub .transistor-ep-row:hover .transistor-ep-row-title,
body.page-isablack-hub .transistor-ep-row.active .transistor-ep-row-title {
  color: #DE7DA0 !important;
}

body.page-isablack-hub .transistor-ep-duration-col {
  width: 60px;
  text-align: right;
  flex-shrink: 0;
}

body.page-isablack-hub .transistor-ep-row-duration {
  font-size: 0.72rem !important;
  color: rgba(253, 251, 247, 0.45) !important;
}

/* ===== OVERLAY DE DESENVOLVIMENTO DE SEÇÃO ===== */
.hub-podcast-teaser-section,
.hub-courses-teaser-section {
  position: relative !important;
  overflow: hidden !important;
}

.hub-section-standby-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 25 !important;
  background: rgba(18, 7, 13, 0.65) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 30px 20px !important;
  box-sizing: border-box !important;
}

.hub-courses-teaser-section .hub-section-standby-overlay {
  background: rgba(10, 10, 10, 0.65) !important;
}

.hub-section-standby-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  gap: 16px !important;
  background: rgba(28, 12, 20, 0.92) !important;
  border: 1px solid rgba(222, 125, 160, 0.35) !important;
  border-radius: 20px !important;
  padding: 36px 32px !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7) !important;
  max-width: 380px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.hub-courses-teaser-section .hub-section-standby-card {
  background: rgba(20, 20, 20, 0.92) !important;
  border-color: rgba(204, 255, 0, 0.35) !important;
}

.hub-standby-spinner {
  width: 40px !important;
  height: 40px !important;
  border: 3px solid rgba(222, 125, 160, 0.2) !important;
  border-top-color: #DE7DA0 !important;
  border-right-color: #DE7DA0 !important;
  border-radius: 50% !important;
  animation: hubSpin 1s linear infinite !important;
  box-shadow: 0 0 15px rgba(222, 125, 160, 0.25) !important;
}

.hub-courses-teaser-section .hub-standby-spinner {
  border-color: rgba(204, 255, 0, 0.2) !important;
  border-top-color: #CCFF00 !important;
  border-right-color: #CCFF00 !important;
  box-shadow: 0 0 15px rgba(204, 255, 0, 0.35) !important;
}

@keyframes hubSpin {
  to { transform: rotate(360deg); }
}

.hub-standby-logo {
  max-height: 44px !important;
  width: auto !important;
  object-fit: contain !important;
  filter: brightness(0) invert(1) !important;
  margin: 4px 0 !important;
}

.hub-standby-status {
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em !important;
  color: #DE7DA0 !important;
  text-transform: uppercase !important;
}

.hub-courses-teaser-section .hub-standby-status {
  color: #CCFF00 !important;
}

/* ===== SEÇÃO UNIFICADA DE PROJETOS EM DESENVOLVIMENTO (FULL SPLIT TELA 50/50) ===== */
.hub-ecosystem-standby-section {
  padding: 80px 0 0 0 !important;
  background: #120A0E !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  width: 100% !important;
  overflow: hidden !important;
}

.ecosystem-standby-wrapper {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.ecosystem-standby-header {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 24px;
}

.ecosystem-standby-tag {
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em !important;
  color: #FFFFFF !important;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 12px;
}

.ecosystem-standby-title {
  font-family: 'Syne', sans-serif !important;
  font-size: 2.4rem !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  margin: 0 0 12px 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9) !important;
}

.ecosystem-standby-subtitle {
  font-family: 'Syne', sans-serif !important;
  font-size: 1.1rem !important;
  font-weight: 500 !important;
  color: #E2E8F0 !important;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8) !important;
}

/* Grid de Tela Partida no Meio (50% / 50%) */
body.page-isablack-hub .ecosystem-standby-grid,
.ecosystem-standby-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  width: 100% !important;
  gap: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Cards Imersivos Full-Height 50% */
.ecosystem-project-card {
  position: relative !important;
  min-height: 560px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  overflow: hidden !important;
  background: #181516 !important;
  border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 0 !important;
  transition: all 0.4s ease !important;
}

.ecosystem-project-card:last-child {
  border-right: none !important;
}

/* Imagem de Fundo de Cada Card */
.project-card-bg-img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-size: cover !important;
  background-position: center !important;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
  z-index: 1 !important;
}

.ecosystem-project-card:hover .project-card-bg-img {
  transform: scale(1.06) !important;
}

/* Overlay Escuro com Gradiente Luxuoso de Alta Legibilidade */
.project-card-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 2 !important;
  transition: background 0.4s ease !important;
}

.ecosystem-project-card.podcast-theme .project-card-overlay {
  background: linear-gradient(180deg, rgba(22, 9, 16, 0.75) 0%, rgba(18, 7, 13, 0.90) 50%, rgba(12, 4, 8, 0.98) 100%) !important;
}

.ecosystem-project-card.courses-theme .project-card-overlay {
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.75) 0%, rgba(10, 10, 10, 0.90) 50%, rgba(5, 5, 5, 0.98) 100%) !important;
}

.ecosystem-project-card.podcast-theme:hover .project-card-overlay {
  background: linear-gradient(180deg, rgba(22, 9, 16, 0.65) 0%, rgba(18, 7, 13, 0.85) 50%, rgba(12, 4, 8, 0.96) 100%) !important;
}

.ecosystem-project-card.courses-theme:hover .project-card-overlay {
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.65) 0%, rgba(10, 10, 10, 0.85) 50%, rgba(5, 5, 5, 0.96) 100%) !important;
}

/* Corpo e Elementos Internos do Card */
.project-card-body {
  position: relative !important;
  z-index: 3 !important;
  padding: 56px 48px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 16px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.project-badge {
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.75rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.14em !important;
  padding: 7px 18px !important;
  border-radius: 50px !important;
  display: inline-block !important;
  text-transform: uppercase !important;
}

.project-badge.pink {
  background: rgba(222, 125, 160, 0.25) !important;
  color: #FFB3D1 !important;
  border: 1px solid rgba(222, 125, 160, 0.6) !important;
  backdrop-filter: blur(12px) !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8) !important;
}

.project-badge.yellow {
  background: rgba(204, 255, 0, 0.2) !important;
  color: #CCFF00 !important;
  border: 1px solid rgba(204, 255, 0, 0.6) !important;
  backdrop-filter: blur(12px) !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8) !important;
}

.project-card-logo {
  height: 48px !important;
  width: auto !important;
  object-fit: contain !important;
  filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.8)) !important;
  margin: 6px 0 8px 0 !important;
}

.project-card-desc {
  font-family: 'Syne', sans-serif !important;
  font-size: 1.08rem !important;
  font-weight: 500 !important;
  color: #FFFFFF !important;
  line-height: 1.7 !important;
  margin: 0 0 12px 0 !important;
  max-width: 520px !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95), 0 1px 4px rgba(0, 0, 0, 0.9) !important;
}

.project-card-link {
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-decoration: none !important;
  padding: 13px 26px !important;
  border-radius: 50px !important;
  transition: all 0.3s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  text-transform: uppercase !important;
}

.project-card-link.pink {
  color: #FFFFFF !important;
  border: 1.5px solid rgba(222, 125, 160, 0.6) !important;
  background: rgba(222, 125, 160, 0.22) !important;
  backdrop-filter: blur(12px) !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8) !important;
}
.project-card-link.pink:hover {
  color: #FFFFFF !important;
  background: #DE7DA0 !important;
  border-color: #DE7DA0 !important;
  box-shadow: 0 8px 24px rgba(222, 125, 160, 0.5) !important;
  transform: translateY(-2px) !important;
}

.project-card-link.yellow {
  color: #CCFF00 !important;
  border: 1.5px solid rgba(204, 255, 0, 0.6) !important;
  background: rgba(204, 255, 0, 0.18) !important;
  backdrop-filter: blur(12px) !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8) !important;
}
.project-card-link.yellow:hover {
  color: #000000 !important;
  background: #CCFF00 !important;
  border-color: #CCFF00 !important;
  box-shadow: 0 8px 24px rgba(204, 255, 0, 0.5) !important;
  transform: translateY(-2px) !important;
}

/* Responsividade: Telas menores / celulares empilham os cards 100% de largura */
@media screen and (max-width: 991px), screen and (max-aspect-ratio: 1/1) {
  body.page-isablack-hub .ecosystem-standby-grid,
  .ecosystem-standby-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  .ecosystem-project-card {
    min-height: 460px !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  }
  .project-card-body {
    padding: 40px 24px !important;
  }
}

/* =========================================================
   BALÕES FLUTUANTES DE CONTATO (WHATSAPP & E-MAIL STACK)
   ========================================================= */
.floating-contact-stack {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}

.floating-contact-btn {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.floating-contact-btn:hover {
  transform: scale(1.12) translateY(-2px);
}

.floating-contact-btn.btn-wa {
  background: #25D366;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}

.floating-contact-btn.btn-email {
  background: #211E1F;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.floating-contact-btn .tooltip {
  position: absolute;
  right: 64px;
  background: rgba(12, 12, 12, 0.94);
  color: #FFFFFF;
  font-family: 'Azeret Mono', monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.25s ease;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.floating-contact-btn:hover .tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.floating-pulse {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  pointer-events: none;
  animation: pulse-ring 2.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.btn-wa .floating-pulse {
  border: 2px solid rgba(37, 211, 102, 0.5);
}

.btn-email .floating-pulse {
  border: 2px solid rgba(255, 255, 255, 0.4);
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(0.95); opacity: 0; }
}

@media (max-width: 768px) {
  .floating-contact-stack {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }
  .floating-contact-btn {
    width: 46px;
    height: 46px;
  }
  .floating-contact-btn .tooltip {
    display: none;
  }
}

/* =========================================================
   CARDS MINIMALISTAS DO ECOSSISTEMA (BOTTOM GRADIENT & LOGO)
   ========================================================= */
.ecosystem-project-card {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  min-height: 520px !important;
  overflow: hidden !important;
  text-decoration: none !important;
  cursor: pointer !important;
  border-radius: 0 !important;
}

.project-card-bg-img {
  position: absolute !important;
  inset: 0 !important;
  background-size: cover !important;
  background-position: center !important;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) !important;
  z-index: 1 !important;
}

.ecosystem-project-card:hover .project-card-bg-img {
  transform: scale(1.07) !important;
}

.project-card-bottom-gradient {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 70% !important;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.70) 50%, rgba(0, 0, 0, 0) 100%) !important;
  z-index: 2 !important;
  transition: opacity 0.4s ease !important;
}

.ecosystem-project-card:hover .project-card-bottom-gradient {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.78) 60%, rgba(0, 0, 0, 0) 100%) !important;
}

.project-card-bottom-content {
  position: relative !important;
  z-index: 3 !important;
  padding: 44px 36px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-end !important;
  text-align: center !important;
  gap: 16px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.project-card-bottom-content .project-card-logo {
  height: 64px !important;
  width: auto !important;
  max-width: 80% !important;
  object-fit: contain !important;
  filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.9)) !important;
  transition: transform 0.35s ease !important;
}

.ecosystem-project-card:hover .project-card-logo {
  transform: translateY(-5px) !important;
}

.project-card-coming-soon {
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.88rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  padding: 11px 26px !important;
  border-radius: 40px !important;
  display: inline-block !important;
  transition: all 0.35s ease !important;
}

.project-card-coming-soon.pink {
  color: #FFB3D1 !important;
  background: rgba(222, 125, 160, 0.22) !important;
  border: 1.5px solid rgba(222, 125, 160, 0.65) !important;
  backdrop-filter: blur(12px) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6) !important;
}

.project-card-coming-soon.yellow {
  color: #CCFF00 !important;
  background: rgba(204, 255, 0, 0.18) !important;
  border: 1.5px solid rgba(204, 255, 0, 0.65) !important;
  backdrop-filter: blur(12px) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6) !important;
}

.ecosystem-project-card:hover .project-card-coming-soon.pink {
  background: #DE7DA0 !important;
  color: #FFFFFF !important;
  border-color: #DE7DA0 !important;
  box-shadow: 0 8px 24px rgba(222, 125, 160, 0.65) !important;
  transform: translateY(-2px) !important;
}

.ecosystem-project-card:hover .project-card-coming-soon.yellow {
  background: #CCFF00 !important;
  color: #000000 !important;
  border-color: #CCFF00 !important;
  box-shadow: 0 8px 24px rgba(204, 255, 0, 0.65) !important;
  transform: translateY(-2px) !important;
}

@media (max-width: 768px) {
  .ecosystem-project-card {
    min-height: 380px !important;
  }
  .project-card-bottom-content {
    padding: 32px 20px !important;
    gap: 12px !important;
  }
  .project-card-bottom-content .project-card-logo {
    height: 48px !important;
  }
  .project-card-coming-soon {
    font-size: 0.78rem !important;
    padding: 9px 20px !important;
  }
}

/* =========================================================
   BLOG STANDBY BANNER (EM BREVE)
   ========================================================= */
.blog-standby-banner {
  background: rgba(18, 18, 18, 0.85) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 16px !important;
  padding: 56px 32px !important;
  margin-top: 32px !important;
  text-align: center !important;
  position: relative !important;
  overflow: hidden !important;
  backdrop-filter: blur(16px) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4) !important;
}

.blog-standby-banner::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 260px !important;
  height: 2px !important;
  background: linear-gradient(90deg, transparent, #FFFFFF, transparent) !important;
}

.blog-standby-inner {
  max-width: 640px !important;
  margin: 0 auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 16px !important;
}

.blog-standby-badge {
  font-family: 'Azeret Mono', monospace !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.16em !important;
  color: #FFFFFF !important;
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  padding: 6px 18px !important;
  border-radius: 30px !important;
  text-transform: uppercase !important;
}

.blog-standby-title {
  font-family: 'Syne', sans-serif !important;
  font-size: clamp(1.4rem, 3vw, 2rem) !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  letter-spacing: -0.01em !important;
  margin: 0 !important;
  text-transform: uppercase !important;
}

.blog-standby-desc {
  font-family: 'Syne', sans-serif !important;
  font-size: 0.98rem !important;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.7) !important;
  line-height: 1.7 !important;
  margin: 0 !important;
}


