:root {
    --vox-forest:   #1a3022;
    --vox-forest2:  #213a28;
    --vox-sage:     #83a188;
    --vox-cream:    #f5f0dc;
    --vox-charcoal: #333333;
    --vox-gold:     #c9920a;
    --vox-gold-lt:  #e8b94a;
    --vox-text:     #1d1d1f;
    --vox-muted:    #63708a;
    --vox-glass:    rgba(255,255,255,0.06);
    --vox-shadow:   0 24px 56px rgba(10,26,14,0.42);
}

/* ─── Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body.vox360-preview-body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: var(--vox-text);
    background: #f2edd8;
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

.container {
    width: min(1160px, calc(100vw - 48px));
    margin: 0 auto;
}

.radio-page { width: 100%; }

/* ─── HERO ───────────────────────────────────────────── */
.radio-hero {
    position: relative;
    width: 100%;
    min-height: 320px;
    overflow: hidden;
    background: linear-gradient(145deg, #0e1f14 0%, #1c3826 55%, #2d5040 100%);
}

/* vídeo de fundo */
.radio-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.radio-hero__video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.7) brightness(0.45);
}

/* overlay duplo: escuro + faixa dourada sutil na base */
.radio-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg,
            rgba(10, 24, 14, 0.62) 0%,
            rgba(10, 24, 14, 0.46) 60%,
            rgba(10, 24, 14, 0.72) 100%);
    pointer-events: none;
}

/* linha dourada no topo */
.radio-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    z-index: 3;
    background: linear-gradient(90deg, transparent, var(--vox-gold), transparent);
}

.radio-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 32px;
    width: min(1160px, calc(100vw - 48px));
    margin: 0 auto;
    padding: 36px 0 40px;
}

.radio-main, .radio-right {
    position: relative;
    z-index: 2;
}

.radio-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

/* ─── BRANDING ───────────────────────────────────────── */
.radio-branding { display: inline-flex; align-items: center; gap: 0; }
.radio-branding__copy { display: inline-flex; flex-direction: column; gap: 2px; }

