/* FM Nanuque 94,5 — identidade do portal.
   Carrega depois do radio98-portal.css: redefine as variáveis dele (páginas internas)
   e desenha cabeçalho, menu, capa, rodapé e player próprios. */

:root {
    --fmn-blue: #0a2a8f;
    --fmn-blue-deep: #061a5c;
    --fmn-blue-soft: #e9eefc;
    --fmn-red: #d7000f;
    --fmn-red-dark: #a8000c;
    --fmn-yellow: #ffd21f;
    --fmn-ink: #111827;
    --fmn-muted: #5b6475;
    --fmn-line: #e3e6ec;
    --fmn-bg: #f3f4f7;
    --fmn-white: #ffffff;
    --fmn-radius: 10px;
    --fmn-display: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;

    /* páginas internas herdadas da 98 */
    --r98-red: var(--fmn-red);
    --r98-red-dark: var(--fmn-red-dark);
    --r98-blue: var(--fmn-blue);
    --r98-yellow: var(--fmn-yellow);
    --r98-ink: var(--fmn-ink);
    --r98-muted: var(--fmn-muted);
    --r98-line: var(--fmn-line);
    --r98-soft: var(--fmn-bg);
}

body.fmn {
    background: var(--fmn-bg);
    color: var(--fmn-ink);
    padding-top: 0;
}

body.fmn-has-player {
    padding-bottom: 76px;
}

.fmn a:focus-visible,
.fmn button:focus-visible {
    outline: 3px solid var(--fmn-yellow);
    outline-offset: 2px;
}

/* ---------- barra superior ---------- */
.fmn-topbar {
    background: var(--fmn-blue-deep);
    color: #c9d3f5;
    font-size: 0.8rem;
}

.fmn-topbar-inner {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 36px;
}

.fmn-topbar-inner i {
    margin-right: 4px;
}

.fmn-topbar-links {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 14px;
}

.fmn-topbar-links a {
    color: #fff;
}

.fmn-topbar-links a:hover {
    color: var(--fmn-yellow);
}

.fmn-topbar-whats {
    background: #1faa53;
    border-radius: 999px;
    padding: 3px 12px;
    font-weight: 600;
}

.fmn-topbar-whats:hover {
    background: #178a43;
    color: #fff !important;
}

/* ---------- cabeçalho ---------- */
.fmn-header {
    background:
        radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.10), transparent 45%),
        linear-gradient(120deg, var(--fmn-blue) 0%, #0d38b8 100%);
    color: #fff;
}

.fmn-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 16px;
    padding-bottom: 16px;
}

.fmn-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
}

.fmn-brand img {
    width: 84px;
    height: 84px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    object-fit: cover;
}

.fmn-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.fmn-brand-text strong {
    font-family: var(--fmn-display);
    font-weight: 800;
    font-size: 2.6rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fmn-brand-text small {
    margin-top: 6px;
    color: var(--fmn-yellow);
    font-weight: 600;
    font-size: 0.9rem;
}

.fmn-onair {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(6, 26, 92, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 8px 22px 8px 8px;
    max-width: 440px;
}

.fmn-onair-play,
.fmn-player-toggle {
    flex: 0 0 auto;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 0;
    background: var(--fmn-red);
    color: #fff;
    font-size: 1.9rem;
    display: grid;
    place-items: center;
    box-shadow: 0 0 0 4px rgba(215, 0, 15, 0.25);
    transition: transform 0.15s ease, background 0.15s ease;
}

.fmn-onair-play:hover,
.fmn-player-toggle:hover {
    background: var(--fmn-red-dark);
    transform: scale(1.05);
}

.fmn-onair-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.fmn-onair-text strong {
    font-size: 1.05rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fmn-onair-text small {
    color: #c9d3f5;
    font-size: 0.8rem;
}

.fmn-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--fmn-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    color: var(--fmn-yellow);
}

.fmn-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff3b3b;
    box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.7);
    animation: fmn-pulse 1.6s infinite;
}

@keyframes fmn-pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(255, 59, 59, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 59, 59, 0); }
}

