/*
 * ═══════════════════════════════════════════════════════════════════
 * THEME: PULSE — Clean & Minimal (Airbnb-inspired)
 * Design flat, arejado, sem glassmorphism, sem neon glow.
 * Paleta light: branco/cinza Airbnb | dark: escuro neutro.
 * ═══════════════════════════════════════════════════════════════════
 */
@import url("../../assets/css/style.css");

/* ═══════════════════════════════════════════════════════════════════
   DESIGN TOKENS — Dark Mode (Padrão :root)
   ═══════════════════════════════════════════════════════════════════ */
:root {
    /* Accent — herdados do painel admin (?page=colors-styles) */
    --neon-pink: var(--color-primary, #ff7cf5);
    --neon-pink-rgb: var(--primary-rgb, 255, 124, 245);
    --neon-cyan: var(--color-secondary, #00e3fd);
    --neon-cyan-rgb: var(--secondary-rgb, 0, 227, 253);
    --neon-tertiary: var(--color-tertiary, #ff6b9b);
    --neon-tertiary-rgb: var(--tertiary-rgb, 255, 107, 155);

    /* Paleta PULSE — Dark */
    --bg-primary: #121212;
    --bg-secondary: #212121;
    --bg-tertiary: #2E2E2E;
    --text-primary: #EFEFEF;
    --text-secondary: #A0A0A0;
    --border-color: #3A3A3A;

    /* Aliases de compatibilidade com módulos herdados */
    --neon-text: var(--text-primary);
    --neon-text-soft: rgba(239, 239, 239, 0.72);
    --neon-text-muted: var(--text-secondary);
    --neon-surface: var(--bg-secondary);
    --neon-surface-container: var(--bg-tertiary);
    --neon-surface-container-high: var(--bg-tertiary);
    --neon-surface-strong: var(--bg-primary);
    --neon-surface-bright: var(--bg-tertiary);
    --neon-surface-hover: var(--bg-tertiary);
    --neon-outline-variant: var(--border-color);
    --neon-bg-deep: var(--bg-primary);
    --neon-glass-border: var(--border-color);
    --neon-glass-border-hover: var(--color-primary);
    --neon-blur: none;
    --neon-blur-strong: none;

    /* Cards */
    --card-bg: var(--bg-secondary);
    --bg-card: var(--bg-secondary);
    --bg-card-hover: var(--bg-tertiary);
    --bg-hover: var(--bg-tertiary);
    --header-bg: var(--bg-primary);
    --glass-bg: var(--bg-secondary);
    --glass-border: var(--border-color);
    --border-light: var(--border-color);
    --text-muted: var(--text-secondary);

    /* Sombras — sutis na PULSE */
    --glass-shadow: 0 1px 4px rgba(0,0,0,0.25);
    --shadow-sm: 0 1px 4px rgba(0,0,0,0.2);
    --shadow-md: 0 2px 12px rgba(0,0,0,0.3);
    --shadow-lg: 0 4px 24px rgba(0,0,0,0.4);
    --shadow-hover: 0 2px 12px rgba(0,0,0,0.35);

    /* Glow desativado na PULSE */
    --neon-glow-pink-sm: none;
    --neon-glow-pink-md: none;
    --neon-glow-cyan-sm: none;
    --neon-glow-cyan-md: none;
    --pill-glow: none;
    --team-glow: none;
    --shadow-glow-pink: none;
    --shadow-glow-cyan: none;

    /* Radius */
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --neon-radius-sm: 8px;
    --neon-radius-md: 12px;
    --neon-radius-lg: 16px;
    --neon-radius-pill: 9999px;
    --card-radius: 12px;
}

/* ═══════════════════════════════════════════════════════════════════
   LIGHT MODE — body.theme-light
   ═══════════════════════════════════════════════════════════════════ */
body.theme-light {
    /* Paleta PULSE — Light (Airbnb) */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F7F7F7;
    --bg-tertiary: #EFEFEF;
    --text-primary: #222222;
    --text-secondary: #717171;
    --border-color: #DDDDDD;

    /* Aliases */
    --neon-text: var(--text-primary);
    --neon-text-soft: rgba(34, 34, 34, 0.72);
    --neon-text-muted: var(--text-secondary);
    --neon-surface: var(--bg-secondary);
    --neon-surface-container: var(--bg-tertiary);
    --neon-surface-container-high: var(--bg-tertiary);
    --neon-surface-strong: var(--bg-primary);
    --neon-surface-hover: var(--bg-tertiary);
    --neon-bg-deep: var(--bg-primary);
    --neon-glass-border: var(--border-color);
    --card-bg: var(--bg-primary);
    --bg-card: var(--bg-primary);
    --bg-card-hover: var(--bg-tertiary);
    --bg-hover: var(--bg-tertiary);
    --header-bg: var(--bg-primary);
    --glass-bg: var(--bg-primary);
    --glass-border: var(--border-color);
    --border-light: var(--border-color);
    --text-muted: var(--text-secondary);

    /* Sombras mais leves no modo claro */
    --glass-shadow: 0 1px 4px rgba(0,0,0,0.06);
    --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
    --shadow-md: 0 2px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 4px 24px rgba(0,0,0,0.10);
    --shadow-hover: 0 2px 12px rgba(0,0,0,0.08);

    background: var(--bg-primary) !important;
    color: var(--text-primary) !important;
}

/* ═══════════════════════════════════════════════════════════════════
   BODY + RESET
   ═══════════════════════════════════════════════════════════════════ */
body {
    background: var(--bg-primary) !important;
    color: var(--text-primary) !important;
    font-family: var(--body-font-family, 'Space Grotesk', 'Inter', sans-serif) !important;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

*, *::before, *::after { box-sizing: border-box; }
img { max-width: 100%; height: auto; display: block; }

/* ═══════════════════════════════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════════════════════════════ */
#mainContent {
    padding-top: 72px;
    padding-bottom: 80px;
    min-height: calc(100vh - 72px);
}

.container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
}

.section, .s-section { padding: 80px 0; }
.section-alt { background: var(--bg-secondary); }

/* ═══════════════════════════════════════════════════════════════════
   PAGE HEADER — Suprimido no tema PULSE
   Breadcrumb + título com barra lateral + linha divisória não fazem
   parte do design PULSE. O HTML em pages/ permanece intacto para
   que WAVE e NEON continuem funcionando normalmente.
   ═══════════════════════════════════════════════════════════════════ */
.page-header {
    display: none !important;
}

/* Restitui o espaço superior que .page-header ocupava (padding 32px + margin-bottom 24px) */
.container > .page-body {
    padding-top: 40px;
}
@media (max-width: 768px) {
    .container > .page-body {
        padding-top: 24px;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   HERO CARDS — Suprimidos no tema PULSE
   /noticias (.nl-hero) e /eventos (.ev-hero) exibem um card fullwidth
   de destaque antes do grid. O design PULSE usa grid uniforme sem
   hierarquia visual extra — o hero é ocultado apenas por CSS.
   O HTML em pages/ permanece intacto para WAVE e NEON.
   Sem ajuste de espaçamento necessário: .nl-filters e .ev-filters
   já têm margin-bottom: 36px que serve de respiro para o grid.
   ═══════════════════════════════════════════════════════════════════ */
.nl-hero,
.ev-hero {
    display: none !important;
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION HEADERS — padrão unificado PULSE
   Gradient bars removidas; label + título simples.
   ═══════════════════════════════════════════════════════════════════ */

/* s-section-header (pages/home.php) */
.s-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.s-section-titles { display: flex; flex-direction: column; gap: 4px; }

.s-section-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.25;
    font-family: var(--font-family, sans-serif);
    padding-left: 0;
    position: static;
}
.s-section-title::before { display: none; }

.s-section-subtitle {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
    padding-left: 0;
}

.s-section-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    white-space: nowrap;
    transition: gap 0.2s ease;
}
.s-section-cta:hover { gap: 10px; }

/* section-header genérico */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.25;
    font-family: var(--font-family, sans-serif);
    padding-left: 0;
    position: static;
}
.section-title::before { display: none; }

.section-subtitle {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 4px 0 0;
    padding-left: 0;
}

/* pulse-news-header (módulos: notícias, programação, promos, equipe, podcasts) */
.pulse-news-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}
.pulse-news-header__bar { display: none; }
.pulse-news-header__text { display: flex; flex-direction: column; gap: 4px; }
.pulse-news-header__label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-primary);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.pulse-news-header__title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.25;
    font-family: var(--font-family, sans-serif);
}

