/*
Theme Name: Segredos da Escala
Theme URI: https://bitbucket.org/brunomonteiro3/segredosdaescala/
Author: Segredos da Escala
Description: Tema inicial do site Segredos da Escala, convertido a partir do preview HTML.
Version: 0.1.1
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 8.2
Text Domain: segredos-da-escala
*/

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

    :root {
      --brand:     #CC2020;
      --brand-dim: #A51A1A;
      --brand-glow: rgba(204,32,32,0.22);
      --bg:        #0A0A0A;
      --surface:   #111111;
      --surface-2: #181818;
      --surface-3: #222222;
      --text:      #F0F0F0;
      --muted:     #888888;
      --subtle:    #333333;
      --announce-h: 44px;
      --header-h:   72px;
      --top-offset: 116px; /* announce + header */
    }

    html { scroll-behavior: smooth; }

    body {
      background-color: var(--bg);
      color: var(--text);
      font-family: 'Source Sans 3', sans-serif;
      font-size: 16px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      /* Ambient glow */
      background-image:
        radial-gradient(ellipse at 15% 0%, rgba(204,32,32,0.06) 0%, transparent 42%),
        radial-gradient(ellipse at 85% 60%, rgba(204,32,32,0.03) 0%, transparent 40%);
    }

    ::-webkit-scrollbar { width: 4px; height: 4px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--subtle); border-radius: 2px; }
    ::-webkit-scrollbar-thumb:hover { background: var(--brand); }

    /* ─── Container ─── */
    .container {
      max-width: 1440px !important;
      margin: 0 auto;
      padding: 0 2.5rem;
    }

    /* ─── Announcement Bar ─── */
    .announce-bar {
      position: relative; /* scrolls with the page — no margin, sits at very top */
      z-index: 20;         /* above hero background layers */
      height: var(--announce-h);
      background: linear-gradient(90deg, #1a0606 0%, #1e0808 40%, #180606 100%);
      border-bottom: 1px solid rgba(204,32,32,0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      cursor: pointer;
      text-decoration: none;
      color: inherit;
      transition: height 0.35s ease, opacity 0.35s ease, background 0.2s;
    }
    .announce-bar:hover {
      background: linear-gradient(90deg, #250808 0%, #2a0a0a 40%, #220707 100%);
    }
    .announce-bar:hover .announce-cta { color: #ff5050; }
    .announce-bar.dismissed { height: 0; opacity: 0; pointer-events: none; }
    .announce-inner {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.82rem;
      font-weight: 500;
      color: #ccc;
      padding: 0 3rem;
      white-space: nowrap;
    }
    .announce-pill {
      background: var(--brand);
      color: #fff;
      font-size: 0.62rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 2px 8px;
      border-radius: 3px;
      animation: pulse-bg 2s ease infinite;
    }
    @keyframes pulse-bg {
      0%, 100% { opacity: 1; }
      50%       { opacity: 0.7; }
    }
    .announce-bar strong { color: #fff; font-weight: 600; }
    .announce-sep { color: rgba(255,255,255,0.2); }
    .announce-cta {
      color: var(--brand);
      font-weight: 700;
      text-decoration: none;
      font-size: 0.82rem;
      transition: color 0.2s;
    }
    .announce-cta:hover { color: #ff4040; }
    .announce-close {
      position: absolute;
      right: 1.25rem;
      background: none;
      border: none;
      color: #666;
      font-size: 1rem;
      cursor: pointer;
      line-height: 1;
      padding: 4px;
      transition: color 0.2s;
    }
    .announce-close:hover { color: #ccc; }

    /* ─── Header ─── */
    .header {
      position: fixed;
      top: var(--announce-h); /* starts below the announce bar; JS moves it to 0 on scroll */
      left: 0; right: 0;
      z-index: 100;
      height: var(--header-h);
      transition: background 0.4s, backdrop-filter 0.4s, top 0.28s ease;
      background: linear-gradient(to bottom, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.5) 70%, transparent 100%);
    }
    .header.scrolled {
      background: rgba(10,10,10,0.95);
      backdrop-filter: blur(24px);
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .header-inner {
      margin: 0 auto;
      padding: 0 2.5rem;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
    }

    /* Logo */
    .logo {
      display: flex;
      align-items: center;
      gap: 14px;
      text-decoration: none;
      flex-shrink: 0;
    }
    .logo-img {
      display: block;
      width: clamp(86px, 8.4vw, 114px);
      height: auto;
    }
    .logo-vturb-img {
      display: block;
      width: clamp(58px, 6vw, 82px);
      height: auto;
      padding-left: 14px;
      border-left: 1px solid rgba(255,255,255,0.14);
      opacity: 0.92;
    }
    .logo-text {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 1.45rem;
      letter-spacing: -0.01em;
      color: #fff;
    }
    .logo-text span { color: var(--brand); }
    .vturb-badge {
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--brand);
      background: rgba(204,32,32,0.12);
      border: 1px solid rgba(204,32,32,0.3);
      padding: 3px 8px;
      border-radius: 3px;
    }

    /* Nav */
    .nav-desktop {
      display: flex;
      align-items: center;
      gap: 0.25rem;
    }
    .nav-item {
      position: relative;
    }
    .nav-item.has-dropdown::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 100%;
      height: 14px;
      z-index: 1;
    }
    .nav-item > a, .nav-item > button {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 0.95rem;
      font-weight: 500;
      color: #aaa;
      text-decoration: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px 12px;
      border-radius: 6px;
      transition: color 0.2s, background 0.2s;
      letter-spacing: 0.01em;
    }
    .nav-item > a:hover, .nav-item > button:hover,
    .nav-item > a.active { color: #fff; background: rgba(255,255,255,0.05); }
    .nav-item > a.active { color: #fff; }
    .nav-chevron {
      width: 14px; height: 14px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      transition: transform 0.25s;
    }
    .nav-item:hover .nav-chevron { transform: rotate(180deg); }
    .nav-item:focus-within .nav-chevron { transform: rotate(180deg); }

    /* Dropdown */
    .nav-dropdown {
      position: absolute;
      top: calc(100% + 8px);
      left: 50%;
      transform: translateX(-50%) translateY(6px);
      background: rgba(16,16,16,0.98);
      backdrop-filter: blur(24px);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 10px;
      padding: 0.4rem;
      min-width: 210px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s, transform 0.2s;
      box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 0 1px rgba(204,32,32,0.08);
      z-index: 120;
    }
    .nav-item:hover .nav-dropdown {
      opacity: 1;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }
    .nav-item:focus-within .nav-dropdown {
      opacity: 1;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }
    .nav-dropdown a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 0.55rem 0.9rem;
      font-size: 0.88rem;
      color: #aaa;
      text-decoration: none;
      border-radius: 6px;
      transition: background 0.15s, color 0.15s;
    }
    .nav-dropdown a:hover { background: rgba(255,255,255,0.06); color: #fff; }
    .nav-dropdown .dd-icon {
      width: 16px; height: 16px;
      fill: none; stroke: var(--brand);
      stroke-width: 2; stroke-linecap: round;
      flex-shrink: 0;
    }
    .nav-dropdown-divider {
      height: 1px;
      background: rgba(255,255,255,0.06);
      margin: 0.3rem 0.5rem;
    }

    /* Pages */
    .page-main {
      position: relative;
      min-height: 65vh;
      padding: calc(var(--top-offset) + 4rem) 0 6rem;
      overflow: hidden;
    }
    .page-ambient {
      position: absolute;
      pointer-events: none;
      border-radius: 999px;
      filter: blur(120px);
      opacity: 0.55;
    }
    .page-ambient-left {
      top: 6rem;
      left: 8%;
      width: 22rem;
      height: 22rem;
      background: rgba(204,32,32,0.12);
    }
    .page-ambient-right {
      right: 10%;
      bottom: 8rem;
      width: 26rem;
      height: 26rem;
      background: rgba(255,255,255,0.035);
    }
    .page-container {
      position: relative;
      z-index: 1;
      max-width: 940px;
    }
    .page-article {
      background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 24px;
      padding: clamp(2rem, 5vw, 4rem);
      box-shadow: 0 28px 90px rgba(0,0,0,0.35);
    }
    .page-header {
      margin-bottom: 2.25rem;
      padding-bottom: 1.5rem;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .page-eyebrow {
      margin-bottom: 0.75rem;
      color: var(--brand);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.9rem;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }
    .page-title {
      color: #fff;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(2.4rem, 6vw, 4.6rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 0.94;
      text-transform: uppercase;
    }
    .page-featured-image {
      margin: 0 0 2rem;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 18px;
      background: #111;
    }
    .page-featured-image img {
      display: block;
      width: 100%;
      height: auto;
    }
    .page-content {
      color: #cfcfcf;
      font-size: 1.08rem;
      line-height: 1.78;
    }
    .page-content > * + * {
      margin-top: 1.25rem;
    }
    .page-content h2,
    .page-content h3,
    .page-content h4 {
      color: #fff;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      letter-spacing: -0.01em;
      line-height: 1.05;
      text-transform: uppercase;
    }
    .page-content h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); margin-top: 2.5rem; }
    .page-content h3 { font-size: clamp(1.4rem, 3vw, 2rem); margin-top: 2rem; }
    .page-content a {
      color: #ff4747;
      text-decoration: none;
      border-bottom: 1px solid rgba(255,71,71,0.35);
      transition: color 0.2s, border-color 0.2s;
    }
    .page-content a:hover {
      color: #fff;
      border-color: #fff;
    }
    .page-content ul,
    .page-content ol {
      padding-left: 1.25rem;
    }
    .page-content li + li {
      margin-top: 0.45rem;
    }
    .page-content blockquote {
      margin: 2rem 0;
      padding: 1.2rem 1.4rem;
      border-left: 3px solid var(--brand);
      border-radius: 0 12px 12px 0;
      background: rgba(255,255,255,0.04);
      color: #fff;
      font-style: italic;
    }
    .page-links {
      margin-top: 2rem;
      color: var(--muted);
      font-size: 0.95rem;
    }

    /* Header actions */
    .header-actions { display: flex; align-items: center; gap: 0.6rem; }
    .search-btn {
      background: none;
      border: none;
      cursor: pointer;
      color: #777;
      padding: 8px;
      border-radius: 6px;
      transition: color 0.2s, background 0.2s;
    }
    .search-btn:hover { color: #fff; background: rgba(255,255,255,0.06); }
    .search-btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
    .btn-subscribe {
      font-size: 0.85rem;
      font-weight: 700;
      color: #fff;
      text-decoration: none;
      background: var(--brand);
      padding: 8px 20px;
      border-radius: 5px;
      letter-spacing: 0.02em;
      transition: background 0.2s, box-shadow 0.2s;
      box-shadow: 0 2px 16px rgba(204,32,32,0.3);
    }
    .btn-subscribe:hover { background: #e02828; box-shadow: 0 4px 24px rgba(204,32,32,0.45); }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
      border-radius: 6px;
    }
    .hamburger span {
      display: block;
      width: 22px; height: 2px;
      background: #ccc;
      border-radius: 2px;
      transition: all 0.3s;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── NOTIFICATIONS ── */
    .notif-wrap {
      position: relative;
    }
    .notif-btn {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px; height: 36px;
      background: none;
      border: none;
      cursor: pointer;
      color: #777;
      border-radius: 6px;
      transition: color 0.2s, background 0.2s;
    }
    .notif-btn:hover { color: #fff; background: rgba(255,255,255,0.06); }
    .notif-btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .notif-panel {
      position: absolute;
      top: calc(100% + 10px);
      right: -8px;
      width: 340px;
      background: #131313;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 14px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.04);
      z-index: 200;
      overflow: hidden;
      transform-origin: top right;
      transform: scale(0.95) translateY(-6px);
      opacity: 0;
      pointer-events: none;
      transition: transform 0.18s cubic-bezier(0.16,1,0.3,1), opacity 0.18s ease;
    }
    .notif-panel.open {
      transform: scale(1) translateY(0);
      opacity: 1;
      pointer-events: all;
    }
    .notif-panel::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(204,32,32,0.5) 50%, transparent);
    }
    .notif-panel-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 14px 10px;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .notif-panel-head-title {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #555;
    }
    .notif-list { max-height: 360px; overflow-y: auto; }
    .notif-list::-webkit-scrollbar { width: 3px; }
    .notif-list::-webkit-scrollbar-track { background: transparent; }
    .notif-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }
    .notif-item {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      padding: 10px 14px;
      text-decoration: none;
      border-bottom: 1px solid rgba(255,255,255,0.04);
      transition: background 0.15s;
      position: relative;
    }
    .notif-item:last-child { border-bottom: none; }
    .notif-item:hover { background: rgba(255,255,255,0.03); }
    .notif-thumb {
      flex-shrink: 0;
      width: 52px; height: 30px;
      border-radius: 6px;
      overflow: hidden;
      background: #1a1a1a;
      margin-top: 2px;
    }
    .notif-thumb img { width: 100%; height: 100%; object-fit: cover; }
    .notif-item-body { flex: 1; min-width: 0; }
    .notif-item-type {
      font-size: 9px;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--brand);
      margin-bottom: 2px;
    }
    .notif-item-title {
      font-size: 13px;
      font-weight: 600;
      color: #c0bcb6;
      line-height: 1.4;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .notif-item:hover .notif-item-title { color: #e8e4de; }
    .notif-item-date {
      font-size: 11px;
      color: #444;
      margin-top: 3px;
    }
    .notif-panel-foot {
      padding: 10px 14px;
      border-top: 1px solid rgba(255,255,255,0.05);
      text-align: center;
    }
    .notif-panel-foot a {
      font-size: 12px;
      font-weight: 600;
      color: #555;
      text-decoration: none;
      transition: color 0.2s;
    }
    .notif-panel-foot a:hover { color: #bbb; }
    .notif-empty {
      padding: 2rem 1rem;
      text-align: center;
      font-size: 13px;
      color: #444;
    }

    /* ── SEARCH OVERLAY ── */
    .search-overlay {
      position: fixed;
      inset: 0;
      z-index: 9998;
      background: rgba(5,5,5,0.92);
      backdrop-filter: blur(18px);
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-top: 14vh;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s ease;
    }
    .search-overlay.open { opacity: 1; pointer-events: all; }
    .search-overlay-close {
      position: absolute;
      top: 1.25rem; right: 1.5rem;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 8px;
      width: 36px; height: 36px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      color: #666;
      transition: color 0.2s, background 0.2s;
    }
    .search-overlay-close:hover { color: #fff; background: rgba(255,255,255,0.09); }
    .search-overlay-inner { width: 100%; max-width: 620px; padding: 0 1.5rem; }
    .search-overlay-field {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 0 16px;
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 14px;
      background: rgba(255,255,255,0.04);
      transition: border-color 0.2s;
    }
    .search-overlay-field:focus-within { border-color: rgba(204,32,32,0.5); }
    .search-overlay-field svg {
      flex-shrink: 0; width: 20px; height: 20px;
      fill: none; stroke: #444; stroke-width: 2; stroke-linecap: round;
    }
    #search-overlay-input {
      flex: 1; background: none; border: none; outline: none;
      font-size: 1.35rem; font-family: inherit;
      color: #fff; padding: 18px 0;
      caret-color: var(--brand);
    }
    #search-overlay-input::placeholder { color: #333; }
    .search-overlay-hint {
      margin-top: 14px; text-align: center; font-size: 11px; color: #333;
    }
    .search-overlay-hint kbd {
      display: inline-block; padding: 1px 5px;
      background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
      border-radius: 3px; font-size: 10px; font-family: inherit; color: #555;
    }

    /* Mobile nav */
    .mobile-nav {
      display: none;
      position: fixed;
      top: var(--header-h); left: 0; right: 0; /* sits just below the fixed header */
      background: rgba(10,10,10,0.98);
      backdrop-filter: blur(24px);
      border-bottom: 1px solid rgba(255,255,255,0.06);
      padding: 1rem 1.5rem 1.5rem;
      z-index: 99;
      flex-direction: column;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      font-size: 1.05rem;
      font-weight: 500;
      color: #bbb;
      text-decoration: none;
      padding: 0.8rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      transition: color 0.2s;
    }
    .mobile-nav a:last-child { border-bottom: none; }
    .mobile-nav a:hover { color: #fff; }

    /* ─── Hero ─── */
    .hero {
      position: relative;
      height: clamp(520px, 68vh, 700px);
      /* hero follows announce bar in flow (y=44px); pull back 44px so bg bleeds to y=0 */
      margin-top: calc(-1 * var(--announce-h));
      /* push content down past both bars (announce 44 + header 72 = 116px) */
      padding-top: var(--top-offset);
      overflow: hidden;
      display: flex;
      align-items: flex-end;
    }
    /* When announce bar is dismissed: hero is already at y=0; no negative margin needed */
    body.no-announce .hero {
      margin-top: 0;
      padding-top: var(--header-h);
    }

    /* ── Swiper hero ── */
    .hero-swiper {
      position: absolute;
      inset: 0;
    }
    /* Override Swiper defaults */
    .hero-swiper .swiper-wrapper { height: 100%; }
    .hero-swiper .swiper-slide  { height: 100%; overflow: hidden; }

    .hero-slide-bg {
      position: absolute; inset: 0;
      background-size: cover;
      background-position: top center;
      transform: scale(1.05);
      transition: transform 10s ease;
      will-change: transform;
    }
    .swiper-slide-active .hero-slide-bg { transform: scale(1.0); }

    .hero-slide-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(
        to top,
        rgba(10,10,10,1)   0%,
        rgba(10,10,10,0.9) 22%,
        rgba(10,10,10,0.6) 50%,
        rgba(10,10,10,0.2) 78%,
        rgba(10,10,10,0.1) 100%
      );
    }
    .hero-slide-overlay-side {
      position: absolute; inset: 0;
      background: linear-gradient(
        to right,
        rgba(10,10,10,0.95) 0%,
        rgba(10,10,10,0.7)  35%,
        rgba(10,10,10,0.15) 62%,
        transparent 78%
      );
    }

    /* Hero content */
    .hero-content {
      position: relative;
      z-index: 5;
      width: 100%;
    }
    .hero-content-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 2.5rem 2.75rem;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 2rem;
    }
    .hero-text-block { max-width: 560px; }

    .ep-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--brand);
      margin-bottom: 1rem;
    }
    .ep-badge::before {
      content: '';
      display: block;
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--brand);
      box-shadow: 0 0 10px var(--brand);
    }
    .hero-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(1.85rem, 2.8vw, 3.1rem);
      font-weight: 800;
      line-height: 1.08;
      letter-spacing: -0.01em;
      color: #fff;
      margin-bottom: 0.7rem;
    }
    .hero-guest {
      font-size: 1rem;
      font-weight: 400;
      color: #bbb;
      margin-bottom: 0.6rem;
    }
    .hero-guest strong { color: #fff; font-weight: 600; }
    .hero-desc {
      font-size: 0.92rem;
      color: #888;
      line-height: 1.6;
      margin-bottom: 1.5rem;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .hero-actions { display: flex; gap: 0.75rem; align-items: center; }

    .btn-play {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--brand);
      color: #fff;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 1.05rem;
      letter-spacing: 0.06em;
      padding: 13px 28px;
      border-radius: 5px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 4px 28px rgba(204,32,32,0.4);
    }
    .btn-play:hover {
      background: #e02828;
      transform: translateY(-1px);
      box-shadow: 0 8px 36px rgba(204,32,32,0.55);
    }
    .btn-play svg { width: 16px; height: 16px; fill: #fff; }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.07);
      color: #ccc;
      font-size: 0.95rem;
      font-weight: 500;
      padding: 13px 22px;
      border-radius: 5px;
      text-decoration: none;
      border: 1px solid rgba(255,255,255,0.1);
      cursor: pointer;
      transition: background 0.2s, color 0.2s;
    }
    .btn-ghost:hover { background: rgba(255,255,255,0.12); color: #fff; }

    /* ── Swiper thumbs ── */
    .hero-thumbs-swiper {
      flex-shrink: 0;
      width: 226px;
      height: 232px; /* 4 × 52px thumbs + 3 × 8px gaps — required for vertical Swiper */
      align-self: flex-end;
      margin-right: 0 !important; /* Swiper adds auto margins by default */
      margin-left: 0 !important;
    }
    .hero-thumbs-swiper .swiper-slide {
      height: auto !important;
      cursor: pointer;
    }
    .hero-thumb {
      display: flex;
      align-items: center;
      gap: 10px;
      background: rgba(0,0,0,0.55);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 7px;
      overflow: hidden;
      transition: border-color 0.3s, background 0.3s, transform 0.2s;
      backdrop-filter: blur(8px);
      height: 52px;
    }
    .hero-thumb:hover { border-color: rgba(255,255,255,0.2); transform: translateX(-2px); }
    .swiper-slide-thumb-active .hero-thumb {
      border-color: var(--brand);
      background: rgba(204,32,32,0.12);
      box-shadow: 0 0 0 1px rgba(204,32,32,0.25);
    }
    .hero-thumb-img {
      width: 68px;
      height: 100%;
      flex-shrink: 0;
      overflow: hidden;
    }
    .hero-thumb-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
    }
    .hero-thumb-info {
      flex: 1;
      padding: 0 10px 0 0;
      min-width: 0;
    }
    .hero-thumb-ep {
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--brand);
      margin-bottom: 2px;
    }
    .hero-thumb-name {
      font-size: 0.78rem;
      font-weight: 600;
      color: #ddd;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    /* ── Swiper nav buttons — live outside .hero-swiper for correct z-index ── */
    #hero-prev, #hero-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10; /* above hero-content z-index:5, below header z-index:100 */
      width: 46px; height: 46px;
      background: rgba(10,10,10,0.55);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 50%;
      backdrop-filter: blur(8px);
      cursor: pointer;
      color: #fff;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s, border-color 0.2s, transform 0.2s;
    }
    #hero-prev:hover, #hero-next:hover {
      background: rgba(204,32,32,0.7);
      border-color: var(--brand);
      transform: translateY(-50%) scale(1.08);
    }
    /* Swiper's CSS handles ::after arrow icons via its own font — just override size */
    #hero-prev { left: 1.5rem; }
    #hero-next { right: 1.5rem; }
    #hero-prev::after,
    #hero-next::after {
      font-size: 14px;
      font-weight: 900;
    }

    /* ─── Stats Strip ─── */
    .stats-strip {
      background: linear-gradient(to right, rgba(204,32,32,0.06) 0%, rgba(204,32,32,0.02) 50%, transparent 100%);
      border-top: 1px solid rgba(204,32,32,0.15);
      border-bottom: 1px solid rgba(255,255,255,0.04);
    }
    .stats-inner {
      margin: 0 auto;
      padding: 0 2.5rem;
      display: flex;
      align-items: stretch;
    }
    .stat-item {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      padding: 1rem 2rem 1rem 0;
      margin-right: 2rem;
      border-right: 1px solid rgba(255,255,255,0.06);
    }
    .stat-item:last-child { border-right: none; margin-right: 0; }
    .stat-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.5rem;
      font-weight: 800;
      color: #fff;
      line-height: 1;
    }
    .stat-num span { color: var(--brand); }
    .stat-label {
      font-size: 0.8rem;
      color: #666;
      font-weight: 500;
      line-height: 1.3;
    }

    /* ─── Sections ─── */
    .section { padding: 4rem 0; }
    .section-alt { background: linear-gradient(to bottom, rgba(255,255,255,0.01) 0%, transparent 100%); }
    .section-header {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      margin-bottom: 1.75rem;
    }
    .section-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.9rem;
      font-weight: 700;
      letter-spacing: 0em;
      color: #fff;
      line-height: 1;
    }
    .section-title .accent {
      background: linear-gradient(135deg, #cc2020 0%, #ff5050 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .section-subtitle {
      font-size: 0.9rem;
      color: #666;
      margin-top: 0.3rem;
    }
    .see-all {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--brand);
      text-decoration: none;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      opacity: 0.85;
      transition: opacity 0.2s;
    }
    .see-all:hover { opacity: 1; }

    /* ─── Horizontal Scroll Row ─── */
    .scroll-row {
      display: flex;
      gap: 1.1rem;
      overflow-x: auto;
      padding-bottom: 0.5rem;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
    }
    .scroll-row::-webkit-scrollbar { height: 3px; }

    /* ─── Episode Card ─── */
    .ep-card {
      flex: 0 0 260px;
      scroll-snap-align: start;
      background: var(--surface-2);
      border-radius: 9px;
      overflow: hidden;
      display: block;
      position: relative;
      cursor: pointer;
      text-decoration: none;
      transition: transform 0.32s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.32s;
      border: 1px solid rgba(255,255,255,0.05);
    }
    .ep-card:hover {
      transform: translateY(-7px) scale(1.015);
      box-shadow: 0 22px 55px rgba(0,0,0,0.75), 0 0 0 1px rgba(204,32,32,0.22);
      z-index: 10;
    }
    .ep-card-thumb {
      position: relative;
      aspect-ratio: 16/9;
      overflow: hidden;
    }
    .ep-card-thumb img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.45s ease;
    }
    .ep-card:hover .ep-card-thumb img { transform: scale(1.07); }
    .ep-card-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%);
      opacity: 0;
      transition: opacity 0.3s;
      display: flex; align-items: center; justify-content: center;
    }
    .ep-card:hover .ep-card-overlay { opacity: 1; }
    .play-icon {
      width: 46px; height: 46px;
      background: rgba(204,32,32,0.92);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 22px rgba(204,32,32,0.5);
      transform: scale(0.75);
      transition: transform 0.25s;
    }
    .ep-card:hover .play-icon { transform: scale(1); }
    .play-icon svg { width: 15px; height: 15px; fill: #fff; margin-left: 2px; }
    .ep-num-badge {
      position: absolute;
      top: 10px; left: 10px;
      background: rgba(10,10,10,0.85);
      border: 1px solid rgba(255,255,255,0.1);
      color: #ccc;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      padding: 3px 8px;
      border-radius: 4px;
      backdrop-filter: blur(4px);
    }
    .ep-card-body { padding: 14px 14px 16px; }
    .ep-guest {
      font-size: 1rem;
      font-weight: 600;
      color: #e8e8e8;
      margin-bottom: 5px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .ep-topic {
      font-size: 0.85rem;
      color: #777;
      line-height: 1.45;
      margin-bottom: 11px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .ep-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .ep-tag {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: var(--brand);
      background: rgba(204,32,32,0.1);
      padding: 3px 8px;
      border-radius: 4px;
    }
    .ep-duration { font-size: 0.8rem; color: #555; font-weight: 500; }

    /* ─── Categories ─── */
    .cats-bar {
      display: flex;
      gap: 0.6rem;
      flex-wrap: wrap;
      margin-bottom: 2rem;
    }
    .cat-pill {
      font-size: 0.88rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      padding: 9px 20px;
      border-radius: 100px;
      border: 1px solid rgba(255,255,255,0.1);
      background: transparent;
      color: #999;
      cursor: pointer;
      transition: all 0.2s;
    }
    .cat-pill:hover { border-color: rgba(204,32,32,0.4); color: #ddd; }
    .cat-pill.active {
      background: var(--brand);
      border-color: var(--brand);
      color: #fff;
      box-shadow: 0 2px 16px rgba(204,32,32,0.35);
    }

    /* ─── Grid ─── */
    .ep-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 1.25rem;
    }
    .ep-grid .ep-card { flex: none; width: 100%; }

    /* ─── Divider ─── */
    .section-divider {
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(255,255,255,0.06), transparent);
    }

    /* ─── Blog ─── */
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 1.5rem;
    }
    .blog-card {
      background: var(--surface-2);
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.05);
      cursor: pointer;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .blog-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 18px 45px rgba(0,0,0,0.65), 0 0 0 1px rgba(204,32,32,0.1);
    }
    .blog-card-img { aspect-ratio: 16/8; overflow: hidden; }
    .blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
    .blog-card:hover .blog-card-img img { transform: scale(1.05); }
    .blog-card-body { padding: 1.3rem 1.4rem 1.5rem; }
    .blog-category {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--brand);
      margin-bottom: 0.5rem;
    }
    .blog-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.3rem;
      font-weight: 700;
      line-height: 1.28;
      color: #e8e8e8;
      margin-bottom: 0.6rem;
    }
    .blog-excerpt {
      font-size: 0.92rem;
      color: #777;
      line-height: 1.62;
      margin-bottom: 1rem;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .blog-meta { display: flex; gap: 0.75rem; font-size: 0.78rem; color: #555; font-weight: 500; }
    .blog-meta span::before { content: '· '; }
    .blog-meta span:first-child::before { content: ''; }

    /* ─── Newsletter ─── */
    .newsletter-section {
      background: linear-gradient(135deg, #140606 0%, #0e0e0e 45%, #090d14 100%);
      border-top: 1px solid rgba(204,32,32,0.12);
      border-bottom: 1px solid rgba(255,255,255,0.04);
      padding: 4rem 0;
      position: relative;
      overflow: hidden;
    }
    .newsletter-section::before {
      content: '';
      position: absolute;
      top: -60px; left: -60px;
      width: 340px; height: 340px;
      background: radial-gradient(circle, rgba(204,32,32,0.1) 0%, transparent 70%);
      pointer-events: none;
    }
    .newsletter-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
      position: relative;
    }
    .newsletter-label {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--brand);
      margin-bottom: 0.75rem;
    }
    .newsletter-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.08;
      margin-bottom: 0.75rem;
    }
    .newsletter-desc {
      font-size: 1rem;
      color: #777;
      line-height: 1.6;
    }
    .newsletter-form {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    .newsletter-input-row {
      display: flex;
      gap: 0.5rem;
    }
    .newsletter-input {
      flex: 1;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 5px;
      padding: 13px 16px;
      font-size: 0.95rem;
      color: #fff;
      font-family: 'Source Sans 3', sans-serif;
      transition: border-color 0.2s, background 0.2s;
      outline: none;
    }
    .newsletter-input::placeholder { color: #555; }
    .newsletter-input:focus {
      border-color: rgba(204,32,32,0.5);
      background: rgba(255,255,255,0.07);
    }
    .newsletter-btn {
      background: var(--brand);
      color: #fff;
      border: none;
      border-radius: 5px;
      padding: 13px 24px;
      font-size: 0.95rem;
      font-weight: 700;
      font-family: 'Barlow Condensed', sans-serif;
      letter-spacing: 0.05em;
      cursor: pointer;
      transition: background 0.2s;
      white-space: nowrap;
    }
    .newsletter-btn:hover { background: #e02828; }
    .newsletter-note {
      font-size: 0.78rem;
      color: #444;
    }
    .newsletter-stats {
      display: flex;
      gap: 2rem;
      margin-top: 1.25rem;
    }
    .nl-stat strong {
      display: block;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.5rem;
      font-weight: 800;
      color: #fff;
    }
    .nl-stat span { font-size: 0.82rem; color: #555; }

    /* ─── Footer ─── */
    footer {
      background:
        radial-gradient(circle at top left, rgba(204,32,32,0.08), transparent 28%),
        linear-gradient(180deg, #121212 0%, #0c0c0c 100%);
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 3.5rem 0 2rem;
    }
    .footer-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 2.5rem;
      margin-bottom: 2.5rem;
    }
    .footer-brand-link {
      display: flex;
      align-items: center;
      gap: 14px;
      width: fit-content;
      margin-bottom: 0.25rem;
      text-decoration: none;
    }
    .footer-logo-img {
      display: block;
      width: 180px;
      max-width: 52vw;
      height: auto;
    }
    .footer-logo-vturb-img {
      display: block;
      width: 82px;
      height: auto;
      padding-left: 14px;
      border-left: 1px solid rgba(255,255,255,0.12);
      opacity: 0.82;
    }
    .footer-logo p { font-size: 0.92rem; color: #b1b1b1; margin-top: 0.75rem; max-width: 320px; line-height: 1.7; }
    .social-row { display: flex; gap: 0.6rem; margin-top: 1rem; }
    .social-btn {
      width: 36px; height: 36px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 7px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      transition: all 0.2s;
      text-decoration: none;
      color: #d0d0d0;
    }
    .social-btn:hover { background: rgba(204,32,32,0.16); border-color: rgba(204,32,32,0.38); color: #fff; }
    .social-btn svg { width: 14px; height: 14px; fill: currentColor; }
    .footer-links h4 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #f2f2f2;
      margin-bottom: 1rem;
    }
    .footer-links ul { list-style: none; }
    .footer-links li { margin-bottom: 0.55rem; }
    .footer-links a { font-size: 0.92rem; color: #bbbbbb; text-decoration: none; transition: color 0.2s; }
    .footer-links a:hover { color: #fff; }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255,255,255,0.08);
    }
    .footer-bottom p { font-size: 0.84rem; color: #9d9d9d; }
    .footer-bottom a { color: #f0f0f0; text-decoration: none; }
    .footer-bottom a:hover { color: var(--brand); }

    /* ─── Noise grain ─── */
    body::after {
      content: '';
      position: fixed; inset: 0;
      pointer-events: none;
      z-index: 9999;
      opacity: 0.022;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-size: 128px 128px;
    }

    /* ─── Animations ─── */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero-text-block > * {
      animation: fadeInUp 0.65s ease both;
    }
    .hero-text-block > *:nth-child(1) { animation-delay: 0.05s; }
    .hero-text-block > *:nth-child(2) { animation-delay: 0.15s; }
    .hero-text-block > *:nth-child(3) { animation-delay: 0.22s; }
    .hero-text-block > *:nth-child(4) { animation-delay: 0.30s; }
    .hero-text-block > *:nth-child(5) { animation-delay: 0.38s; }

    /* ─── Mobile ─── */
    @media (max-width: 900px) {
      .hero-thumbs-swiper { display: none; }
      .newsletter-inner { grid-template-columns: 1fr; gap: 2rem; }
    }
    @media (max-width: 768px) {
      /* Layout base */
      .container { padding: 0 1.25rem; }
      .header-inner { padding: 0 1.25rem; }

      /* Announce bar: hide pill + separator + date; truncate the main text */
      .announce-pill { display: none; }
      .announce-sep  { display: none; }
      .announce-date { display: none; }      /* hide "15 de Abril, 20h" */
      .announce-inner {
        font-size: 0.76rem;
        gap: 0.45rem;
        padding: 0 2.75rem 0 1rem; /* room for close btn on right */
      }
      .announce-inner > span:nth-child(2) { /* main text span */
        flex: 1;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      /* Header */
      .nav-desktop { display: none; }
      .hamburger { display: flex; }
      .header-cta-text { display: none; }
      .logo-img { width: 88px; }
      .logo-vturb-img { width: 62px; padding-left: 10px; }

      /* Hero nav buttons — swipe replaces them on touch */
      #hero-prev, #hero-next { display: none; }

      /* Hero */
      .hero { height: clamp(460px, 72vh, 580px); }
      .hero-content-inner { padding: 0 1.25rem 2rem; flex-direction: column; align-items: flex-start; }
      .hero-title { font-size: clamp(1.75rem, 6.5vw, 2.6rem); }
      .hero-desc { -webkit-line-clamp: 3; }
      .btn-play  { font-size: 0.95rem; padding: 11px 22px; }
      .btn-ghost { font-size: 0.88rem; padding: 11px 16px; }

      /* Sections */
      .section { padding: 2.5rem 0; }
      .section-title { font-size: 1.55rem; }
      .ep-card { flex: 0 0 195px; }
      .ep-grid { grid-template-columns: repeat(2, 1fr); }

      /* Blog */
      .blog-grid { grid-template-columns: 1fr; }

      /* Newsletter */
      .newsletter-input-row { flex-direction: column; }

      /* Footer */
      .footer-top { flex-direction: column; }

      /* Stats */
      .stats-strip { display: none; }
      .stats-inner { flex-wrap: wrap; }
      .stat-item { padding: 0.75rem 1.25rem 0.75rem 0; margin-right: 1.25rem; }
    }

    /* ─── Archive / Category shared (arc-*) ─── */
    .arc-wrap { max-width: 1280px; }

    .arc-hero { margin-bottom: 2.5rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .arc-title-accent { color: var(--brand); display: block; }
    .arc-subtitle { margin-top: 1rem; color: var(--muted); font-size: 1.05rem; max-width: 580px; line-height: 1.65; }

    .arc-breadcrumb { display: flex; align-items: center; gap: 0.4rem; margin-bottom: 1.25rem; font-size: 0.82rem; color: #555; flex-wrap: wrap; }
    .arc-breadcrumb a { color: #666; text-decoration: none; transition: color 0.2s; }
    .arc-breadcrumb a:hover { color: var(--brand); }
    .arc-breadcrumb-sep { color: #444; }
    .arc-breadcrumb-current { color: #aaa; }

    .arc-meta-bar { display: flex; align-items: center; gap: 1rem; margin-top: 1rem; flex-wrap: wrap; }
    .arc-ep-count { font-size: 0.85rem; color: #555; }
    .arc-ep-count strong { color: #aaa; }

    .arc-search { margin-top: 1.75rem; max-width: 520px; }
    .arc-search-inner {
      display: flex; align-items: center; gap: 0.6rem;
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
      border-radius: 10px; padding: 0 1rem; transition: border-color 0.2s, background 0.2s;
    }
    .arc-search-inner:focus-within { border-color: rgba(204,32,32,0.5); background: rgba(255,255,255,0.06); }
    .arc-search-icon { width: 16px; height: 16px; fill: none; stroke: #666; stroke-width: 2; stroke-linecap: round; flex-shrink: 0; }
    #ep-search { flex: 1; background: none; border: none; outline: none; color: #eee; font-size: 0.95rem; padding: 0.85rem 0; font-family: 'Source Sans 3', sans-serif; }
    #ep-search::placeholder { color: #555; }
    .arc-search-clear { background: none; border: none; cursor: pointer; color: #555; padding: 4px; display: none; align-items: center; justify-content: center; transition: color 0.2s; }
    .arc-search-clear.visible { display: flex; }
    .arc-search-clear:hover { color: #aaa; }
    .arc-search-clear svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }

    .arc-controls { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
    .arc-cats { margin: 0; flex: 1; }
    .arc-cat-count { display: inline-block; font-size: 0.68rem; font-weight: 600; color: var(--muted); background: rgba(255,255,255,0.07); padding: 1px 6px; border-radius: 20px; margin-left: 3px; vertical-align: middle; line-height: 1.6; }
    .cat-pill.active .arc-cat-count { color: rgba(255,255,255,0.75); background: rgba(255,255,255,0.15); }
    .arc-sort select { appearance: none; background: rgba(255,255,255,0.04) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 12px center; border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: #aaa; font-size: 0.88rem; font-family: 'Source Sans 3', sans-serif; padding: 9px 34px 9px 14px; cursor: pointer; outline: none; transition: border-color 0.2s, color 0.2s; white-space: nowrap; }
    .arc-sort select:hover { border-color: rgba(255,255,255,0.2); color: #ddd; }

    .arc-no-results { text-align: center; color: var(--muted); padding: 4rem 0; font-size: 1rem; }
    .arc-empty { grid-column: 1 / -1; color: var(--muted); }

    .arc-pagination { margin-top: 3rem; }
    .arc-pagination .nav-links { display: flex; align-items: center; justify-content: center; gap: 0.4rem; flex-wrap: wrap; }
    .arc-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 42px; padding: 0 0.8rem; border-radius: 8px; font-size: 0.9rem; font-weight: 600; text-decoration: none; transition: background 0.2s, color 0.2s; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); color: #aaa; }
    .arc-pagination .page-numbers:hover { background: rgba(255,255,255,0.1); color: #fff; }
    .arc-pagination .page-numbers.current { background: var(--brand); border-color: var(--brand); color: #fff; }
    .arc-pagination .page-numbers.dots { background: none; border-color: transparent; color: #555; pointer-events: none; }

    .arc-vturb-cta { margin-top: 4rem; border-radius: 20px; background: linear-gradient(135deg, rgba(204,32,32,0.13) 0%, rgba(204,32,32,0.04) 55%, rgba(255,255,255,0.025) 100%); border: 1px solid rgba(204,32,32,0.22); padding: clamp(2rem, 4vw, 3.5rem); position: relative; overflow: hidden; }
    .arc-vturb-cta::before { content: ''; position: absolute; top: -60px; right: -60px; width: 320px; height: 320px; background: radial-gradient(ellipse, rgba(204,32,32,0.14) 0%, transparent 68%); pointer-events: none; }
    .arc-vturb-cta-inner { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center; }
    .arc-vturb-eyebrow { display: inline-block; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand); margin-bottom: 0.75rem; }
    .arc-vturb-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; letter-spacing: -0.02em; text-transform: uppercase; color: #fff; line-height: 1.05; margin-bottom: 1rem; }
    .arc-vturb-desc { color: #aaa; font-size: 0.97rem; line-height: 1.65; max-width: 500px; margin-bottom: 1.5rem; }
    .arc-vturb-actions { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
    .arc-vturb-note { font-size: 0.82rem; color: #555; }
    .arc-vturb-stats { display: flex; flex-direction: column; gap: 1rem; min-width: 148px; }
    .arc-vturb-stat { text-align: center; padding: 1rem 1.25rem; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; }
    .arc-vturb-stat-num { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 2.1rem; font-weight: 800; color: var(--brand); line-height: 1; margin-bottom: 0.3rem; }
    .arc-stat-sup { font-size: 1.2rem; }
    .arc-vturb-stat-label { font-size: 0.74rem; color: #666; line-height: 1.35; }

    .arc-clusters { margin-top: 2.5rem; padding-top: 1.75rem; border-top: 1px solid rgba(255,255,255,0.05); }
    .arc-clusters-label { font-size: 0.8rem; color: #555; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.8rem; }
    .arc-clusters-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
    .arc-cluster-pill { font-size: 0.85rem; color: #888; text-decoration: none; padding: 6px 14px; border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; transition: color 0.2s, border-color 0.2s, background 0.2s; }
    .arc-cluster-pill:hover { color: #fff; border-color: rgba(204,32,32,0.4); background: rgba(204,32,32,0.06); }

    .arc-newsletter { margin-top: 3rem; }

    .arc-other-cats { margin-top: 2.5rem; padding-top: 1.75rem; border-top: 1px solid rgba(255,255,255,0.05); }
    .arc-other-cats-label { font-size: 0.8rem; color: #555; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.8rem; }
    .arc-other-cats-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
    .arc-other-cat-pill { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; color: #888; text-decoration: none; padding: 7px 16px; border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; transition: color 0.2s, border-color 0.2s, background 0.2s; }
    .arc-other-cat-pill:hover { color: #fff; border-color: rgba(204,32,32,0.35); background: rgba(204,32,32,0.06); }
    .arc-other-cat-count { font-size: 0.72rem; color: #555; background: rgba(255,255,255,0.06); padding: 1px 6px; border-radius: 10px; }

    @media (max-width: 900px) {
      .arc-vturb-cta-inner { grid-template-columns: 1fr; }
      .arc-vturb-stats { flex-direction: row; flex-wrap: wrap; justify-content: flex-start; }
      .arc-vturb-stat { flex: 1 0 120px; }
    }
    @media (max-width: 640px) {
      .arc-controls { flex-direction: column; align-items: stretch; }
      .arc-sort select { width: 100%; }
      .arc-title-accent { display: inline; }
    }

    /* ─── Guia cards ─── */
    .guia-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .guia-card {
      display: flex;
      flex-direction: column;
      background: var(--surface);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 14px;
      overflow: hidden;
      text-decoration: none;
      transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    }
    .guia-card:hover {
      border-color: rgba(204,32,32,0.35);
      transform: translateY(-3px);
      box-shadow: 0 16px 40px rgba(0,0,0,0.35);
    }
    .guia-card-thumb { aspect-ratio: 16/9; overflow: hidden; background: #111; }
    .guia-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.35s; }
    .guia-card:hover .guia-card-thumb img { transform: scale(1.06); }
    .guia-card-body { display: flex; flex-direction: column; gap: 0.6rem; padding: 1.25rem 1.25rem 1.5rem; flex: 1; }
    .guia-card-meta { display: flex; align-items: center; gap: 0.75rem; }
    .guia-card-tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand); background: rgba(204,32,32,0.1); border: 1px solid rgba(204,32,32,0.2); padding: 2px 9px; border-radius: 20px; }
    .guia-card-time { display: flex; align-items: center; gap: 4px; font-size: 0.8rem; color: #555; }
    .guia-card-time svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
    .guia-card-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.01em; color: #eee; line-height: 1.15; }
    .guia-card:hover .guia-card-title { color: #fff; }
    .guia-card-excerpt { font-size: 0.88rem; color: #666; line-height: 1.6; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
    .guia-card-cta { font-size: 0.85rem; font-weight: 700; color: var(--brand); margin-top: 0.25rem; transition: letter-spacing 0.2s; }
    .guia-card:hover .guia-card-cta { letter-spacing: 0.03em; }

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

    /* Extra small screens */
    @media (max-width: 480px) {
      .logo { gap: 8px; }
      .logo-img { width: 76px; }
      .logo-vturb-img { width: 52px; padding-left: 8px; }
      .ep-grid { grid-template-columns: 1fr; }
      .hero-actions { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
      .btn-play, .btn-ghost { width: 100%; justify-content: center; }
      .cats-bar { gap: 0.4rem; }
      .cat-pill { font-size: 0.8rem; padding: 7px 14px; }
    }