/* ---------- menu ---------- */
.fmn-nav {
    background: var(--fmn-red);
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.fmn-navbar {
    padding: 0;
    min-height: 48px;
}

.fmn-menu .navbar-nav .nav-link {
    color: #fff;
    font-family: var(--fmn-display);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 14px;
}

.fmn-menu .navbar-nav .nav-link:hover,
.fmn-menu .navbar-nav .nav-link:focus,
.fmn-menu .navbar-nav .show > .nav-link {
    color: var(--fmn-yellow);
    background: var(--fmn-red-dark);
}

.fmn-menu .dropdown-menu {
    border: 0;
    border-top: 3px solid var(--fmn-yellow);
    border-radius: 0 0 var(--fmn-radius) var(--fmn-radius);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    padding: 6px 0;
    min-width: 220px;
}

.fmn-menu .dropdown-menu .nav-link {
    white-space: nowrap;
}

.fmn-menu .dropdown-menu .nav-link {
    color: var(--fmn-ink);
    font-family: inherit;
    font-size: 0.95rem;
    text-transform: none;
    letter-spacing: 0;
    padding: 8px 18px;
}

.fmn-menu .dropdown-menu .nav-link:hover {
    color: var(--fmn-red);
    background: var(--fmn-bg);
}

.fmn-menu-toggle {
    color: #fff;
    border: 0;
    font-family: var(--fmn-display);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1rem;
    padding: 10px 0;
}

.fmn-menu-toggle i {
    font-size: 1.5rem;
    vertical-align: middle;
}

/* ---------- faixa de últimas ---------- */
.fmn-ticker {
    background: var(--fmn-white);
    border-bottom: 1px solid var(--fmn-line);
    font-size: 0.9rem;
}

.fmn-ticker-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 42px;
    overflow: hidden;
}

.fmn-ticker-label {
    flex: 0 0 auto;
    background: var(--fmn-yellow);
    color: var(--fmn-ink);
    font-family: var(--fmn-display);
    font-weight: 800;
    text-transform: uppercase;
    padding: 2px 10px;
    border-radius: 4px;
}

.fmn-ticker-track {
    overflow: hidden;
    flex: 1;
    mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}

.fmn-ticker-items {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: fmn-ticker 70s linear infinite;
}

.fmn-ticker-track:hover .fmn-ticker-items,
.fmn-ticker-track:focus-within .fmn-ticker-items {
    animation-play-state: paused;
}

.fmn-ticker-items a {
    white-space: nowrap;
    font-weight: 500;
}

.fmn-ticker-items a:hover {
    color: var(--fmn-red);
}

.fmn-ticker-items time {
    color: var(--fmn-red);
    font-weight: 700;
    margin-right: 6px;
}

@keyframes fmn-ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .fmn-ticker-items { animation: none; }
    .fmn-ticker-track { overflow-x: auto; }
    .fmn-live-dot { animation: none; }
}

/* ---------- capa ---------- */
.fmn-home {
    padding: 24px 0 40px;
}

.fmn-home img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fmn-tag {
    display: inline-block;
    background: var(--fmn-red);
    color: #fff;
    font-family: var(--fmn-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.8rem;
    padding: 2px 8px;
    border-radius: 3px;
    margin-bottom: 8px;
}

.fmn-kicker {
    display: block;
    color: var(--fmn-red);
    font-family: var(--fmn-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.fmn-home time {
    color: var(--fmn-muted);
    font-size: 0.8rem;
}

.fmn-headlines {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
}

.fmn-lead,
.fmn-overlay-card {
    position: relative;
    border-radius: var(--fmn-radius);
    overflow: hidden;
    background: var(--fmn-blue-deep);
}

.fmn-lead-link,
.fmn-overlay-card a {
    display: block;
    position: relative;
    height: 100%;
    color: #fff;
}

.fmn-lead {
    min-height: 460px;
}

.fmn-lead img,
.fmn-overlay-card img {
    position: absolute;
    inset: 0;
    transition: transform 0.4s ease;
}

.fmn-lead-link:hover img,
.fmn-overlay-card a:hover img {
    transform: scale(1.03);
}

.fmn-lead-body,
.fmn-overlay-card div {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px;
    background: linear-gradient(180deg, rgba(4, 12, 40, 0) 0%, rgba(4, 12, 40, 0.88) 55%);
}

.fmn-lead-body h1 {
    font-size: clamp(1.5rem, 2.6vw, 2.25rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 10px;
    text-wrap: balance;
}

.fmn-lead-body p {
    color: #dbe2f7;
    margin: 0 0 8px;
    max-width: 62ch;
}

.fmn-lead-body time {
    color: #b8c3e6;
}

.fmn-lead-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
}

.fmn-overlay-card {
    min-height: 222px;
}

.fmn-overlay-card div {
    padding: 18px;
}

.fmn-overlay-card h2 {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 0;
}

.fmn-lead-row {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.fmn-card a {
    display: block;
    background: var(--fmn-white);
    border-radius: var(--fmn-radius);
    overflow: hidden;
    height: 100%;
    padding-bottom: 14px;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.06);
    transition: box-shadow 0.2s ease;
}

.fmn-card a:hover {
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.12);
}

.fmn-card-media {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    margin-bottom: 12px;
}

.fmn-card .fmn-kicker,
.fmn-card h2,
.fmn-card time {
    padding: 0 16px;
}

.fmn-card h2 {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 8px;
}

.fmn-card a:hover h2,
.fmn-list-item a:hover h3,
.fmn-desk a:hover h3,
.fmn-desk li a:hover,
.fmn-ranked a:hover {
    color: var(--fmn-red);
}

/* programação de hoje */
.fmn-schedule {
    margin: 32px 0;
    background: var(--fmn-blue-deep);
    color: #fff;
    border-radius: var(--fmn-radius);
    padding: 20px 24px 24px;
}

.fmn-schedule-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.fmn-schedule-head h2 {
    font-family: var(--fmn-display);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.6rem;
    margin: 0;
}

.fmn-schedule-head h2 i {
    color: var(--fmn-yellow);
}

.fmn-schedule-head a {
    color: var(--fmn-yellow);
    font-weight: 600;
    font-size: 0.9rem;
}

.fmn-schedule-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(210px, 1fr);
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: thin;
}

.fmn-schedule-list li {
    display: flex;
    gap: 12px;
    align-items: center;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--fmn-radius);
    padding: 10px;
    position: relative;
}