/* pulse-section-header (eventos) */
.pulse-section-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 40px;
}
.pulse-section-header__bar { display: none; }
.pulse-section-header__text { display: flex; flex-direction: column; gap: 4px; }
.pulse-section-header__label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-tertiary, var(--color-primary));
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.pulse-section-header__title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.25;
    font-family: var(--font-family, sans-serif);
}

/* pulse-chart-header (top músicas) */
.pulse-chart-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 40px;
}
.pulse-chart-header__bar { display: none; }
.pulse-chart-header__text { display: flex; flex-direction: column; gap: 4px; }
.pulse-chart-header__label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-primary);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.pulse-chart-header__title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.25;
    font-family: var(--font-family, sans-serif);
}
.pulse-chart-header__cta {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-secondary, var(--color-primary));
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
    padding-top: 6px;
}
.pulse-chart-header__cta:hover { color: var(--color-primary); }

/* pulse-promo-header */
.pulse-promo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}
.pulse-promo-header__title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   GLASS CARD — utility (sem glass na PULSE)
   ═══════════════════════════════════════════════════════════════════ */
.glass-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.glass-card:hover { box-shadow: var(--shadow-hover); }

/* ═══════════════════════════════════════════════════════════════════
   AIRBNB CARD — padrão unificado
   Usado por: pulse-promo-card, notícias, eventos
   Imagem: border-radius 12px, overflow hidden
   Wrapper: transparent, sem borda, sem overflow
   Hover: translateY(-2px), sombra sutil
   ═══════════════════════════════════════════════════════════════════ */
.pulse-promo-card {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.2s ease;
}
.pulse-promo-card:hover { transform: translateY(-2px); }

/* Imagem — radius + overflow aqui */
.pulse-promo-card__img {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--radius-md);
    flex-shrink: 0;
    background: var(--bg-tertiary);
}
.pulse-promo-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.pulse-promo-card:hover .pulse-promo-card__img img { transform: scale(1.04); }
.pulse-promo-card__img-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    font-size: 2rem;
}

/* Badge sobre a imagem */
.pulse-promo-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.5);
    border-radius: 9999px;
    padding: 4px 10px;
    z-index: 2;
}
.pulse-promo-badge span {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.pulse-promo-badge--primary span  { color: var(--color-primary); }
.pulse-promo-badge--secondary span { color: var(--color-secondary); }
.pulse-promo-badge--tertiary span  { color: var(--color-tertiary); }

/* Body */
.pulse-promo-card__body {
    padding: 14px 0 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Título */
.pulse-promo-card__title {
    font-family: var(--card-title-font-family, var(--title-font-family, sans-serif));
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 6px;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

/* Descrição */
.pulse-promo-card__desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0 0 16px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Divider */
.pulse-promo-card__divider {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 8px 0 0;
    width: 100%;
}

/* Footer do card */
.pulse-promo-card__footer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 10px;
}

/* Variante notícia: data + CTA */
.pulse-news-card__footer {
    justify-content: space-between !important;
    align-items: center !important;
    gap: 12px !important;
}

/* Data */
.pulse-news-card__date {
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

/* CTAs */
.pulse-promo-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: color 0.2s ease;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
}
.pulse-promo-card__cta--primary { color: var(--color-primary); }
.pulse-promo-card__cta--primary:hover { color: var(--color-secondary, var(--color-primary)); }
.pulse-promo-card__cta--ended {
    color: var(--text-secondary);
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

/* Badge de notícia (top-left) */
.pulse-news-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    right: auto;
}

/* ═══════════════════════════════════════════════════════════════════
   NEWS SECTION
   ═══════════════════════════════════════════════════════════════════ */
.pulse-news-section { padding: 80px 0; }

.pulse-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Cards legados — ocultos */
.pulse-news-card,
.s-news-card,
.s-news-grid { display: none !important; }

/* Variantes de cor (pill) — mantidas mas sem glow */
.pulse-news-card--var-1,
.pulse-news-card--var-2,
.pulse-news-card--var-3 { display: none; }

@media (max-width: 1024px) { .pulse-news-grid { grid-template-columns: repeat(2,1fr); gap: 20px; } }
@media (max-width: 640px) {
    .pulse-news-section { padding: 60px 0; }
    .pulse-news-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ═══════════════════════════════════════════════════════════════════
   PROMOS SECTION
   ═══════════════════════════════════════════════════════════════════ */
.pulse-promo-section { padding: 80px 0; }

.pulse-promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Light mode override (herda transparente do card) */
body.theme-light .pulse-promo-card { background: transparent; }
body.theme-light .pulse-promo-card:hover,
[data-theme="light"] .pulse-promo-card:hover { background: transparent; }

@media (max-width: 1024px) { .pulse-promo-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px) {
    .pulse-promo-section { padding: 60px 0; }
    .pulse-promo-grid { grid-template-columns: 1fr; gap: 20px; }
    .pulse-promo-card__body { padding: 12px 0 0; }
    .pulse-promo-card__title { font-size: 0.95rem; }
}

/* ═══════════════════════════════════════════════════════════════════
   EVENTS SECTION
   ═══════════════════════════════════════════════════════════════════ */
.pulse-events-section { padding: 80px 0; }

.pulse-events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Variantes de acento */
.pulse-event-card--var-1 { --event-accent: var(--color-primary);  --event-accent-rgb: var(--primary-rgb); }
.pulse-event-card--var-2 { --event-accent: var(--color-secondary); --event-accent-rgb: var(--secondary-rgb); }
.pulse-event-card--var-3 { --event-accent: var(--color-tertiary);  --event-accent-rgb: var(--tertiary-rgb); }

/* Event card — Airbnb pattern */
.pulse-event-card {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    transition: transform 0.2s ease;
}
.pulse-event-card:hover { transform: translateY(-2px); }

.pulse-event-card__img {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--bg-tertiary);
}
.pulse-event-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}
.pulse-event-card:hover .pulse-event-card__img img { transform: scale(1.04); }
.pulse-event-card__img-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    font-size: 2.5rem;
    color: var(--text-secondary);
    opacity: 0.6;
}

