/* ==========================================================================
   OFFICERADIO - ESTILO RETRO ATUALIZADO
   ========================================================================== */

:root {
    --neon-orange: #ff6b35;
    --neon-gold: #ffd700;
    --neon-cyan: #00d9ff;
    --neon-red: #ff3b3b;
    --neon-green: #22c55e;
    --bg-dark: #0b2a4a;
    --bg-darker: #06101d;
    --bg-color: #07111d;
    --bg-secondary: #0d1a2a;
    --panel-color: rgba(9, 18, 32, 0.92);
    --panel-strong: rgba(7, 14, 24, 0.96);
    --accent-color: var(--neon-orange);
    --accent-soft: rgba(255, 107, 53, 0.16);
    --accent-glow: rgba(255, 107, 53, 0.32);
    --text-color: #f5f1e8;
    --text-dim: #c3c9d5;
    --text-faint: #8f98aa;
    --line-color: rgba(255, 255, 255, 0.14);
    --border-retro: 1px solid rgba(255, 255, 255, 0.14);
    --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.35);
    --shadow-hard: 0 24px 50px rgba(0, 0, 0, 0.45);
    --radius-md: 12px;
    --radius-lg: 20px;
    --font-primary: "Montserrat", "Segoe UI", sans-serif;
    --font-retro: "Special Elite", "Courier New", monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-primary);
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        linear-gradient(rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.015)),
        radial-gradient(circle at top, rgba(255, 107, 53, 0.18), transparent 28%),
        linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 55%, #05080d 100%);
    color: var(--text-color);
    line-height: 1.65;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 100% 4px;
    opacity: 0.18;
    mix-blend-mode: soft-light;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 4rem 0;
    border-bottom: 1px solid rgba(183, 175, 161, 0.14);
}

.section-title {
    text-align: center;
    font-size: clamp(1.9rem, 3vw, 2.5rem);
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-color);
    text-shadow: 0 0 18px rgba(255, 122, 89, 0.15);
    font-family: var(--font-retro);
}

.section-subtitle {
    text-align: center;
    color: var(--text-dim);
    margin: 0 auto 2.2rem;
    font-size: 1rem;
    max-width: 760px;
}

.eyebrow,
.card-tag,
.track-label {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-color);
    font-family: var(--font-retro);
}

.card-tag {
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: var(--accent-soft);
    border: 1px solid rgba(255, 122, 89, 0.25);
    margin-bottom: 0.9rem;
}

.inline-link,
.hero-btn,
.btn-submit,
.btn-play {
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.inline-link {
    display: inline-flex;
    margin-top: 1rem;
    color: var(--accent-color);
    font-weight: bold;
}

.inline-link:hover,
.hero-btn:hover,
.btn-submit:hover,
.btn-play:hover {
    transform: translateY(-2px);
}

/* ==========================================================================
   HEADER E MENU
   ========================================================================== */

.site-header {
    background: linear-gradient(180deg, rgba(3, 7, 15, 0.98), rgba(7, 14, 24, 0.96));
    padding: 0.7rem 0 0.8rem;
    border-bottom: 2px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.site-header::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.7), transparent);
}

.header-shell {
    display: grid;
    grid-template-columns: minmax(420px, 500px) minmax(460px, 1fr);
    gap: 1.1rem;
    align-items: center;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
    flex-wrap: nowrap;
}

.logo-radio {
    width: 78px;
    height: 78px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    filter: drop-shadow(0 0 16px rgba(255, 107, 53, 0.22));
    object-fit: cover;
    background: rgba(255, 255, 255, 0.03);
    flex-shrink: 0;
}

.brand-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-copy h1 {
    font-size: clamp(1.9rem, 2.9vw, 2.8rem);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 0.98;
    font-family: var(--font-retro);
    white-space: nowrap;
    word-break: normal;
}

.brand-copy h1 span {
    display: inline-block;
}

.brand-copy p {
    margin-top: 0.35rem;
    color: var(--accent-color);
    font-size: 0.92rem;
    font-family: var(--font-retro);
}