.fmn-schedule-list li.is-on-air {
    background: var(--fmn-red);
    border-color: var(--fmn-red);
}

.fmn-schedule-list li.is-on-air::before {
    content: 'No ar';
    position: absolute;
    top: -9px;
    left: 10px;
    background: var(--fmn-yellow);
    color: var(--fmn-ink);
    font-family: var(--fmn-display);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.75rem;
    padding: 0 8px;
    border-radius: 3px;
}

.fmn-schedule-list img {
    width: 56px !important;
    height: 56px !important;
    border-radius: 8px;
    flex: 0 0 auto;
    background: #fff;
    object-fit: contain !important;
    padding: 3px;
}

.fmn-schedule-list li div {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}

.fmn-schedule-list time {
    color: var(--fmn-yellow) !important;
    font-weight: 700;
    font-size: 0.8rem !important;
}

.fmn-schedule-list li.is-on-air time {
    color: #fff !important;
}

.fmn-schedule-list strong {
    font-size: 0.95rem;
    line-height: 1.2;
}

.fmn-schedule-list small {
    color: #c9d3f5;
    font-size: 0.78rem;
}

.fmn-schedule-list li.is-on-air small {
    color: #ffe0e0;
}

.fmn-schedule-live {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 0;
    background: #fff;
    color: var(--fmn-red);
    font-size: 1.2rem;
    display: grid;
    place-items: center;
}

/* colunas */
.fmn-columns {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    align-items: start;
}

.fmn-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 3px solid var(--fmn-ink);
    margin-bottom: 16px;
}

.fmn-section-head h2 {
    font-family: var(--fmn-display);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.5rem;
    margin: 0;
    padding: 0 12px 2px 0;
    position: relative;
}

.fmn-section-head h2::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 3px;
    background: var(--fmn-red);
}

.fmn-section-head a {
    color: var(--fmn-red);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.fmn-list {
    display: flex;
    flex-direction: column;
}

.fmn-list-item a {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid var(--fmn-line);
}

.fmn-list-item:first-child a {
    padding-top: 0;
}

.fmn-list-media {
    display: block;
    aspect-ratio: 16 / 10;
    border-radius: 8px;
    overflow: hidden;
    background: var(--fmn-line);
}

.fmn-list-item h3 {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 6px;
}

.fmn-list-item p {
    color: var(--fmn-muted);
    font-size: 0.92rem;
    margin: 0 0 6px;
}

/* lateral */
.fmn-rail {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 64px;
}

.fmn-panel {
    background: var(--fmn-white);
    border-radius: var(--fmn-radius);
    padding: 16px 18px;
}

.fmn-ranked {
    list-style: none;
    counter-reset: fmn-rank;
    margin: 0;
    padding: 0;
}

.fmn-ranked li {
    counter-increment: fmn-rank;
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 8px;
    padding: 10px 0;
    border-bottom: 1px solid var(--fmn-line);
    font-weight: 600;
    font-size: 0.93rem;
    line-height: 1.3;
}

.fmn-ranked li:last-child {
    border-bottom: 0;
}

.fmn-ranked li::before {
    content: counter(fmn-rank);
    font-family: var(--fmn-display);
    font-weight: 800;
    font-size: 2rem;
    line-height: 1;
    color: var(--fmn-red);
}

.fmn-follow {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fmn-follow a {
    display: block;
    border-radius: var(--fmn-radius);
    overflow: hidden;
    aspect-ratio: 16 / 7;
}

.fmn-top10 ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

.fmn-top10 li {
    display: grid;
    grid-template-columns: 32px 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--fmn-line);
}

.fmn-top10 li:last-child {
    border-bottom: 0;
}

.fmn-top10-pos {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--fmn-blue);
    color: #fff;
    display: grid;
    place-items: center;
    font-family: var(--fmn-display);
    font-weight: 800;
}