/* Badge de data */
.pulse-event-card__date-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0,0,0,0.6);
    border-radius: 8px;
    padding: 8px 12px;
    text-align: center;
    min-width: 52px;
    z-index: 2;
}
.pulse-event-card__date-day {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--event-accent, var(--color-primary));
    line-height: 1;
}
.pulse-event-card__date-month {
    display: block;
    font-size: 0.6rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-top: 2px;
}

.pulse-event-card__today-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(239,68,68,0.9);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 50px;
    z-index: 2;
    animation: pulse-dot 2s ease-in-out infinite;
}

.pulse-event-card__body {
    padding: 14px 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.pulse-event-card__title {
    font-family: var(--card-title-font-family, var(--title-font-family, sans-serif));
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.2s ease;
}
.pulse-event-card:hover .pulse-event-card__title { color: var(--event-accent, var(--color-primary)); }

.pulse-event-card__meta {
    font-size: 0.75rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.pulse-event-card__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 0;
    border-radius: 9999px;
    border: 1px solid rgba(var(--event-accent-rgb, var(--primary-rgb)), 0.3);
    color: var(--event-accent, var(--color-primary));
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    background: transparent;
    transition: background 0.2s ease, color 0.2s ease;
}
.pulse-event-card__cta:hover { background: var(--event-accent, var(--color-primary)); color: #fff; }

/* Legacy s-event */
.s-events-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.s-event-card { background: var(--bg-secondary); border: 1px solid var(--border-color); border-radius: var(--radius-md); overflow: hidden; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.s-event-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.s-event-card__img-wrap { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.s-event-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.35s ease; }
.s-event-card:hover .s-event-card__img-wrap img { transform: scale(1.04); }
.s-event-date-badge { position: absolute; top: 12px; left: 12px; background: var(--color-primary); color: #fff; border-radius: 8px; padding: 8px 14px; text-align: center; min-width: 52px; z-index: 2; }
.s-event-date-badge .s-day { display: block; font-size: 1.4rem; font-weight: 900; line-height: 1; }
.s-event-date-badge .s-month { display: block; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.9; }
.s-event-today-badge { position: absolute; top: 12px; right: 12px; background: rgba(239,68,68,0.9); color: #fff; font-size: 0.7rem; font-weight: 800; padding: 4px 10px; border-radius: 50px; z-index: 2; animation: pulse-dot 2s ease-in-out infinite; }
.s-event-card__body { padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.s-event-card__title { font-size: 1rem; font-weight: 600; color: var(--text-primary); margin: 0; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.s-event-card__meta { display: flex; flex-wrap: wrap; gap: 10px; font-size: 0.78rem; color: var(--text-secondary); }
.s-event-card__meta span { display: flex; align-items: center; gap: 4px; }

/* Legacy s-promo */
.s-promo-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.s-promo-card { background: var(--bg-secondary); border: 1px solid var(--border-color); border-radius: var(--radius-md); overflow: hidden; transition: transform 0.2s ease, box-shadow 0.2s ease; display: flex; flex-direction: column; }
.s-promo-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.s-promo-card__img { aspect-ratio: 16/9; overflow: hidden; width: 100%; }
.s-promo-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.35s ease; }
.s-promo-card:hover .s-promo-card__img img { transform: scale(1.04); }
.s-promo-card__body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.s-promo-card__title { font-size: 1rem; font-weight: 600; color: var(--text-primary); margin: 0; }
.s-promo-card__desc { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; margin: 0; flex: 1; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.s-promo-card__expiry { font-size: 0.78rem; color: var(--text-secondary); margin: 0; }

@media (max-width: 1024px) { .pulse-events-grid, .s-events-grid, .s-promo-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px) {
    .pulse-events-section { padding: 60px 0; }
    .pulse-events-grid, .s-events-grid, .s-promo-grid { grid-template-columns: 1fr; gap: 20px; }
    .pulse-section-header { margin-bottom: 32px; }
}

/* ═══════════════════════════════════════════════════════════════════
   TEAM CAROUSEL
   ═══════════════════════════════════════════════════════════════════ */
.pulse-team-section { padding: 80px 0; position: relative; }

.pts-carousel-wrap {
    overflow: hidden;
    position: relative;
    padding: 8px 2px 20px;
}
.pts-carousel-inner {
    display: flex;
    gap: 20px;
    transition: transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.pts-card {
    flex-shrink: 0;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pts-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }

.pts-card__photo-wrap {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    flex-shrink: 0;
    background: var(--bg-tertiary);
}
.pts-card__photo { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.pts-card__initials {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    user-select: none;
}

.pts-card__name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 4px;
    line-height: 1.25;
    font-family: var(--page-title-font-family, var(--body-font-family, sans-serif));
}
.pts-card__role {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin: 0 0 12px;
    display: block;
}
.pts-card__bio {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.pts-card__socials { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-top: auto; }
.pts-social-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.82rem;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.pts-social-btn:hover { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }

/* Nav carrossel */
.pts-nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 24px; }
.pts-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s;
}
.pts-btn:hover { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }
.pts-btn--next { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }
.pts-btn--next:hover { opacity: 0.85; }

.pts-dots { display: flex; gap: 8px; align-items: center; }
.pts-dot { width: 7px; height: 7px; border-radius: 50%; border: none; background: var(--border-color); cursor: pointer; padding: 0; transition: background 0.2s, transform 0.2s; }
.pts-dot--active { background: var(--color-primary); transform: scale(1.35); }

.pulse-team-viewall { text-align: center; margin-top: 36px; }
.pulse-team-viewall__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: 1.5px solid var(--color-primary);
    border-radius: 9999px;
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background 0.2s, color 0.2s;
}
.pulse-team-viewall__btn:hover { background: var(--color-primary); color: #fff; }

/* Mobile carrossel (scroll nativo) */
@media (max-width: 768px) {
    .pulse-team-section { padding: 60px 0; }
    .pts-carousel-wrap {
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 8px 16px 16px;
    }
    .pts-carousel-wrap::-webkit-scrollbar { display: none; }
    .pts-carousel-inner { transition: none; transform: none !important; gap: 12px; }
    .pts-carousel-inner > .pts-card { flex: 0 0 72vw !important; scroll-snap-align: start; }
    .pts-nav .pts-btn { display: none; }
}

/* Team legacy */
.team-card-inner { background: var(--bg-secondary) !important; border: 1px solid var(--border-color) !important; border-radius: var(--radius-md) !important; }
.team-card-inner:hover { box-shadow: var(--shadow-hover) !important; }
.team-avatar-wrapper { background: var(--bg-tertiary) !important; }
.team-member-name { color: var(--text-primary) !important; }
.team-member-role { color: var(--color-primary) !important; }
.team-member-bio { color: var(--text-secondary) !important; }
.team-nav-btn { background: transparent !important; border-color: var(--border-color) !important; color: var(--text-primary) !important; }
.team-nav-btn:hover { background: var(--color-primary) !important; border-color: var(--color-primary) !important; color: #fff !important; }
.team-progress-bar { background: var(--bg-tertiary) !important; }
.team-dot { background: var(--border-color) !important; }
.team-dot.active { background: var(--color-primary) !important; }

/* ═══════════════════════════════════════════════════════════════════
   CHART / TOP MÚSICAS
   ═══════════════════════════════════════════════════════════════════ */
.pulse-chart-section { padding: 80px 0; }

.pulse-chart-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
}
.pulse-chart-col { display: flex; flex-direction: column; gap: 10px; }

/* Track row — pill clean */
.pulse-chart-track {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 9999px;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: border-color 0.2s ease;
    overflow: hidden;
    position: relative;
}
.pulse-chart-track:hover { border-color: var(--color-primary); }
.pulse-chart-track--cyan:hover { border-color: var(--color-secondary); }

/* Quando expandido com mini player */
.pulse-chart-track.active,
.pulse-chart-track.pulse-chart-active { border-radius: var(--radius-lg); }

/* Linha principal do track */
.pulse-chart-track__row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    min-height: 56px;
}

.pulse-chart-track__rank {
    font-size: 1.4rem;
    font-weight: 900;
    font-style: italic;
    color: var(--text-primary);
    width: 44px;
    text-align: center;
    flex-shrink: 0;
    transition: color 0.2s ease;
    line-height: 1;
}
.pulse-chart-track:hover .pulse-chart-track__rank { color: var(--color-primary); }
.pulse-chart-track--cyan:hover .pulse-chart-track__rank { color: var(--color-secondary); }

.pulse-chart-track__cover {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 9999px;
    overflow: hidden;
    margin: 0 10px;
    flex-shrink: 0;
    border: 2px solid var(--border-color);
    cursor: pointer;
}
.pulse-chart-track__cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pulse-chart-track__cover-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Alias para módulo que usa __cover-img */
.pulse-chart-track__cover-img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 8px; }

.pulse-chart-track__info { flex-grow: 1; min-width: 0; }
.pulse-chart-track__title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin: 0 0 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
}
.pulse-chart-track:hover .pulse-chart-track__title { color: var(--color-primary); }
.pulse-chart-track--cyan:hover .pulse-chart-track__title { color: var(--color-secondary); }

.pulse-chart-track__artist {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0;
}

.pulse-chart-track__votes {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 12px;
    flex-shrink: 0;
}

.pulse-vote-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 4px;
    font-size: 1rem;
    transition: color 0.2s ease, transform 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pulse-vote-btn:hover:not(:disabled) { transform: scale(1.2); }
.pulse-vote-up:hover:not(:disabled) { color: var(--color-primary); }
.pulse-vote-down:hover:not(:disabled) { color: #ef4444; }
.pulse-vote-btn:disabled { opacity: 0.35; cursor: default; }

/* Mini player inline */
.pulse-chart-track .chart-track-player { display: none; margin-top: 10px; padding: 0 14px 12px; }
.pulse-chart-track.active .chart-track-player { display: block; }
.pulse-chart-track .custom-player-ui { background: var(--bg-tertiary); border: 1px solid var(--border-color); border-radius: var(--radius-sm); }
.pulse-chart-track .player-progress-fill { background: var(--color-primary); }
.pulse-chart-track .player-control-icon,
.pulse-chart-track .player-track-details,
.pulse-chart-track .custom-player-ui .player-title,
.pulse-chart-track .custom-player-ui .player-artist { color: var(--text-primary); }

/* Chart widget override (chart-styles.php) */
.chart-widget-container { counter-reset: chart-counter !important; }
.chart-tracks { display: grid !important; grid-template-columns: repeat(2,1fr) !important; gap: 10px !important; }
.chart-track { counter-increment: chart-counter !important; background: var(--bg-secondary) !important; border: 1px solid var(--border-color) !important; border-radius: var(--radius-md) !important; padding: 14px !important; transition: border-color 0.2s ease !important; position: relative !important; }
.chart-track:hover { border-color: var(--color-primary) !important; }
.chart-track:nth-child(even):hover { border-color: var(--color-secondary) !important; }
.chart-track-main { display: flex !important; align-items: center !important; gap: 12px !important; flex-direction: row !important; }
.chart-track-main::before { content: counter(chart-counter, decimal-leading-zero) !important; font-size: 1.4rem !important; font-weight: 900 !important; color: var(--border-color) !important; min-width: 44px !important; text-align: center !important; flex-shrink: 0 !important; transition: color 0.2s !important; }
.chart-track:hover .chart-track-main::before { color: var(--color-primary) !important; }
.chart-track:nth-child(even):hover .chart-track-main::before { color: var(--color-secondary) !important; }
.chart-track-cover { width: 52px !important; height: 52px !important; min-width: 52px !important; border-radius: 8px !important; overflow: hidden !important; flex-shrink: 0 !important; background: var(--bg-tertiary) !important; }
.chart-track-cover img { width: 100% !important; height: 100% !important; object-fit: cover !important; }
.cover-placeholder { width: 100% !important; height: 100% !important; display: flex !important; align-items: center !important; justify-content: center !important; background: var(--bg-tertiary) !important; color: var(--text-secondary) !important; font-size: 1.2rem !important; }
.cover-overlay { display: none !important; }
.chart-track-info { flex: 1 !important; min-width: 0 !important; }
.chart-track-title { font-weight: 600 !important; color: var(--text-primary) !important; text-transform: uppercase !important; white-space: nowrap !important; overflow: hidden !important; text-overflow: ellipsis !important; font-size: 0.9rem !important; }
.chart-track-artist { font-size: 0.72rem !important; color: var(--text-secondary) !important; text-transform: uppercase !important; font-weight: 500 !important; }
.vote-column { display: flex !important; flex-direction: column !important; align-items: center !important; gap: 4px !important; padding-left: 12px !important; border-left: 1px solid var(--border-color) !important; margin-left: auto !important; flex-shrink: 0 !important; order: 10 !important; }
.vote-mini-btn { background: transparent !important; border: none !important; cursor: pointer !important; font-size: 1rem !important; padding: 4px !important; transition: color 0.2s !important; }
.vote-mini-btn.vote-up { color: var(--text-secondary) !important; }
.vote-mini-btn.vote-up:hover { color: var(--color-primary) !important; }
.vote-mini-btn.vote-down { color: var(--text-secondary) !important; }
.vote-mini-btn.vote-down:hover { color: #ef4444 !important; }
.vote-net-count { font-size: 0.72rem !important; font-weight: 600 !important; color: var(--text-secondary) !important; }
.chart-track-player { margin-top: 8px !important; border-radius: 8px !important; overflow: hidden !important; }
@media (max-width: 768px) { .chart-tracks { grid-template-columns: 1fr !important; } }

/* Chart responsive */
@media (max-width: 1024px) {
    .pulse-chart-grid { grid-template-columns: 1fr; gap: 10px; }
    .pulse-chart-track__votes { padding: 0 8px; gap: 8px; }
}
@media (max-width: 640px) {
    .pulse-chart-section { padding: 60px 0; }
    .pulse-chart-track { padding: 10px 12px; border-radius: var(--radius-lg); }
    .pulse-chart-track__rank { font-size: 1.1rem; width: 36px; }
    .pulse-chart-track__cover { width: 40px; height: 40px; margin: 0 8px; }
    .pulse-chart-track__title { font-size: 0.78rem; }
    .pulse-chart-track__votes { padding: 0 6px; gap: 6px; }
}

/* ═══════════════════════════════════════════════════════════════════
   AGORA NO AR / ON AIR
   ═══════════════════════════════════════════════════════════════════ */
.pulse-onair-section { padding: 24px 0; }

.pulse-onair-card {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 28px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
}

.pulse-onair-card__photo-wrap { position: relative; flex-shrink: 0; width: 160px; height: 160px; }
.pulse-onair-card__photo-glow { display: none; }
.pulse-onair-card__photo {
    width: 100%;
    height: 100%;
    border-radius: 9999px;
    object-fit: cover;
    object-position: center;
    border: 2px solid var(--border-color);
}
.pulse-onair-card__photo-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    color: var(--color-secondary);
    font-size: 2.5rem;
    border: 2px solid var(--border-color);
}
.pulse-onair-card__live-badge {
    position: absolute;
    bottom: 6px;
    right: 6px;
    width: 36px;
    height: 36px;
    border-radius: 9999px;
    background: var(--color-secondary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    animation: pulse-dot 1.4s ease-in-out infinite;
}
.pulse-onair-card__label { display: none; }
.pulse-onair-card__name {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 6px;
    line-height: 1.25;
}
.pulse-onair-card__host {
    display: block;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-top: 4px;
}
.pulse-onair-card__time {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.pulse-onair-card__desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
    max-width: 480px;
}

@media (max-width: 768px) {
    .pulse-onair-card { flex-direction: column; text-align: center; gap: 20px; padding: 20px; }
    .pulse-onair-card__photo-wrap { width: 120px; height: 120px; }
    .pulse-onair-card__name { font-size: 1.4rem; }
    .pulse-onair-card__time { justify-content: center; }
    .pulse-onair-card__desc { max-width: 100%; }
}

/* ═══════════════════════════════════════════════════════════════════
   PODCASTS
   ═══════════════════════════════════════════════════════════════════ */
.pulse-podcast-section { padding: 80px 0; }

.pulse-podcast-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.pulse-podcast-header__left { display: flex; flex-direction: column; gap: 4px; }
.pulse-podcast-header__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border: 1.5px solid var(--color-primary);
    border-radius: 9999px;
    color: var(--color-primary);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background 0.2s, color 0.2s;
}
.pulse-podcast-header__cta:hover { background: var(--color-primary); color: #fff; }

/* Podcast Grid — Airbnb 1:1 cards */
.pulse-podcast-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.pulse-podcast-card {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    cursor: pointer;
    transition: transform 0.2s ease;
}
.pulse-podcast-card:hover { transform: translateY(-2px); }

.pulse-podcast-card__cover {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--bg-tertiary);
}
.pulse-podcast-card__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.pulse-podcast-card:hover .pulse-podcast-card__cover img { transform: scale(1.04); }

/* Play overlay — visível apenas no hover */
.pulse-podcast-card__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.pulse-podcast-card:hover .pulse-podcast-card__play { opacity: 1; }
.pulse-podcast-card__play-circle {
    width: 52px;
    height: 52px;
    border-radius: 9999px;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    cursor: pointer;
}
.pulse-podcast-card__play-circle i,
.pulse-podcast-card__play-circle svg { color: #fff; font-size: 1.3rem; padding-left: 2px; }

.pulse-podcast-card__info { padding: 10px 0 0; }
.pulse-podcast-card__series {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 4px;
}
.pulse-podcast-card__title {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}
.pulse-podcast-card:hover .pulse-podcast-card__title { color: var(--color-primary); }

/* Podcast legacy overrides */
.podcast-home-card { background: var(--bg-secondary) !important; border: 1px solid var(--border-color) !important; border-radius: var(--radius-md) !important; }
.podcast-home-card:hover { border-color: var(--color-primary) !important; box-shadow: var(--shadow-hover) !important; }
.podcast-home-title { color: var(--text-primary) !important; }
.podcast-home-card:hover .podcast-home-title { color: var(--color-primary) !important; }
.podcast-home-play { background: rgba(0,0,0,0.4) !important; }
.podcast-home-play i { color: #fff !important; }

@media (max-width: 1024px) { .pulse-podcast-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px) {
    .pulse-podcast-section { padding: 60px 0; }
    .pulse-podcast-grid { grid-template-columns: repeat(2,1fr); gap: 14px; }
    .pulse-podcast-card__play-circle { width: 44px; height: 44px; }
}

/* ═══════════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.86rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}
.btn-outline {
    background: transparent;
    border: 1.5px solid var(--color-primary);
    color: var(--color-primary);
}
.btn-outline:hover { background: var(--color-primary); color: #fff; }

.s-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-primary);
    color: #fff;
    padding: 11px 22px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.86rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: opacity 0.2s ease;
    border: none;
    cursor: pointer;
}
.s-btn-primary:hover { opacity: 0.88; }

/* ═══════════════════════════════════════════════════════════════════
   HERO SLIDER
   ═══════════════════════════════════════════════════════════════════ */
.hero-slider { position: relative; width: 100%; overflow: hidden; }
.hero-slider .slide-text { color: #fff; }

/* ═══════════════════════════════════════════════════════════════════
   BANNER
   ═══════════════════════════════════════════════════════════════════ */
.banner-section { padding: 16px 0; }
.home-banner img { border-radius: var(--radius-md); }

/* ═══════════════════════════════════════════════════════════════════
   PAGE HERO + CONTEÚDO
   ═══════════════════════════════════════════════════════════════════ */
.page-hero { color: var(--text-primary); }
.page-hero__title { color: var(--text-primary); }
.page-content { padding: 40px 0 80px; }

/* ═══════════════════════════════════════════════════════════════════
   FORM CONTROLS
   ═══════════════════════════════════════════════════════════════════ */
.form-control,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea,
select {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    padding: 10px 16px;
    transition: border-color 0.2s ease;
    width: 100%;
}
.form-control:focus,
input:focus,
textarea:focus,
select:focus { border-color: var(--color-primary); outline: none; }

/* ═══════════════════════════════════════════════════════════════════
   LINKS
   ═══════════════════════════════════════════════════════════════════ */
a { color: var(--color-primary); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--color-secondary, var(--color-primary)); }

/* ═══════════════════════════════════════════════════════════════════
   SCROLLBAR
   ═══════════════════════════════════════════════════════════════════ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--border-color); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-secondary); }

/* ═══════════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════════ */
.pulse-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.pulse-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    height: 72px;
    max-width: 1440px;
    margin: 0 auto;
}

.pulse-header__logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.pulse-header__logo img { height: 40px; width: auto; object-fit: contain; }
.pulse-header__logo-text { font-size: 1.4rem; font-weight: 700; color: var(--color-primary); letter-spacing: -0.02em; }

/* Desktop Nav */
.pulse-nav { display: flex; align-items: center; gap: 4px; }
.pulse-nav__link {
    padding: 7px 16px;
    font-family: var(--nav-font-family, sans-serif);
    font-size: var(--nav-font-size, 0.88rem);
    font-weight: var(--nav-font-weight, 500);
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 9999px;
    transition: color 0.2s ease, background 0.2s ease;
}
.pulse-nav__link:hover { color: var(--text-primary); background: var(--bg-secondary); }
.pulse-nav__link--active { color: var(--text-primary); font-weight: 600; background: var(--bg-secondary); }

/* Header Actions */
.pulse-header__actions { display: flex; align-items: center; gap: 12px; }

/* On Air Widget */
.pulse-onair {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 9999px;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    text-decoration: none;
    transition: border-color 0.2s ease;
}
.pulse-onair:hover { border-color: var(--color-primary); }
.pulse-onair__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: 0 0 6px rgba(239,68,68,0.5);
    animation: pulse-dot 1.4s ease-in-out infinite;
    flex-shrink: 0;
}
.pulse-onair__text { display: flex; flex-direction: column; gap: 1px; }
.pulse-onair__label { font-size: 0.58rem; font-weight: 800; color: #ef4444; letter-spacing: 0.1em; text-transform: uppercase; }
.pulse-onair__show { font-size: 0.75rem; font-weight: 500; color: var(--text-primary); white-space: nowrap; max-width: 120px; overflow: hidden; text-overflow: ellipsis; }

/* Search */
.pulse-search { position: relative; display: flex; align-items: center; gap: 4px; }
.pulse-search__btn { background: transparent; border: none; color: var(--text-secondary); cursor: pointer; font-size: 1rem; transition: color 0.2s; padding: 8px; }
.pulse-search__btn:hover { color: var(--text-primary); }
.pulse-search__input { display: none; }
.pulse-search-spinner { display: none; padding: 8px; color: var(--text-secondary); }

/* Live search dropdown */
.pulse-live-search-results {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 320px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    z-index: 200;
    overflow: hidden;
    display: none;
}

/* Mobile Toggle */
.pulse-header__mobile-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 8px;
}

/* Mobile Actions (ícones no header mobile) */
.pulse-header__mobile-actions {
    display: none;
    align-items: center;
    gap: 2px;
}
.pulse-header__mobile-action {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}
.pulse-header__mobile-action:hover { background: var(--bg-secondary); color: var(--text-primary); }

/* ═══════════════════════════════════════════════════════════════════
   MOBILE SEARCH OVERLAY
   ═══════════════════════════════════════════════════════════════════ */
.pulse-mobile-search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 2000;
    display: none;
    align-items: flex-start;
}
.pulse-mobile-search-overlay.is-active { display: flex; }

.pulse-mobile-search-dialog {
    width: 100%;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
}
.pulse-mobile-search-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
}
.pulse-mobile-search-title { font-size: 1rem; font-weight: 600; color: var(--text-primary); margin: 0; }
.pulse-mobile-search-close { background: transparent; border: none; color: var(--text-secondary); cursor: pointer; padding: 4px; display: flex; align-items: center; }
.pulse-mobile-search-form { display: flex; align-items: center; gap: 8px; padding: 12px 20px; }
.pulse-mobile-search-submit { background: transparent; border: none; color: var(--text-secondary); cursor: pointer; padding: 4px; flex-shrink: 0; }
.pulse-mobile-search-input { flex: 1; border: none; background: transparent; font-size: 1rem; color: var(--text-primary); outline: none; padding: 0; }
.pulse-mobile-search-input::placeholder { color: var(--text-secondary); }
.pulse-mobile-live-results { position: static; width: 100%; display: block; border-top: 1px solid var(--border-color); }

/* ═══════════════════════════════════════════════════════════════════
   MOBILE MENU (sidebar)
   ═══════════════════════════════════════════════════════════════════ */
.pulse-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1100;
}
.pulse-mobile-overlay.is-open { display: block; }

.pulse-mobile {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    z-index: 1200;
    background: var(--bg-primary);
    border-left: 1px solid var(--border-color);
    transition: right 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.pulse-mobile.is-open { right: 0; }

.pulse-mobile__header { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--border-color); }
.pulse-mobile__logo img { height: 32px; width: auto; }
.pulse-mobile__logo span { font-size: 1.1rem; font-weight: 700; color: var(--color-primary); }
.pulse-mobile__close { background: transparent; border: none; color: var(--text-secondary); font-size: 1.2rem; cursor: pointer; padding: 6px; display: flex; align-items: center; }

.pulse-mobile__onair { display: flex; align-items: center; gap: 10px; padding: 14px 20px; border-bottom: 1px solid var(--border-color); }

.pulse-mobile__nav { padding: 8px 0; flex: 1; }
.pulse-mobile__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: background 0.2s ease, color 0.2s ease;
}
.pulse-mobile__link:hover,
.pulse-mobile__link--active { color: var(--color-primary); background: var(--bg-secondary); }
.pulse-mobile__link svg { color: var(--text-secondary); }

.pulse-mobile__footer { padding: 16px 20px; border-top: 1px solid var(--border-color); text-align: center; }
.pulse-mobile__footer p { font-size: 0.72rem; color: var(--text-secondary); margin: 0; }

/* ═══════════════════════════════════════════════════════════════════
   PLAYER
   ═══════════════════════════════════════════════════════════════════ */
.pulse-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--player-bg, var(--bg-primary));
    border-top: 1px solid var(--border-color);
    color: var(--player-text-color, var(--text-primary));
}
.pulse-player__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto;
    padding: 12px 32px;
    gap: 24px;
}
.pulse-player__left-group {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
    min-width: 0;
}
.pulse-player__info { display: flex; align-items: center; gap: 14px; min-width: 0; }
.pulse-player__artwork {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
}
.pulse-player__artwork img { width: 100%; height: 100%; object-fit: cover; }
.pulse-player__meta { min-width: 0; }
.pulse-player__status { display: flex; align-items: center; gap: 6px; margin-bottom: 2px; }
.pulse-player__live-dot { width: 6px; height: 6px; border-radius: 50%; background: #ef4444; animation: pulse-dot 1.4s ease-in-out infinite; }
.pulse-player__live-text { font-size: 0.58rem; font-weight: 800; color: #ef4444; letter-spacing: 0.1em; text-transform: uppercase; }
.pulse-player__title { font-size: 0.9rem; font-weight: 600; color: var(--player-text-color, var(--text-primary)); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pulse-player__artist { font-size: 0.76rem; color: var(--text-secondary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.pulse-player__controls { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.pulse-player__play-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-primary);
    border: none;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease, transform 0.15s ease;
}
.pulse-player__play-btn:hover { opacity: 0.85; transform: scale(1.05); }

.pulse-player__live-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: border-color 0.2s, color 0.2s;
}
.pulse-player__live-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }

.pulse-player__volume { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.pulse-player__vol-btn { background: transparent; border: none; color: var(--text-secondary); cursor: pointer; font-size: 1rem; padding: 6px; transition: color 0.2s; }
.pulse-player__vol-btn:hover { color: var(--text-primary); }
.pulse-player__vol-slider {
    width: 90px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--border-color);
    border-radius: 2px;
    outline: none;
}
.pulse-player__vol-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 12px; height: 12px; border-radius: 50%; background: var(--color-primary); cursor: pointer; }
.pulse-player__vol-slider::-moz-range-thumb { width: 12px; height: 12px; border-radius: 50%; background: var(--color-primary); cursor: pointer; border: none; }

/* Botão ASSISTIR AO VIVO */
.pulse-player__video-btn-wrap { flex-shrink: 0; margin-left: auto; }
.pulse-player__watch-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--player-text-color, var(--text-primary));
    border: 1px solid var(--border-color);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 9px 18px;
    border-radius: 999px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}