.header-live-card {
    display: grid;
    grid-template-columns: 78px 88px minmax(0, 1fr);
    gap: 0.75rem;
    align-items: center;
    min-height: 84px;
    padding: 0.65rem 0.75rem;
    border: 2px solid var(--accent-color);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(12, 21, 36, 0.88), rgba(8, 14, 25, 0.94));
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.26);
    min-width: 0;
}

.header-live-avatar,
.header-live-cover {
    border: 1px solid rgba(255, 107, 53, 0.55);
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    min-width: 0;
}

.header-live-avatar img,
.header-live-cover img {
    width: 100%;
    height: 58px;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.03);
}

.header-live-meta {
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
    min-width: 0;
}

.header-live-kicker {
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.72rem;
    font-family: var(--font-retro);
}

.header-live-meta strong {
    font-size: 1.02rem;
    color: var(--text-color);
    line-height: 1.2;
}

.header-live-meta span {
    color: var(--text-dim);
    font-size: 0.84rem;
    line-height: 1.3;
}

.header-live-schedule,
.header-live-detail,
.header-live-meta strong {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

nav {
    background: rgba(5, 10, 18, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.7rem;
    padding: 0.75rem 0;
}

nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-retro);
}

nav a:hover,
nav a.is-active {
    background: var(--accent-soft);
    color: var(--text-color);
    border-color: rgba(255, 107, 53, 0.42);
    box-shadow: 0 0 18px rgba(255, 107, 53, 0.15);
}

/* ==========================================================================
   HERO E PAINEIS
   ========================================================================== */

.hero {
    text-align: center;
    background: radial-gradient(circle at top, rgba(255, 107, 53, 0.18), transparent 36%), linear-gradient(180deg, rgba(14, 24, 40, 0.96) 0%, rgba(9, 15, 26, 0.98) 100%);
    padding: 3.5rem 0 3rem;
    border-bottom: 1px dashed rgba(183, 175, 161, 0.25);
}

.hero h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.08;
    margin-bottom: 1rem;
    font-family: var(--font-retro);
}

.hero p {
    color: var(--text-dim);
    font-size: 1.04rem;
}

.hero-home {
    text-align: left;
}

.hero-panel {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 1.8rem;
    align-items: stretch;
}

.hero-copy,
.hero-status-card,
.k7-player-container,
.now-card,
.history-box,
.studio-box,
.current-track-bar,
.prog-card,
.timeline-card,
.vitrine-item,
.team-card,
.story-card,
.contact-grid {
    background: linear-gradient(180deg, rgba(44, 44, 44, 0.92), rgba(22, 22, 22, 0.98));
    border: 1px solid rgba(183, 175, 161, 0.18);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.hero-copy,
.hero-status-card {
    padding: 2rem;
}

.hero-copy {
    position: relative;
    overflow: hidden;
}

.hero-copy::after {
    content: "";
    position: absolute;
    inset: auto -20% -35% auto;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 122, 89, 0.16), transparent 70%);
    pointer-events: none;
}

.hero-actions,
.hero-chips,
.hero-stats,
.player-meta,
.story-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.hero-actions {
    margin-top: 1.5rem;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.8rem 1.3rem;
    border-radius: 999px;
    border: 1px solid rgba(183, 175, 161, 0.22);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-color);
    font-weight: bold;
}

.hero-btn-primary {
    background: var(--accent-color);
    color: #160f0a;
    border-color: transparent;
    box-shadow: 0 10px 22px rgba(255, 122, 89, 0.25);
}

.hero-chips {
    margin-top: 1.5rem;
}

.hero-chips span,
.listener-pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(183, 175, 161, 0.16);
    border-radius: 999px;
    padding: 0.55rem 0.85rem;
    color: var(--text-dim);
    font-size: 0.85rem;
}

.hero-status-card h3 {
    margin: 0.9rem 0 0.45rem;
    font-size: 1.6rem;
    color: var(--accent-color);
}