.fmn-top10 li:first-child .fmn-top10-pos {
    background: var(--fmn-yellow);
    color: var(--fmn-ink);
}

.fmn-top10 div {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.fmn-top10 strong {
    font-size: 0.92rem;
}

.fmn-top10 small {
    color: var(--fmn-muted);
    font-size: 0.8rem;
}

.fmn-top10 a {
    color: var(--fmn-red);
    font-size: 1.3rem;
}

.fmn-ad {
    text-align: center;
}

.fmn-ad img {
    border-radius: 8px;
    height: auto !important;
}

.fmn-ad small {
    color: var(--fmn-muted);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* editorias */
.fmn-sections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 24px;
    margin-top: 36px;
}

.fmn-desk {
    background: var(--fmn-white);
    border-radius: var(--fmn-radius);
    padding: 16px 18px;
}

.fmn-desk-lead {
    display: block;
}

.fmn-desk-lead .fmn-card-media {
    border-radius: 8px;
}

.fmn-desk-lead h3 {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 8px;
}

.fmn-desk ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.fmn-desk li {
    border-top: 1px solid var(--fmn-line);
    padding: 8px 0;
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.3;
}

/* áudios */
.fmn-podcasts {
    margin-top: 36px;
}

.fmn-podcast-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 14px;
}

.fmn-podcast {
    background: var(--fmn-white);
    border-radius: var(--fmn-radius);
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fmn-podcast strong {
    font-size: 0.95rem;
}

.fmn-podcast audio {
    width: 100%;
    height: 36px;
}

/* ---------- página da notícia ---------- */
.fmn-post-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 8px 0 18px;
    text-wrap: balance;
}

.fmn-photo-credit {
    display: block;
    color: var(--fmn-muted);
    font-size: 0.78rem;
    margin-top: 6px;
}

/* ---------- contato ---------- */
.fmn-contact {
    padding: 28px 0 40px;
}

.fmn-contact h1 {
    font-family: var(--fmn-display);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.8rem;
    margin: 0;
    padding: 0 12px 2px 0;
    position: relative;
}

.fmn-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 14px;
    margin-top: 8px;
}

.fmn-contact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--fmn-white);
    border-radius: var(--fmn-radius);
    padding: 18px;
    border: 1px solid var(--fmn-line);
    transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.fmn-contact-card:hover {
    border-color: #c9d4f6;
    box-shadow: 0 8px 20px rgba(16, 24, 40, 0.08);
}

.fmn-contact-card i {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    background: var(--fmn-blue-soft);
    color: var(--fmn-blue);
}

.fmn-contact-card span {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow-wrap: anywhere;
    color: var(--fmn-muted);
    font-size: 0.92rem;
}

.fmn-contact-card strong {
    color: var(--fmn-ink);
    font-size: 1rem;
}

.fmn-contact-card--whats i {
    background: #1faa53;
    color: #fff;
}

/* ---------- rodapé ---------- */
.fmn-footer {
    background: var(--fmn-blue-deep);
    color: #c9d3f5;
    margin-top: 40px;
    font-size: 0.92rem;
}

.fmn-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 32px;
    padding-top: 40px;
    padding-bottom: 32px;
}

.fmn-footer h2 {
    font-family: var(--fmn-display);
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.fmn-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.fmn-footer li {
    padding: 4px 0;
}

.fmn-footer a:hover {
    color: var(--fmn-yellow);
}

.fmn-brand-footer img {
    width: 64px;
    height: 64px;
}

.fmn-brand-footer .fmn-brand-text strong {
    font-size: 1.9rem;
}

.fmn-footer-about p {
    margin: 14px 0;
}

.fmn-footer-social {
    display: flex;
    gap: 10px;
}

.fmn-footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.1rem;
}