.pulse-player__watch-btn:hover { background: var(--bg-secondary); border-color: var(--text-secondary); }
.pulse-watch-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--player-text-color, #ef4444); flex-shrink: 0; animation: pulse-dot 1.5s ease-in-out infinite; }
.pulse-player__watch-btn.is-open { background: var(--bg-secondary); }
.pulse-player__watch-btn.is-open .pulse-watch-dot { animation: none; }

/* Light mode player */
body.theme-light .pulse-player { border-top-color: var(--border-color); }
body.theme-light .pulse-player__title { color: var(--text-primary); }
body.theme-light .pulse-player__artist { color: var(--text-secondary); }

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════ */
.pulse-footer {
    position: relative;
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-top: 1px solid var(--border-color);
    padding: 52px 0 80px;
}
.pulse-footer__accent-line { display: none; }

.pulse-footer__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}
.pulse-footer__col { display: flex; flex-direction: column; align-items: flex-start; gap: 0; }
.pulse-footer__col--nav { grid-column: span 2; width: 100%; }

.pulse-footer__logo { text-decoration: none; display: inline-block; margin-bottom: 10px; }
.pulse-footer__logo img { height: 40px; width: auto; display: block; }
.pulse-footer__logo span { font-size: 1.2rem; font-weight: 700; color: var(--color-primary); }