.hero-status-list {
    display: grid;
    gap: 0.55rem;
    margin: 1.2rem 0 1.5rem;
    color: var(--text-dim);
}

.stat-box {
    flex: 1 1 120px;
    min-width: 120px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(183, 175, 161, 0.16);
    border-radius: 18px;
    padding: 0.95rem 1rem;
}

.stat-box strong {
    display: block;
    font-size: 1.4rem;
    color: var(--text-color);
}

.stat-box span {
    display: block;
    color: var(--text-faint);
    font-size: 0.82rem;
    margin-top: 0.3rem;
}

/* ==========================================================================
   PLAYER E BLOCO AO VIVO
   ========================================================================== */

.live-grid,
.mid-grid,
.timeline-grid,
.stories-grid {
    display: grid;
    gap: 1.8rem;
}

.live-grid,
.mid-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.k7-player-container {
    padding: 1.5rem;
    align-items: stretch;
}

.player-topline,
.player-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.player-topline {
    margin-bottom: 1rem;
    color: var(--text-dim);
    font-size: 0.9rem;
}

.badge-live {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(215, 42, 42, 0.16);
    color: #ffb0b0;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 97, 97, 0.35);
    font-weight: bold;
    animation: blink 1.2s infinite;
}

.k7-case {
    width: 100%;
    min-height: 290px;
    background: linear-gradient(180deg, #2d2b29 0%, #161616 100%);
    border: 4px solid #4c4338;
    border-radius: 22px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: inset 0 0 24px rgba(0, 0, 0, 0.55), var(--shadow-hard);
    position: relative;
    overflow: hidden;
}

.k7-case::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    pointer-events: none;
}

.k7-label {
    position: relative;
    background: linear-gradient(180deg, #f4eee5 0%, #dad2c7 100%);
    min-height: 130px;
    border-radius: 14px;
    border-top: 16px solid #195eaf;
    border-bottom: 16px solid #b92020;
    display: flex;
    justify-content: center;
    align-items: center;
}

.k7-brand {
    position: absolute;
    top: 10px;
    left: 14px;
    color: #151515;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 0.12em;
}

.k7-window {
    width: min(250px, 100%);
    height: 74px;
    background: rgba(9, 9, 9, 0.92);
    border: 3px solid #61594f;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    box-shadow: inset 0 0 18px rgba(0, 0, 0, 0.7);
}

.k7-reel,
.k7-tape {
    flex-shrink: 0;
}

.k7-reel {
    width: 42px;
    height: 42px;
    border: 4px dashed rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    background: radial-gradient(circle, #0f0f0f 0%, #000 100%);
}

.k7-tape {
    width: 55px;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255, 122, 89, 0.9), transparent);
    border-radius: 999px;
}

.k7-deck-line {
    width: 100%;
    height: 22px;
    margin-top: 1.2rem;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 122, 89, 0.1), rgba(255, 255, 255, 0.05), rgba(255, 122, 89, 0.1));
}

.player-leds {
    display: flex;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 1rem;
}

.player-leds span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #5d564d;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.35);
}

.playing .player-leds span:nth-child(1) {
    background: #ff5f56;
}

.playing .player-leds span:nth-child(2) {
    background: #ffbd2e;
}

.playing .player-leds span:nth-child(3) {
    background: #27c93f;
    box-shadow: 0 0 16px rgba(39, 201, 63, 0.45);
}

.k7-controls {
    margin-top: 1.35rem;
    display: flex;
    justify-content: center;
}