.fmn-footer-social a:hover {
    background: var(--fmn-red);
    color: #fff;
}

.fmn-footer-contact li {
    display: flex;
    gap: 8px;
}

.fmn-footer-contact i {
    color: var(--fmn-yellow);
}

.fmn-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
}

.fmn-footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 48px;
}

.fmn-footer .r98-cookie-preferences {
    background: none;
    border: 0;
    color: #c9d3f5;
    text-decoration: underline;
    padding: 0;
}

/* ---------- player fixo ---------- */
.fmn-player {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1040;
    background: var(--fmn-ink);
    color: #fff;
    border-top: 3px solid var(--fmn-red);
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.25);
}

.fmn-player-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 70px;
}

.fmn-player-toggle {
    width: 48px;
    height: 48px;
    font-size: 1.6rem;
}

.fmn-player-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    min-width: 0;
}

.fmn-player-text strong {
    font-size: 1rem;
}

.fmn-player-text small {
    color: #aab3c5;
    font-size: 0.8rem;
}

.fmn-player-eq {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 22px;
    margin-left: 8px;
    opacity: 0.25;
}

.fmn-player-eq span {
    width: 4px;
    height: 30%;
    background: var(--fmn-yellow);
    border-radius: 2px;
}

.fmn-is-playing .fmn-player-eq {
    opacity: 1;
}

.fmn-is-playing .fmn-player-eq span {
    animation: fmn-eq 0.9s ease-in-out infinite alternate;
}

.fmn-player-eq span:nth-child(2) { animation-delay: 0.2s !important; }
.fmn-player-eq span:nth-child(3) { animation-delay: 0.45s !important; }
.fmn-player-eq span:nth-child(4) { animation-delay: 0.1s !important; }

@keyframes fmn-eq {
    from { height: 20%; }
    to { height: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    .fmn-is-playing .fmn-player-eq span { animation: none; height: 70%; }
}

.fmn-player-volume {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #aab3c5;
}

.fmn-player-volume input {
    accent-color: var(--fmn-red);
    width: 110px;
}

/* ---------- responsivo ---------- */
@media (max-width: 1100px) {
    .fmn-columns {
        grid-template-columns: minmax(0, 1fr) 300px;
    }

    .fmn-sections-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fmn-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 991px) {
    .fmn-menu {
        padding-bottom: 10px;
    }

    .fmn-menu .navbar-nav .nav-link {
        padding: 10px 4px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .fmn-menu .dropdown-menu {
        background: var(--fmn-red-dark);
        box-shadow: none;
        border-top: 0;
    }

    .fmn-menu .dropdown-menu .nav-link {
        color: #fff;
    }

    .fmn-columns {
        grid-template-columns: 1fr;
    }

    .fmn-rail {
        position: static;
    }

    .fmn-headlines {
        grid-template-columns: 1fr;
    }

    .fmn-lead {
        min-height: 380px;
    }

    .fmn-lead-side {
        grid-template-rows: none;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .fmn-topbar-date,
    .fmn-topbar-city {
        display: none;
    }

    .fmn-topbar-links {
        width: 100%;
        justify-content: flex-end;
        gap: 18px;
    }

    .fmn-header-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .fmn-brand img {
        width: 64px;
        height: 64px;
    }

    .fmn-brand-text strong {
        font-size: 2rem;
    }

    .fmn-onair {
        max-width: none;
    }

    .fmn-lead {
        min-height: 320px;
    }

    .fmn-lead-body {
        padding: 18px;
    }

    .fmn-lead-body p {
        display: none;
    }

    .fmn-lead-side,
    .fmn-lead-row,
    .fmn-sections-grid {
        grid-template-columns: 1fr;
    }

    .fmn-overlay-card {
        min-height: 200px;
    }

    .fmn-list-item a {
        grid-template-columns: 112px 1fr;
        gap: 12px;
    }

    .fmn-list-item h3 {
        font-size: 1rem;
    }

    .fmn-list-item p {
        display: none;
    }

    .fmn-schedule {
        padding: 16px;
        margin-left: -4px;
        margin-right: -4px;
    }

    .fmn-schedule-head h2 {
        font-size: 1.3rem;
    }

    .fmn-footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .fmn-player-eq,
    .fmn-player-volume {
        display: none;
    }
}