.pulse-footer__site-name { font-size: 0.95rem; font-weight: 600; color: var(--text-primary); margin: 0 0 8px; line-height: 1.3; }
.pulse-footer__desc { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.55; margin: 0 0 18px; max-width: 280px; }

.pulse-footer__heading {
    font-family: var(--font-family, sans-serif);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
}

.pulse-footer__social { display: flex; flex-wrap: wrap; gap: 8px; }
.pulse-footer__social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.88rem;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.pulse-footer__social-btn:hover { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }

.pulse-footer__links { list-style: none; padding: 0; margin: 0; }
.pulse-footer__links li { margin-bottom: 8px; }
.pulse-footer__links a { color: var(--text-secondary); text-decoration: none; font-size: 0.88rem; display: inline-block; transition: color 0.2s; }
.pulse-footer__links a:hover { color: var(--text-primary); }

.pulse-footer__links--two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
    width: 100%;
}

.pulse-footer__contact { list-style: none; padding: 0; margin: 0; }
.pulse-footer__contact li { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 12px; line-height: 1.4; }
.pulse-footer__contact li span,
.pulse-footer__contact li a { color: var(--text-secondary); text-decoration: none; transition: color 0.2s; }
.pulse-footer__contact li a:hover { color: var(--text-primary); }
.pulse-footer__contact i,
.pulse-footer__contact svg { color: var(--color-primary); width: 16px; text-align: center; flex-shrink: 0; }