.btn-play {
    background: linear-gradient(180deg, #3d3d3d 0%, #252525 100%);
    color: var(--text-color);
    border: 1px solid rgba(183, 175, 161, 0.26);
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
}

.btn-play:active {
    transform: translateY(1px);
}

.playing .k7-reel {
    animation: spin 2.8s linear infinite;
}

.playing .btn-play {
    background: linear-gradient(180deg, #ff8c6f 0%, #ff6b48 100%);
    color: #140c08;
    border-color: transparent;
}

.player-meta {
    margin-top: 1rem;
    color: var(--text-faint);
    font-size: 0.82rem;
}

.now-card {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 1.4rem;
    padding: 1.5rem;
    align-items: center;
}

.now-avatar {
    width: 100%;
    height: 220px;
    border-radius: 18px;
    border: 2px solid rgba(255, 122, 89, 0.4);
    box-shadow: 0 0 22px rgba(255, 122, 89, 0.08);
}

.now-info h3 {
    font-size: 1.55rem;
    text-transform: uppercase;
    color: var(--accent-color);
    margin: 0.8rem 0;
}

.now-info p + p {
    margin-top: 0.45rem;
}

.current-track-bar,
.history-box,
.studio-box {
    padding: 1.5rem;
}

.track-flex {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.8rem;
}

.track-cover {
    width: 88px;
    height: 88px;
    border-radius: 18px;
    border: 1px solid rgba(183, 175, 161, 0.25);
}

.track-info {
    flex: 1 1 240px;
}

.listener-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-dim);
}

.listener-pill span {
    width: 10px;
    height: 10px;
    background: #27c93f;
    border-radius: 50%;
    box-shadow: 0 0 14px rgba(39, 201, 63, 0.45);
}

.history-box h3,
.timeline-copy h3,
.story-copy h3,
.team-card h3 {
    margin: 0.7rem 0 0.8rem;
    color: var(--text-color);
}

.studio-box {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top, rgba(44, 255, 157, 0.08), transparent 40%), linear-gradient(180deg, #111 0%, #191919 100%);
}

.studio-screen {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #97ffc6;
    gap: 0.7rem;
}

.studio-clock {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: 1;
    color: #cbffe0;
    text-shadow: 0 0 24px rgba(64, 255, 159, 0.25);
}

/* ==========================================================================
   GRIDS, TIMELINE E CARDS
   ========================================================================== */

.prog-container,
.vitrine-grid,
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.4rem;
}

.prog-card,
.team-card,
.story-card {
    padding: 1.25rem;
}

.prog-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    border: 2px solid rgba(255, 122, 89, 0.4);
}

.prog-card h4 {
    font-size: 1.18rem;
    color: var(--accent-color);
    margin-bottom: 0.35rem;
}

.prog-locutor,
.team-role {
    color: var(--text-dim);
    margin-top: 0.55rem;
}

.retro-timeline {
    background: linear-gradient(180deg, rgba(255, 122, 89, 0.03), transparent);
}

.timeline-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline-card {
    overflow: hidden;
}

.timeline-image,
.story-image {
    width: 100%;
    height: 230px;
}

.timeline-copy,
.story-copy {
    padding: 1.25rem;
}

.timeline-copy strong {
    display: block;
    margin-top: 1rem;
    color: var(--accent-color);
}

.sponsor-wrap {
    padding: 2rem 20px 0;
}

.pub-slider {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(183, 175, 161, 0.18);
    box-shadow: var(--shadow-soft);
    background: #080808;
}

.pub-track {
    display: flex;
    width: 400%;
    height: 100%;
    animation: slidePub 18s infinite ease-in-out;
}

.pub-slide {
    width: 25%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.vitrine-item {
    padding: 1.2rem;
    text-align: center;
}

.media-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.3));
    border: 1px solid rgba(183, 175, 161, 0.16);
}

.vitrine-img {
    width: 100%;
    height: 100%;
}

.spin-effect {
    border-radius: 50%;
    animation: spin 6s linear infinite;
}

.team-card {
    text-align: center;
}

.team-img {
    width: 100%;
    height: 250px;
    border-radius: 18px;
    margin-bottom: 1rem;
}