.radio-chapeu {
    color: rgba(255,255,255,0.92);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

/* linha dourada decorativa abaixo do nome */
.radio-chapeu::after {
    content: '';
    display: block;
    margin-top: 6px;
    width: 38px;
    height: 1.5px;
    background: linear-gradient(90deg, var(--vox-gold), transparent);
    border-radius: 999px;
}

/* ─── PLAYER GRID ────────────────────────────────────── */
.radio-player-grid {
    display: grid;
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

/* CAPA */
.radio-capa img,
.radio-capa video {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 16px;
    box-shadow:
        0 0 0 1px rgba(201,146,10,0.28),
        0 24px 48px rgba(0,0,0,0.55),
        0 0 32px rgba(201,146,10,0.12);
}

/* NOW CARD */
.radio-now-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    color: #fff;
    min-width: 0;
}

.radio-nowlabel {
    color: var(--vox-gold-lt);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.radio-artista {
    color: #ffffff;
    font-size: clamp(1.05rem, 1.5vw, 1.35rem);
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -0.01em;
    margin-bottom: 6px;

    /* limitar a 2 linhas — evita explodires de nomes de arquivo */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.radio-musica {
    color: rgba(245,240,220,0.78);
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.01em;
    margin-bottom: 18px;
}

/* ─── TOOLBAR ────────────────────────────────────────── */
.radio-toolbar {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}

.radio-time {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(245,240,220,0.6);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.radio-progress {
    flex: 1;
    height: 3px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(245,240,220,0.14);
}

.radio-progress-bar {
    width: 46%;
    height: 100%;
    background: linear-gradient(90deg, var(--vox-gold), var(--vox-gold-lt));
    border-radius: 999px;
    transition: width 1s linear;
}

/* linha de controles: ondas + botão + volume */
.radio-controls-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: nowrap;
}

/* mantém compatibilidade com a div .radio-controls existente no HTML */
.radio-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.radio-waves {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 18px;
    flex-shrink: 0;
}
.radio-waves span {
    width: 3px;
    border-radius: 999px;
    background: var(--vox-gold-lt);
    transform-origin: bottom;
    animation: voxWave 1s infinite ease-in-out;
}
.radio-waves span:nth-child(1) { height: 30%; }
.radio-waves span:nth-child(2) { height: 60%; animation-delay: .12s; }
.radio-waves span:nth-child(3) { height: 100%; animation-delay: .24s; }
.radio-waves span:nth-child(4) { height: 60%; animation-delay: .36s; }
.radio-waves span:nth-child(5) { height: 30%; animation-delay: .48s; }

@keyframes voxWave {
    0%, 100% { transform: scaleY(.3); opacity: .4; }
    50%       { transform: scaleY(1);  opacity: 1;  }
}

.btn-play {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    height: 40px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid rgba(201,146,10,0.5);
    background: linear-gradient(135deg, rgba(201,146,10,0.22), rgba(201,146,10,0.08));
    color: #fff;
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.22s, border-color 0.22s, transform 0.12s;
    flex-shrink: 0;
}
.btn-play:hover {
    background: linear-gradient(135deg, rgba(201,146,10,0.42), rgba(201,146,10,0.2));
    border-color: var(--vox-gold-lt);
    transform: translateY(-1px);
}
.btn-play i { font-size: 0.9rem; }

.radio-volume {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(245,240,220,0.55);
    font-size: 0.78rem;
    flex: 1;
    min-width: 0;
}
.volume-slider {
    flex: 1;
    accent-color: var(--vox-gold);
    min-width: 60px;
}

/* ─── ASIDE DIREITO ──────────────────────────────────── */
.radio-right {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
    width: 230px;
    flex-shrink: 0;
    padding: 20px 22px;
    border-radius: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: var(--vox-cream);
}

.radio-date {
    font-size: 0.72rem;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(245,240,220,0.7);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 10px;
    margin-bottom: 2px;
}
.radio-date span { color: #fff; font-weight: 600; }

.radio-schedule-line {
    font-size: 0.76rem;
    line-height: 1.45;
    color: rgba(245,240,220,0.75);
}
.radio-schedule-line strong {
    display: block;
    color: var(--vox-gold-lt);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 2px;
}

/* ─── TICKER ─────────────────────────────────────────── */
.radio-ticker {
    overflow: hidden;
    position: relative;
    z-index: 3;
    background: linear-gradient(90deg, rgba(10,28,16,0.96), rgba(20,50,30,0.96));
    color: rgba(245,240,220,0.9);
    padding: 9px 0;
    border-top: 1px solid rgba(201,146,10,0.18);
    border-bottom: 1px solid rgba(201,146,10,0.14);
}

.ticker-track {
    white-space: nowrap;
    animation: voxTicker 46s linear infinite;
}

.ticker-text {
    display: inline-block;
    padding-right: 80px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

@keyframes voxTicker {
    from { transform: translateX(100vw); }
    to   { transform: translateX(-100%); }
}

/* ─── SEÇÃO VÍDEO ────────────────────────────────────── */
.radio-video,
.radio-socials {
    width: min(1160px, calc(100vw - 48px));
    margin-left: auto;
    margin-right: auto;
}

.radio-video {
    padding: 52px 0 20px;
}

.radio-video__header {
    display: grid;
    gap: 10px;
    justify-items: center;
    text-align: center;
    margin-bottom: 28px;
}

.radio-video__kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(24,67,43,0.18);
    background: rgba(255,255,255,0.72);
    color: var(--vox-forest2);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.radio-video h2 {
    color: var(--vox-forest);
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0;
}

.radio-video__header p {
    max-width: 680px;
    margin: 0;
    color: rgba(30,48,32,0.62);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* frame do vídeo */
.video-frame {
    border-radius: 24px;
    overflow: hidden;
    background: #0c1a10;
    border: 1px solid rgba(24,67,43,0.14);
    box-shadow:
        0 2px 0 rgba(255,255,255,0.6) inset,
        0 28px 56px rgba(12,32,16,0.18),
        0 4px 12px rgba(12,32,16,0.1);
}

.video-frame__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 20px;
    background: linear-gradient(90deg, rgba(20,48,28,0.98), rgba(30,60,36,0.98));
    border-bottom: 1px solid rgba(201,146,10,0.14);
}

.video-frame__badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0d6c3d, #18432b);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* ponto piscando ao lado do badge */
.video-frame__badge::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4dff91;
    animation: voxPulse 1.8s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes voxPulse {
    0%, 100% { opacity: 1; transform: scale(1);    }
    50%       { opacity: 0.4; transform: scale(0.7); }
}

.video-frame__label {
    color: rgba(245,240,220,0.7);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.video-frame__screen {
    overflow: hidden;
    line-height: 0;
}

.video-frame__screen video {
    display: block;
    width: 100%;
    max-height: 520px;
    object-fit: cover;
}

/* ─── SOCIAIS ────────────────────────────────────────── */
.radio-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
    padding: 24px 0 44px;
}

.social-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 22px;
    border: 1px solid rgba(24,67,43,0.14);
    border-radius: 999px;
    background: rgba(255,255,255,0.88);
    color: var(--vox-forest2);
    font-family: inherit;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(33,58,40,0.07);
    transition: background 0.18s, box-shadow 0.18s, transform 0.12s;
}
.social-pill--disabled {
    cursor: default;
}
.social-pill:hover {
    background: #fff;
    box-shadow: 0 6px 20px rgba(33,58,40,0.14);
    transform: translateY(-1px);
}

/* ─── FOOTER ─────────────────────────────────────────── */
.site-footer--vox {
    padding: 28px 0 36px;
    background: transparent;
    text-align: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    margin-bottom: 10px;
}

.footer-brand strong {
    color: var(--vox-forest);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.footer-brand span,
.site-footer--vox p {
    color: rgba(30,48,32,0.5);
    font-size: 0.84rem;
}

.site-footer--vox .copy {
    margin-top: 10px;
    font-size: 0.74rem;
    color: rgba(30,48,32,0.38);
}

/* ─── RESPONSIVO ─────────────────────────────────────── */
@media (max-width: 1060px) {
    .radio-hero__inner {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .radio-right {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px 28px;
        align-items: flex-start;
    }
    .radio-date { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
}

@media (max-width: 720px) {
    .radio-hero__inner {
        width: min(100vw - 28px, 100%);
        padding: 24px 0 30px;
    }

    .radio-player-grid {
        grid-template-columns: 140px 1fr;
        gap: 18px;
    }

    .radio-artista { font-size: 1rem; }
    .radio-musica  { font-size: 0.76rem; }

    .radio-video,
    .radio-socials { width: min(100vw - 28px, 100%); }

    .radio-video { padding-top: 36px; }

    .video-frame__top { flex-direction: column; align-items: flex-start; gap: 10px; }

    .social-pill { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
    .radio-player-grid {
        grid-template-columns: 1fr;
    }
    .radio-capa { max-width: 180px; }
}