/* Barra de copyright */
.pulse-footer__bottom { border-top: 1px solid var(--border-color); margin-top: 40px; }
.pulse-footer__bottom-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 32px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.pulse-footer__b-left { flex: 1; min-width: 0; }
.pulse-footer__copyright { font-size: 0.78rem; color: var(--text-secondary); margin: 0; line-height: 1.6; }
.pulse-footer__privacy-link { color: var(--text-secondary); text-decoration: none; transition: color 0.2s; }
.pulse-footer__privacy-link:hover { color: var(--text-primary); }
.pulse-footer__b-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.pulse-footer__dev-link { display: flex; align-items: center; }
.pulse-footer__dev-logo { max-height: 28px; width: auto; opacity: 0.55; transition: opacity 0.25s; }
.pulse-footer__dev-logo:hover { opacity: 1; }
.pulse-footer__credit-text { font-size: 0.75rem; color: var(--text-secondary); }
.pulse-footer__credit-link { font-size: 0.75rem; color: var(--text-secondary); text-decoration: none; margin-left: 4px; }
.pulse-footer__credit-link:hover { color: var(--text-primary); }

/* ═══════════════════════════════════════════════════════════════════
   PULSE — CARD UTILITY CLASS
   Base reutilizável para markup futuro que usar .pulse-card diretamente.
   ═══════════════════════════════════════════════════════════════════ */