.stories-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section__head {
    margin-bottom: 2rem;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.gallery__item {
    background: linear-gradient(180deg, rgba(12, 21, 36, 0.92), rgba(7, 14, 24, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.gallery__item img {
    width: 100%;
    height: 170px;
}

.gallery__item figcaption {
    padding: 0.85rem 0.9rem 1rem;
    color: var(--text-color);
    text-align: center;
    font-size: 0.92rem;
    font-family: var(--font-retro);
}

.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 1.4rem;
}

.blog-filter {
    padding: 0.7rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 107, 53, 0.35);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-color);
    cursor: pointer;
    font-family: var(--font-retro);
    transition: var(--transition);
}

.blog-filter.active,
.blog-filter:hover {
    background: var(--accent-soft);
    box-shadow: 0 0 18px rgba(255, 107, 53, 0.16);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.2rem;
}

.blog-post-card {
    background: linear-gradient(180deg, rgba(12, 21, 36, 0.92), rgba(7, 14, 24, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.blog-post-image {
    width: 100%;
    height: 190px;
}

.blog-post-copy {
    padding: 1rem 1rem 1.1rem;
}

.blog-post-copy h3 {
    margin: 0.7rem 0 0.65rem;
    color: var(--text-color);
}

.blog-loading {
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    border: 1px dashed rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    color: var(--text-dim);
}

.story-meta {
    margin-top: 1.2rem;
    justify-content: space-between;
    color: var(--text-faint);
    font-size: 0.82rem;
}

/* ==========================================================================
   BLOCOS LEGADOS E FORMULARIOS
   ========================================================================== */

.history-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.history-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(183, 175, 161, 0.16);
    padding: 0.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-radius: 14px;
}

.history-thumb {
    width: 50px;
    height: 50px;
}

.history-meta {
    flex-grow: 1;
    font-size: 0.9rem;
}

.blog-wrapper,
.marquee-container {
    overflow: hidden;
}

.blog-track {
    display: flex;
    gap: 1rem;
}

.blog-card {
    padding: 1rem;
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.blog-img {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
}

.marquee-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: scrollMarquee 15s linear infinite;
}

.marquee-track img {
    width: 120px;
    height: 120px;
    background: #fff;
    padding: 5px;
    border-radius: 4px;
}

.acervo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 1rem;
}

.acervo-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(183, 175, 161, 0.16);
    padding: 0.6rem;
    text-align: center;
    font-size: 0.8rem;
    border-radius: 14px;
}

.acervo-img {
    width: 100%;
    height: 110px;
    margin-bottom: 0.4rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    padding: 0;
}

.contact-page .section-title i {
    margin-right: 0.4rem;
}

.contact-alert {
    padding: 1rem 1.2rem;
    margin-bottom: 1.6rem;
    border-radius: 16px;
    font-weight: 700;
    text-align: center;
}

.contact-alert-success {
    background: rgba(34, 197, 94, 0.16);
    color: #e8fff1;
    border: 1px solid rgba(34, 197, 94, 0.45);
}

.contact-alert-error {
    background: rgba(255, 59, 59, 0.14);
    color: #fff0f0;
    border: 1px solid rgba(255, 59, 59, 0.4);
}

.contact-panel {
    background: linear-gradient(180deg, rgba(13, 26, 46, 0.94), rgba(8, 16, 30, 0.98));
    border: 2px solid rgba(0, 217, 255, 0.78);
    border-radius: 22px;
    padding: 1.6rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.contact-panel-head {
    margin-bottom: 1.4rem;
}

.contact-panel-head h3 {
    font-size: 1.8rem;
    color: var(--neon-gold);
    margin-bottom: 0.75rem;
    font-family: var(--font-retro);
}

.contact-panel-head h3 i {
    color: var(--accent-color);
    margin-right: 0.45rem;
}

.contact-panel-head p {
    color: var(--text-dim);
    line-height: 1.6;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.45rem;
    font-weight: 700;
    color: var(--neon-gold);
    font-size: 1.02rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    background: rgba(4, 11, 25, 0.78);
    border: 2px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    color: var(--text-color);
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(0, 217, 255, 0.7);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(195, 201, 213, 0.7);
}

.contact-actions {
    margin-top: 1.5rem;
    display: flex;
    justify-content: flex-end;
}

.btn-submit {
    background: var(--accent-color);
    color: #140c08;
    border: none;
    padding: 0.85rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 999px;
    font-family: var(--font-retro);
}

.site-footer {
    position: relative;
    margin-top: 3rem;
    padding: 3rem 0 0;
    background: linear-gradient(180deg, rgba(5, 12, 25, 0.98), rgba(4, 10, 18, 1) 100%);
    border-top: 2px solid var(--accent-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.6rem;
    align-items: stretch;
}

.footer-grid > * {
    width: 100%;
    min-height: 460px;
    padding: 2rem 1.7rem;
    background: linear-gradient(180deg, rgba(9, 24, 58, 0.96), rgba(7, 19, 48, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
    text-align: left;
}

.footer-brand-block h2,
.footer-links-block h3,
.footer-social-block h3,
.footer-contact-block h3 {
    font-family: var(--font-retro);
    color: var(--neon-gold);
    margin-bottom: 1.1rem;
}

.footer-brand-block h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--text-color);
    line-height: 1;
}

.footer-brand-block h2 span:last-child {
    color: var(--neon-gold);
}

.footer-brand-block p {
    max-width: 280px;
    color: var(--text-dim);
    margin-top: 1.2rem;
    line-height: 1.7;
}

.footer-logo {
    width: 92px;
    height: 92px;
    margin-top: 1.35rem;
    border-radius: 50%;
    border: 2px solid var(--neon-gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.25);
}

.footer-links {
    display: grid;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--text-dim);
    font-size: 1rem;
}

.footer-links a:hover {
    color: var(--text-color);
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.footer-socials a {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.03);
}

.footer-socials a:hover {
    background: var(--accent-soft);
    box-shadow: 0 0 18px rgba(255, 107, 53, 0.2);
}

.footer-contact-list {
    display: grid;
    gap: 1rem;
}

.footer-contact-item {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-item:last-child {
    border-bottom: none;
}

.footer-contact-item strong {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--neon-gold);
    margin-bottom: 0.45rem;
}

.footer-contact-item span {
    color: var(--neon-cyan);
}

.footer-bottom-line {
    margin-top: 2rem;
    padding: 1rem 0 5.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-dim);
    text-align: center;
}

.retro-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 92px;
    z-index: 1200;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background: linear-gradient(180deg, #2dd66f, #16a34a);
    color: #f6fff8;
    box-shadow: 0 14px 28px rgba(22, 163, 74, 0.3);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.82rem;
}

.retro-whatsapp i {
    font-size: 1.15rem;
}

.floating-player-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1190;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.1rem;
    background: linear-gradient(180deg, rgba(15, 25, 44, 0.96), rgba(10, 18, 32, 0.98));
    border-top: 2px solid var(--accent-color);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.28);
}