.pulse-card {
    display: flex;
    flex-direction: column;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    cursor: pointer;
    transition: transform 0.2s ease;
}
.pulse-card:hover { transform: translateY(-3px); }
.pulse-card:hover .pulse-card__image img { transform: scale(1.03); }

.pulse-card__image {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    width: 100%;
    background: var(--bg-tertiary);
}
.pulse-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.pulse-card__body {
    padding: 12px 0 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.pulse-card__title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}
.pulse-card__description {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.pulse-card__divider {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 12px 0;
}
.pulse-card__cta {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-secondary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.pulse-card__cta:hover { opacity: 0.8; }

/* Grid utilitário */
.pulse-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.pulse-cards-grid--equipe { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
    .pulse-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .pulse-cards-grid--equipe { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
    .pulse-cards-grid { grid-template-columns: 1fr; }
    .pulse-cards-grid--equipe { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════════════════
   PULSE — LISTING PAGES: Override para padrão Airbnb
   Mapeia .nl-card / .pm-card / .ev-card / .pc-card / .team-card
   para o visual PULSE unificado. Zero alterações no HTML de pages/.
   ═══════════════════════════════════════════════════════════════════ */

/* ── 1. WRAPPER: transparente, sem borda, sem radius, sem sombra ── */
.nl-card,
.pm-card,
.ev-card,
.pc-card {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    overflow: visible !important;
    box-shadow: none !important;
}

/* Hover: só lift leve, sem box-shadow */
.nl-card:hover,
.pm-card:hover,
.ev-card:hover,
.pc-card:hover {
    transform: translateY(-3px) !important;
    box-shadow: none !important;
    border-color: transparent !important;
}

/* ── 2. CONTAINER DA IMAGEM: radius 16px apenas aqui ── */
.nl-card__img-wrap,
.pm-card__img-wrap,
.ev-card__img-wrap {
    aspect-ratio: 4 / 3 !important;
    border-radius: 16px !important;
    overflow: hidden !important;
}

/* Podcasts: capa 1:1 */
.pc-card__cover {
    aspect-ratio: 1 / 1 !important;
    border-radius: 16px !important;
    overflow: hidden !important;
}

/* Zoom suave na imagem no hover */
.nl-card:hover .nl-card__img,
.pm-card:hover .pm-card__img,
.ev-card:hover .ev-card__img,
.pc-card:hover .pc-card__img {
    transform: scale(1.03) !important;
}

/* ── 3. GRADIENTES DECORATIVOS: removidos ── */
.pm-card__gradient,
.ev-card__gradient {
    display: none !important;
}

/* ── 4. BODY: sem padding lateral, gap compacto ── */
.nl-card__body,
.pm-card__body,
.ev-card__body,
.pc-card__body {
    padding: 12px 0 0 !important;
    gap: 4px !important;
}

/* ── 5. TÍTULOS: tamanho e peso uniformes ── */
.nl-card__title,
.pm-card__title,
.ev-card__title,
.pc-card__title {
    font-size: 1.05rem !important;
    font-weight: 600 !important;
}
.nl-card:hover .nl-card__title,
.pm-card:hover .pm-card__title,
.ev-card:hover .ev-card__title {
    color: var(--color-primary) !important;
}

/* ── 6. RODAPÉ / DATA: border-top age como o hr da spec ── */
.nl-card__date {
    padding-top: 12px !important;
    margin-top: 8px !important;
}
.pm-card__footer,
.ev-card__footer {
    border-top: 1px solid var(--border-color) !important;
    padding-top: 12px !important;
    margin-top: 8px !important;
}

/* ── 7. CTA promoções: text-link estilo spec ── */
.pm-cta,
.pm-cta--sm {
    background: transparent !important;
    color: var(--color-secondary) !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}
.pm-cta:hover,
.pm-cta--sm:hover {
    background: transparent !important;
    opacity: 0.75;
}

/* ── 8. EQUIPE: avatar vira imagem full-width de topo ── */
.team-card {
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    text-align: left !important;
    align-items: flex-start !important;
}
.team-card:hover {
    transform: translateY(-3px) !important;
    box-shadow: none !important;
}
.team-avatar {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    margin: 0 0 12px !important;
}
.team-card:hover .team-avatar img {
    transform: scale(1.03);
    transition: transform 0.3s ease;
}

/* Team mobile: mínimo 2 colunas conforme spec */
@media (max-width: 480px) {
    .team-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ═══════════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════════ */
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.7); }
}

/* Alias para módulos que ainda referenciam neon-pulse */
@keyframes neon-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.7); }
}