.floating-player-top {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #ff8a52, #ff6b35);
    color: #fff8f1;
    box-shadow: 0 10px 22px rgba(255, 107, 53, 0.25);
}

.floating-player-now {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
    flex: 1 1 auto;
}

.floating-player-thumb {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.18);
    object-fit: cover;
    flex-shrink: 0;
}

.floating-player-meta {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.floating-player-kicker {
    color: var(--neon-cyan);
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.floating-player-meta strong {
    color: var(--neon-gold);
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.floating-player-meta span:last-child {
    color: var(--text-color);
    font-size: 0.9rem;
}

.floating-player-toggle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(180deg, #ff8a52, #ff6b35);
    color: #fff8f1;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(255, 107, 53, 0.25);
    flex-shrink: 0;
}

.floating-player-toggle.is-playing {
    background: linear-gradient(180deg, #ffcf5c, #ff8f1f);
}

/* ==========================================================================
   REVEAL E ANIMACOES
   ========================================================================== */

[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.45;
    }
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes slidePub {
    0%,
    20% {
        transform: translateX(0);
    }

    25%,
    45% {
        transform: translateX(-25%);
    }

    50%,
    70% {
        transform: translateX(-50%);
    }

    75%,
    95% {
        transform: translateX(-75%);
    }

    100% {
        transform: translateX(0);
    }
}

/* ==========================================================================
   RESPONSIVIDADE
   ========================================================================== */

@media (max-width: 1180px) {
    .header-shell,
    .hero-panel,
    .timeline-grid,
    .stories-grid {
        grid-template-columns: 1fr;
    }

    .header-shell {
        gap: 0.9rem;
    }

    .header-brand {
        justify-content: center;
    }

    .header-live-card {
        max-width: 100%;
    }
}

@media (max-width: 1080px) {
    .hero-panel,
    .timeline-grid,
    .stories-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid > * {
        min-height: auto;
    }

    .live-grid,
    .mid-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 0.8rem 0 0.7rem;
    }

    .header-brand {
        flex-direction: column;
        text-align: center;
        gap: 0.65rem;
    }

    .brand-copy h1 {
        white-space: normal;
    }

    .header-live-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0.9rem;
        gap: 0.7rem;
        border-radius: 18px;
    }

    .header-live-avatar,
    .header-live-cover {
        width: min(160px, 100%);
        margin: 0 auto;
    }

    .header-live-avatar img,
    .header-live-cover img {
        height: 86px;
    }

    .header-live-meta strong,
    .header-live-schedule,
    .header-live-detail {
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
    }

    section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 16px;
    }

    nav ul {
        gap: 0.4rem;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        padding: 0.7rem 0 0.85rem;
        scrollbar-width: thin;
    }

    nav a {
        font-size: 0.78rem;
        padding: 0.48rem 0.72rem;
        white-space: nowrap;
    }

    .hero h2 {
        font-size: clamp(1.7rem, 10vw, 2.55rem);
    }

    .hero p,
    .section-subtitle {
        font-size: 0.95rem;
    }

    .hero-copy,
    .hero-status-card,
    .k7-player-container,
    .now-card,
    .history-box,
    .studio-box,
    .current-track-bar,
    .prog-card,
    .team-card,
    .story-card {
        padding: 1.2rem;
    }

    .now-card {
        grid-template-columns: 1fr;
    }

    .now-avatar {
        max-width: 280px;
        height: 260px;
        margin: 0 auto;
    }

    .prog-container,
    .vitrine-grid,
    .team-grid,
    .stories-grid,
    .blog-grid,
    .gallery,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid > * {
        min-height: auto;
        padding: 1.5rem 1.2rem;
    }

    .pub-slider {
        height: 160px;
    }

    .blog-card {
        flex-direction: column;
        text-align: center;
    }

    .blog-img {
        width: 100%;
    }

    .track-flex,
    .player-topline,
    .player-meta {
        align-items: flex-start;
        flex-direction: column;
    }

    .floating-player-bar {
        gap: 0.7rem;
        padding: 0.65rem 0.8rem;
    }

    .floating-player-top {
        width: 44px;
        height: 44px;
    }

    .floating-player-thumb {
        width: 44px;
        height: 44px;
    }

    .floating-player-meta strong {
        font-size: 0.88rem;
    }

    .floating-player-meta span:last-child {
        font-size: 0.78rem;
    }

    .floating-player-toggle {
        width: 46px;
        height: 46px;
    }

    .retro-whatsapp {
        right: 14px;
        bottom: 78px;
        padding: 0.72rem 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .logo-radio {
        width: 72px;
        height: 72px;
    }

    .brand-copy h1 {
        font-size: 1.55rem;
        letter-spacing: 0.08em;
    }

    .brand-copy p {
        font-size: 0.82rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-btn {
        width: 100%;
    }

    .pub-slider {
        height: 130px;
    }

    .retro-whatsapp span {
        display: none;
    }

    .retro-whatsapp {
        width: 54px;
        height: 54px;
        justify-content: center;
        padding: 0;
        border-radius: 50%;
    }

    .floating-player-bar {
        padding: 0.55rem 0.65rem;
    }

    .floating-player-now {
        gap: 0.55rem;
    }

    .floating-player-kicker {
        font-size: 0.64rem;
    }

    .floating-player-meta strong {
        font-size: 0.8rem;
    }

    .floating-player-meta span:last-child {
        font-size: 0.72rem;
    }
}