/* ═══════════════════════════════════════════════════════════════════
   SHELF / DOTS — scroll horizontal mobile
   ═══════════════════════════════════════════════════════════════════ */
.shelf-dots {
    display: none;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
}
.shelf-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border-color);
    transition: background 0.2s, transform 0.2s;
}
.shelf-dots .dot.active { background: var(--color-primary); transform: scale(1.3); }

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVO GERAL
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .s-news-grid { grid-template-columns: repeat(2,1fr); }
    .s-events-grid { grid-template-columns: repeat(2,1fr); }
    .s-promo-grid { grid-template-columns: repeat(2,1fr); }
    .s-section-title, .section-title { font-size: 1.5rem; }
    .pulse-footer__inner {
        grid-template-columns: 1.4fr 1fr 1fr;
        gap: 32px;
        padding: 0 24px;
    }
    .pulse-footer__col:last-child { grid-column: 1 / -1; }
    .pulse-footer__contact { display: flex; flex-wrap: wrap; gap: 8px 32px; }
    .pulse-footer__col--nav { grid-column: span 1; }
}

@media (max-width: 768px) {
    /* Trocar nav desktop por mobile */
    .pulse-nav { display: none; }
    .pulse-onair { display: none; }
    .pulse-search { display: none; }
    .pulse-header__mobile-btn { display: flex; }
    .pulse-header__mobile-actions { display: flex; }
    .pulse-header__inner { padding: 0 16px; }

    /* Player mobile */
    .pulse-player__inner { padding: 10px 16px; gap: 12px; }
    .pulse-player__volume { display: none; }
    .pulse-player__video-btn-wrap { display: none !important; }
    .pulse-player__artwork { width: 44px; height: 44px; }
    .pulse-player__play-btn { width: 42px; height: 42px; }
    .pulse-player__left-group { gap: 12px; }

    /* Footer */
    .pulse-footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
        padding: 0 20px;
    }
    .pulse-footer__col--nav { grid-column: span 1; }
    .pulse-footer__col:last-child { grid-column: auto; }
    .pulse-footer__bottom-inner { padding: 14px 20px; flex-direction: column; text-align: center; }

    /* Sections */
    .section, .s-section { padding: 60px 0; }
}

@media (max-width: 640px) {
    .s-news-grid, .s-events-grid, .s-promo-grid { grid-template-columns: 1fr; }
    .section, .s-section { padding: 48px 0; }
    .s-section-header { flex-direction: column; align-items: flex-start; }
    .s-section-title, .section-title { font-size: 1.4rem; }
    .pulse-news-header__title,
    .pulse-section-header__title,
    .pulse-chart-header__title { font-size: 1.4rem; }

    .pulse-footer__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
        padding: 0 20px;
    }
    .pulse-footer__col { align-items: center; }
    .pulse-footer__col--nav { grid-column: auto; }
    .pulse-footer__heading { text-align: center; }
    .pulse-footer__desc { max-width: 100%; }
    .pulse-footer__social { justify-content: center; }
    .pulse-footer__contact li { justify-content: center; }
    .pulse-footer__links a { text-align: center; }
    .pulse-footer__links--two-cols { grid-template-columns: 1fr; }
    .pulse-footer__bottom-inner { padding: 12px 16px; }
}

/* Shelf horizontal (mobile) */
@media (max-width: 768px) {
    .shelf-row {
        display: flex !important;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 4px;
        gap: 14px !important;
    }
    .shelf-row::-webkit-scrollbar { display: none; }
    .shelf-row > * { flex: 0 0 80vw; scroll-snap-align: start; }
    .shelf-72 > * { flex: 0 0 72vw; }
    .shelf-82 > * { flex: 0 0 82vw; }
    .shelf-dots { display: flex; }
}
