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

.internal-hero {
    padding: 34px 0 20px;
}

.content-panel,
.news-detail,
.comments-panel,
.team-role {
    background: #fff;
    border: 1px solid rgba(14, 42, 23, .08);
    border-radius: 8px;
    box-shadow: 0 16px 45px rgba(12, 47, 24, .08);
    padding: 24px;
}

.topic-detail {
    margin-bottom: 22px;
}

.comments-panel--full {
    position: static;
}

.news-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    align-items: start;
}

.news-detail h1,
.content-panel h1 {
    color: #15331f;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1;
    margin: 16px 0 12px;
}

.news-detail__image {
    min-height: 280px;
    margin-bottom: 18px;
}

.news-detail__excerpt {
    color: #56645c;
    font-size: 18px;
    line-height: 1.45;
}

.tinymce-content {
    color: #26352b;
    font-size: 16px;
    line-height: 1.7;
    overflow-wrap: anywhere;
}

.tinymce-content img,
.comment-item img {
    max-width: 100%;
    height: auto;
}

.tinymce-content a {
    color: #15803d;
    font-weight: 800;
}

.comments-panel {
    position: sticky;
    top: 104px;
}

.bbcode-form {
    display: grid;
    gap: 12px;
    margin-top: 14px;
}

.bbcode-toolbar {
    display: flex;
    gap: 8px;
}

.bbcode-toolbar button {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 8px;
    background: #edf8ef;
    color: #166534;
    cursor: pointer;
}

.bbcode-form textarea {
    width: 100%;
    resize: vertical;
    border: 1px solid #d9e5dc;
    border-radius: 8px;
    padding: 12px;
    font: inherit;
}

.bbcode-form .tox,
.request-form .tox {
    border-radius: 8px;
    overflow: visible;
}

.comment-list {
    display: grid;
    gap: 14px;
    margin-top: 20px;
}

.comment-item {
    border-top: 1px solid #edf2ee;
    padding-top: 14px;
}

.comment-item__body {
    color: #334238;
    line-height: 1.55;
    margin: 10px 0;
}

.comment-item blockquote {
    border-left: 3px solid #22c55e;
    margin: 8px 0;
    padding: 8px 12px;
    background: #f4fbf6;
}

.team-roles {
    display: grid;
    gap: 24px;
}

.team-role h3 {
    color: #15331f;
    font-size: 24px;
    margin: 0 0 18px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 16px;
}

.team-member {
    display: grid;
    justify-items: center;
    gap: 8px;
    min-height: 210px;
    border: 1px solid #edf2ee;
    border-radius: 8px;
    background: #f8fcf9;
    padding: 16px;
    text-align: center;
}

.team-member img {
    width: 82px;
    height: 120px;
    object-fit: contain;
}

.team-member strong {
    color: #15331f;
}

.team-member span {
    color: #627168;
    font-size: 14px;
}

@media (max-width: 900px) {
    .news-detail-layout {
        grid-template-columns: 1fr;
    }

    .comments-panel {
        position: static;
    }
}

:root {
    --green-900: #0b4b21;
    --green-800: #116c2d;
    --green-700: #168b38;
    --green-600: #1aa845;
    --green-100: #dcf8e4;
    --yellow: #ffc51b;
    --ink: #423538;
    --muted: #74777f;
    --surface: #ffffff;
    --surface-soft: #f4f7f5;
    --line: #e4e4e4;
    --dark: #242429;
    --menu-top: #303038;
    --menu-bottom: #1d1d22;
    --container: 1180px;
    --box-shadow: inset 0 -3px #e4f2fb;
    --drop-shadow: drop-shadow(0 2px 0 rgba(0, 0, 0, .1));
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body {
    min-width: 320px;
    padding-bottom: 0;
    background: var(--surface-soft);
    color: var(--ink);
    font-family: "Source Sans 3", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

body.modal-open {
    overflow: hidden;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    border: 0;
    color: inherit;
    cursor: pointer;
}

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

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.topbar {
    /* bloco do topo por cima da imagem principal */
    position: absolute;
    inset: 0 0 auto;
    z-index: 100;
    color: #fff;
    padding-top: 16px;
}

.topbar__inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 1rem;
    background:
        linear-gradient(135deg, rgba(48, 48, 56, .98) 0%, rgba(29, 29, 34, .98) 58%, rgba(18, 20, 22, .98) 100%);
    box-shadow: 0 22px 50px rgba(0, 0, 0, .22), inset 0 -3px rgba(0, 0, 0, .2);
    backdrop-filter: blur(14px);
}

.brand {
    min-width: max-content;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand__logo,
.brand img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .16));
}

.brand span {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand strong {
    color: #fff;
    font-size: 21px;
    font-weight: 900;
}

.brand small {
    margin-top: 4px;
    color: rgba(255, 255, 255, .75);
    font-size: 12px;
    font-weight: 700;
}

.main-nav {
    /* menu central com icones */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 1 1 auto;
}

.nav-item {
    position: relative;
}

.main-nav > .nav-item > a {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: .75rem;
    color: rgba(255, 255, 255, .82);
    background: linear-gradient(145deg, #24242a, #1d1d22);
    box-shadow: inset 0 -3px rgba(0, 0, 0, .14);
    font-size: 16px;
    font-weight: 800;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

.main-nav > .nav-item > a:hover {
    color: #fff;
    background: #303038;
    transform: translateY(-2px);
}

.nav-title {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    z-index: 3;
    padding: 7px 10px;
    border-radius: .65rem;
    color: #fff;
    background: linear-gradient(145deg, #303038, #1d1d22);
    box-shadow: 0 12px 24px rgba(0, 0, 0, .2);
    font-size: 12px;
    font-weight: 900;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -4px);
    transition: opacity .18s ease, transform .18s ease;
    white-space: nowrap;
}

.submenu {
    position: absolute;
    top: calc(100% + 42px);
    left: 50%;
    min-width: 160px;
    display: grid;
    gap: 4px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: .75rem;
    background: linear-gradient(145deg, #303038, #1d1d22);
    box-shadow: 0 18px 35px rgba(0, 0, 0, .2), inset 0 -3px rgba(0, 0, 0, .12);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -4px);
    transition: opacity .18s ease, transform .18s ease;
}

.submenu::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 48px;
}

.submenu span,
.submenu a {
    width: 100%;
    height: auto;
    display: block;
    padding: 8px 10px;
    border: 0;
    border-radius: .55rem;
    color: rgba(255, 255, 255, .78);
    background: transparent;
    box-shadow: none;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transform: none;
}

.submenu span:hover,
.submenu a:hover {
    background: var(--menu-top);
    color: #fff;
    transform: none;
}

.nav-item:hover .submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.nav-item:hover .nav-title {
    opacity: 1;
    transform: translate(-50%, 0);
}

.header-player {
    flex: 1 1 650px;
    min-width: 560px;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) 44px 78px 148px 44px 44px;
    align-items: center;
    gap: 14px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: .95rem;
    background: linear-gradient(145deg, #25252b, #1d1d22);
    box-shadow: inset 0 -3px rgba(0, 0, 0, .16);
}

.header-player__avatar {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: end center;
    overflow: hidden;
    border-radius: .75rem;
    background: rgba(255, 255, 255, .1);
}

.header-player__avatar img {
    max-height: 70px;
    width: auto;
}

.header-player__info {
    min-width: 0;
}

.header-player__info small,
.header-player__info span {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.header-player__info small {
    color: #6be489;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
}

.header-player__info strong {
    display: block;
    overflow: hidden;
    margin-top: 1px;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.header-player__info span {
    color: rgba(255, 255, 255, .58);
    font-size: 11px;
    font-weight: 700;
}

.header-player__play,
.header-player__presence {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: .75rem;
    color: var(--green-700);
    background: #fff;
    box-shadow: var(--box-shadow);
    filter: var(--drop-shadow);
}

.header-player__listeners {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    column-gap: 6px;
    color: #fff;
}

.header-player__listeners i {
    grid-row: 1 / 3;
    color: #6be489;
    font-size: 13px;
}

.header-player__listeners b {
    line-height: 1;
    font-size: 15px;
    font-weight: 900;
}

.header-player__listeners small {
    color: rgba(255, 255, 255, .45);
    font-size: 10px;
    font-weight: 800;
}

.volume-control--header {
    min-width: 0;
}

.volume-control--header input {
    width: 94px;
}

.header-player__request {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    padding: 0;
    border-radius: .75rem;
    color: #fff;
    background: var(--green-700);
    box-shadow: inset 0 -3px rgba(0, 0, 0, .16);
    font-size: 14px;
}

.header-player__request span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.auth-area {
    flex: 0 0 auto;
    min-width: 116px;
    display: flex;
    justify-content: flex-end;
}

.login-button {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: .75rem;
    color: #fff;
    background: linear-gradient(145deg, var(--green-600), var(--green-800));
    box-shadow: inset 0 -3px rgba(0, 0, 0, .18), 0 12px 24px rgba(22, 139, 56, .22);
    font-weight: 900;
    font-size: 16px;
}

.login-button:hover,
.user-menu button:hover {
    background: var(--menu-top);
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: .9rem;
    background: var(--menu-bottom);
    box-shadow: inset 0 -3px rgba(0, 0, 0, .14);
}

.user-menu img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
}

.user-menu strong {
    max-width: 90px;
    overflow: hidden;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.user-menu button {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: .65rem;
    color: #fff;
    background: var(--menu-top);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: .75rem;
    background: rgba(255, 255, 255, .14);
    box-shadow: inset 0 -3px rgba(0, 0, 0, .16);
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    border-radius: 3px;
    background: #fff;
}

.hero-logo {
    /* imagem principal do topo */
    position: relative;
    height: 400px;
    min-height: 400px;
    display: grid;
    place-items: center;
    padding: 120px 0 32px;
    background: url("https://i.imgur.com/CaU5mHf.png") center center / cover no-repeat;
    overflow: hidden;
}

.hero-logo::before {
    display: none;
}

.hero-logo__inner {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    gap: 18px;
}

.hero-logo__inner > img {
    width: min(260px, 52vw);
    filter:
        drop-shadow(0 16px 28px rgba(0, 0, 0, .55))
        drop-shadow(0 36px 72px rgba(0, 0, 0, .75));
}

.hero-play {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 20px;
    border: 1px solid var(--line);
    border-radius: .75rem;
    color: var(--green-900);
    background: #fff;
    box-shadow: var(--box-shadow);
    filter: var(--drop-shadow);
    font-weight: 900;
}

.section {
    padding: 78px 0;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.section-heading--light {
    margin-bottom: 22px;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green-700);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-heading h2 {
    margin-top: 5px;
    color: var(--ink);
    font-size: clamp(31px, 4vw, 44px);
    line-height: 1.08;
    font-weight: 900;
}

.reload-link,
.badge-pager button,
.news-pager button {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: .75rem;
    background: #fff;
    box-shadow: var(--box-shadow);
    filter: var(--drop-shadow);
    color: var(--green-700);
    transition: border-color .18s ease, color .18s ease, transform .18s ease;
}

.reload-link:hover,
.badge-pager button:hover,
.news-pager button:hover {
    transform: translateY(-2px);
    border-color: var(--green-700);
    color: var(--green-800);
}

.reload-link.is-loading i,
.badge-pager button.is-loading i {
    animation: spin .8s linear infinite;
}

.news-pager,
.badge-pager {
    display: flex;
    gap: 8px;
}

.emblems-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.emblem-card {
    min-width: 0;
    min-height: 138px;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    padding: 18px;
    position: relative;
    border: 1px solid var(--line);
    border-radius: .75rem;
    background-color: #fff;
    box-shadow: var(--box-shadow);
    filter: var(--drop-shadow);
    color: var(--ink);
    transition: border-color .18s ease, transform .18s ease;
}

.emblem-card:hover {
    transform: translateY(-3px);
    border-color: var(--green-700);
}

.emblem-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: .75rem;
    background: #f5f7f5;
}

.emblem-icon img {
    max-width: 40px;
    max-height: 40px;
    image-rendering: pixelated;
}

.emblem-card__copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.emblem-card__copy strong,
.emblem-card__copy span,
.emblem-card__copy small {
    overflow: hidden;
    text-overflow: ellipsis;
}

.emblem-card__copy strong {
    color: var(--ink);
    font-size: 16px;
    line-height: 1.15;
    font-weight: 900;
}

.emblem-card__copy span {
    display: -webkit-box;
    margin-top: 6px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.28;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.emblem-card__copy small {
    margin-top: 8px;
    color: var(--green-700);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .4px;
}

.section--news {
    background: #fff;
}

.news-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
    gap: 20px;
    align-items: stretch;
}

.news-featured,
.news-row,
.schedule-item {
    border: 1px solid var(--line);
    border-radius: .75rem;
    background: #fff;
    box-shadow: var(--box-shadow);
    filter: var(--drop-shadow);
    transition: border-color .18s ease, transform .18s ease;
}

.news-featured:hover,
.news-row:hover,
.schedule-item:hover {
    border-color: var(--green-700);
}

.news-featured {
    position: relative;
    overflow: hidden;
}

.news-visual {
    position: relative;
    height: 286px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: linear-gradient(145deg, #35cc62, #0b7a2d);
}

.news-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-visual__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 1;
    padding: 7px 12px;
    border-radius: .75rem;
    color: #fff;
    background: rgba(36, 36, 41, .78);
    box-shadow: inset 0 -2px rgba(0, 0, 0, .18);
    font-size: 12px;
    font-weight: 900;
}

.news-featured__body {
    padding: 24px;
}

.news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--green-700);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.news-featured h3 {
    margin-top: 10px;
    color: var(--ink);
    font-size: clamp(24px, 3vw, 31px);
    line-height: 1.08;
    font-weight: 900;
}

.news-featured p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 16px;
}

.news-author {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
}

.news-author small {
    margin-left: 6px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.news-author img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 50%;
    background: var(--green-100);
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.news-row {
    position: relative;
    min-height: 140px;
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 13px;
}

.news-row:hover {
    transform: translateX(3px);
}

.read-more {
    position: absolute;
    right: 18px;
    bottom: 18px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border-radius: .75rem;
    color: #fff;
    background: var(--green-700);
    box-shadow: inset 0 -3px rgba(0, 0, 0, .16), 0 12px 24px rgba(22, 139, 56, .22);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity .18s ease, transform .18s ease;
}

.news-featured:hover .read-more,
.news-row:hover .read-more {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.news-row__thumb {
    align-self: stretch;
    overflow: hidden;
    border-radius: .65rem;
    background: var(--green-100);
}

.news-row__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-row__body {
    min-width: 0;
}

.news-row h3 {
    margin-top: 6px;
    color: var(--ink);
    font-size: 18px;
    line-height: 1.12;
    font-weight: 900;
}

.news-row p {
    display: -webkit-box;
    margin-top: 6px;
    overflow: hidden;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-row .news-author {
    margin-top: 9px;
}

.news-row .news-author img {
    width: 28px;
    height: 28px;
}

.section--radio {
    color: #fff;
    background:
        radial-gradient(circle at 12% 100%, rgba(255, 216, 74, .13), transparent 25%),
        linear-gradient(145deg, #242429, #313139);
}

.section--topics {
    color: #fff;
    background:
        radial-gradient(circle at 12% 100%, rgba(255, 216, 74, .13), transparent 25%),
        linear-gradient(145deg, #242429, #313139);
}
.section--topics .section-heading h2 {
    color: #fff;
}
.section--topics .section-kicker {
    color: #6be489;
}
.topics-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.topic-card {
    min-width: 0;
    min-height: 126px;
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr) 84px;
    align-items: center;
    gap: 16px;
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .24), inset 0 -3px #e4f2fb;
    color: var(--ink);
    text-decoration: none;
    transition: border-color .18s ease, transform .18s ease;
}

[data-tooltip] {
    position: relative;
}

[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    z-index: 20;
    left: 50%;
    bottom: calc(100% + 8px);
    max-width: 220px;
    padding: 7px 10px;
    border-radius: 8px;
    color: #fff;
    background: rgba(36, 36, 41, .96);
    box-shadow: 0 10px 22px rgba(0, 0, 0, .24);
    font-size: 12px;
    font-weight: 900;
    line-height: 1.2;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 5px);
    transition: opacity .16s ease, transform .16s ease;
}

[data-tooltip]:hover::before {
    opacity: 1;
    transform: translate(-50%, 0);
}

.topic-card:hover {
    transform: translateY(-3px);
    border-color: rgba(107, 228, 137, .75);
}

.topic-card__avatar-wrap {
    width: 76px;
    height: 104px;
    display: grid;
    place-items: center;
    margin-left: 12px;
}

.topic-card__avatar {
    width: 76px;
    height: 104px;
    object-fit: contain;
    border-radius: 8px;
    background: #f5f7f5;
}

.topic-card__body {
    min-width: 0;
}

.topic-card__body strong {
    display: -webkit-box;
    overflow: hidden;
    color: var(--ink);
    font-size: 18px;
    line-height: 1.12;
    font-weight: 900;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.topic-card__body span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 16px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.topic-card__stats {
    height: 100%;
    display: grid;
    align-content: center;
    gap: 12px;
    border-left: 1px solid var(--line);
    color: #aaaeb4;
    font-size: 15px;
    font-weight: 900;
}

.topic-card__stats span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.section--radio .section-kicker {
    color: #6be489;
}

.section--radio .section-heading h2 {
    color: #fff;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.schedule-item {
    min-height: 108px;
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-template-areas:
        "avatar time"
        "avatar copy";
    align-items: center;
    gap: 5px 12px;
    padding: 15px;
    background: rgba(255, 255, 255, .07);
    border-color: rgba(255, 255, 255, .12);
    box-shadow: inset 0 -3px rgba(0, 0, 0, .12);
    filter: none;
}

.schedule-item:hover {
    border-color: #6be489;
    transform: translateY(-3px);
}

.schedule-item img {
    grid-area: avatar;
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
}

.schedule-item time {
    grid-area: time;
    color: #6ee28a;
    font-size: 12px;
    font-weight: 900;
}

.schedule-item div {
    grid-area: copy;
    min-width: 0;
}

.schedule-item strong,
.schedule-item span {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.schedule-item strong {
    color: #fff;
    font-size: 15px;
    font-weight: 900;
}

.schedule-item span {
    color: rgba(255, 255, 255, .58);
    font-size: 13px;
    font-weight: 700;
}

.footer {
    color: rgba(255, 255, 255, .72);
    background: #1d1d22;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr .7fr .7fr;
    gap: 56px;
    padding-top: 54px;
    padding-bottom: 42px;
}

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

.footer__brand p {
    max-width: 360px;
    margin-top: 14px;
    font-size: 11px;
    color: rgba(255, 255, 255, .55);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer__links strong {
    margin-bottom: 4px;
    color: #fff;
    font-size: 15px;
}

.footer__links a {
    width: max-content;
    color: rgba(255, 255, 255, .62);
    font-size: 14px;
    font-weight: 700;
    transition: color .18s ease;
}

.footer__links a:hover {
    color: #65df82;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: .75rem;
    color: rgba(255, 255, 255, .78);
    background: #303038;
    box-shadow: inset 0 -3px rgba(0, 0, 0, .16);
    font-size: 16px;
}

.footer-social a:hover {
    color: #fff;
    background: #168b38;
}

.footer__bottom {
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, .07);
    color: rgba(255, 255, 255, .42);
    font-size: 12px;
}

.footer__bottom span {
    color: #fff;
    font-weight: 900;
}

.floating-player {
    /* player flutuante que aparece depois da rolagem */
    position: fixed;
    z-index: 90;
    right: 24px;
    bottom: 20px;
    left: 24px;
    width: min(calc(100% - 48px), 920px);
    min-height: 78px;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) 100px 190px;
    align-items: center;
    gap: 14px;
    margin-inline: auto;
    padding: 11px 13px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: .9rem;
    color: #fff;
    background: rgba(36, 36, 41, .96);
    box-shadow: 0 20px 54px rgba(0, 0, 0, .32), inset 0 -3px rgba(0, 0, 0, .2);
    backdrop-filter: blur(12px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity .22s ease, transform .22s ease;
}

.floating-player.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.floating-player.is-parked {
    position: absolute;
    top: auto;
}

.floating-player__play {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: .75rem;
    background: #fff;
    box-shadow: var(--box-shadow);
    filter: var(--drop-shadow);
    color: var(--green-700);
    font-size: 18px;
}

.floating-player__play:hover {
    border-color: var(--green-700);
}

.floating-player__identity {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.floating-player__identity > img {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
}

.floating-player__identity div {
    min-width: 0;
}

.floating-player__identity small {
    display: block;
    color: #6be489;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
}

.floating-player__identity strong,
.floating-player__identity span {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.floating-player__identity strong {
    margin-top: 1px;
    font-size: 15px;
    font-weight: 900;
}

.floating-player__identity span {
    color: rgba(255, 255, 255, .58);
    font-size: 12px;
    font-weight: 700;
}

.floating-player__listeners {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    column-gap: 6px;
}

.floating-player__listeners i {
    grid-row: 1 / 3;
    color: #6be489;
    font-size: 13px;
}

.floating-player__listeners b {
    line-height: 1;
    font-size: 15px;
}

.floating-player__listeners small {
    color: rgba(255, 255, 255, .45);
    font-size: 10px;
}

.volume-control {
    --volume-fill: 55%;
    --volume-alpha: .72;
    display: flex;
    align-items: center;
    gap: 8px;
}

.volume-control button {
    width: 36px;
    height: 36px;
    border-radius: .65rem;
    color: #fff;
    background: rgb(32 32 37);
}

.volume-control input {
    width: 140px;
    height: 22px;
    margin: 0;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background: transparent;
}

.volume-control input::-webkit-slider-runnable-track {
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(107, 228, 137, var(--volume-alpha)) 0 var(--volume-fill), rgba(255, 255, 255, .2) var(--volume-fill) 100%);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, .28);
}

.volume-control input::-moz-range-track {
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(107, 228, 137, var(--volume-alpha)) 0 var(--volume-fill), rgba(255, 255, 255, .2) var(--volume-fill) 100%);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, .28);
}

.volume-control input::-webkit-slider-thumb {
    width: 18px;
    height: 18px;
    margin-top: -5px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .24);
    -webkit-appearance: none;
}

.volume-control input::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .24);
}

.volume-control input:focus-visible {
    outline: 2px solid rgba(107, 228, 137, .65);
    outline-offset: 3px;
}

.toast {
    position: fixed;
    z-index: 220;
    top: 18px;
    left: 50%;
    max-width: min(440px, calc(100% - 32px));
    padding: 11px 15px;
    border-radius: .75rem;
    color: #fff;
    background: var(--dark);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .24);
    font-size: 14px;
    font-weight: 800;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -12px);
    transition: .2s ease;
}

.toast.show {
    opacity: 1;
    transform: translate(-50%, 0);
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 140;
    display: none;
    place-items: center;
    padding: 20px;
}

.modal.is-open {
    display: grid;
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 24, .72);
    backdrop-filter: blur(5px);
}

.modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 430px);
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .32), inset 0 -3px #e4f2fb;
}

.modal__dialog--wide {
    width: min(100%, 760px);
}

.modal__dialog h2 {
    margin-top: 8px;
    color: var(--ink);
    font-size: 28px;
    line-height: 1.1;
}

.modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: .7rem;
    color: var(--green-700);
    background: var(--green-100);
}

.request-form {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.auth-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 18px;
}

.auth-tabs button {
    min-height: 42px;
    border: 1px solid var(--line);
    border-radius: .75rem;
    color: var(--green-700);
    background: #fff;
    box-shadow: var(--box-shadow);
    font-weight: 900;
}

.auth-tabs button.is-active {
    color: #fff;
    background: var(--green-700);
    box-shadow: inset 0 -3px rgba(0, 0, 0, .16);
}

.auth-form {
    display: none;
    gap: 12px;
    margin-top: 18px;
}

.auth-form.is-active {
    display: grid;
}

.request-form label,
.auth-form label {
    display: grid;
    gap: 6px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 900;
}

.request-form input,
.request-form textarea,
.request-form select,
.auth-form input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: .75rem;
    padding: 11px 12px;
    color: var(--ink);
    background: #fff;
    outline: 0;
}

.request-form input:focus,
.request-form textarea:focus,
.request-form select:focus,
.auth-form input:focus {
    border-color: var(--green-700);
}

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

@media (max-width: 1040px) {
    .header-player {
        min-width: 250px;
        grid-template-columns: 44px minmax(0, 1fr) 40px;
    }

    .header-player__avatar {
        width: 44px;
        height: 44px;
    }

    .header-player__request,
    .header-player__presence {
        display: none;
    }

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

    .news-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    body {
        padding-bottom: 0;
    }

    .container {
        width: min(calc(100% - 26px), var(--container));
    }

    .menu-toggle {
        display: block;
    }

    .header-player {
        display: none;
    }

    .main-nav {
        position: absolute;
        top: 76px;
        right: 13px;
        left: 13px;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 4px;
        padding: 12px;
        border: 1px solid rgba(255, 255, 255, .14);
        border-radius: .9rem;
        background: rgba(11, 75, 33, .98);
        box-shadow: 0 22px 45px rgba(0, 0, 0, .24), inset 0 -3px rgba(0, 0, 0, .1);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav > .nav-item > a {
        width: auto;
        min-height: 42px;
        display: flex;
        align-items: center;
        padding: 0 12px;
        border: 0;
        border-radius: .6rem;
        background: transparent;
        box-shadow: none;
    }

    .submenu {
        position: static;
        min-width: 0;
        margin: 2px 0 6px 2px;
        padding: 6px;
        display: none;
        gap: 2px;
        border-color: rgba(255, 255, 255, .1);
        border-radius: .65rem;
        background: rgba(0, 0, 0, .16);
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        transition: none;
    }

    .submenu::before {
        display: none;
    }

    .nav-item.is-open .submenu {
        display: grid;
    }

    .submenu a {
        min-height: 36px;
        display: flex;
        align-items: center;
        padding: 8px 10px;
        font-size: 14px;
    }

    .nav-title {
        display: none;
    }

    .main-nav > .nav-item > a:hover {
        background: rgba(255, 255, 255, .08);
        transform: none;
    }

    .nav-item:hover .submenu {
        opacity: 1;
        transform: none;
    }

    .nav-item:not(.is-open):hover .submenu {
        display: none;
    }

    .brand small {
        display: none;
    }

    .section {
        padding: 56px 0;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .emblems-grid,
    .topics-grid,
    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .news-pager,
    .badge-pager {
        width: 100%;
    }

    .news-pager button,
    .badge-pager button {
        flex: 1;
    }

    .news-row {
        grid-template-columns: 88px minmax(0, 1fr);
    }

    .topic-card {
        grid-template-columns: 76px minmax(0, 1fr) 70px;
        gap: 12px;
    }

    .topic-card__avatar-wrap,
    .topic-card__avatar {
        width: 64px;
        height: 92px;
    }

    .topic-card__avatar-wrap {
        margin-left: 10px;
    }

    .topic-card__body strong {
        font-size: 16px;
    }

    .topic-card__stats {
        font-size: 13px;
    }

    .news-row p {
        display: none;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 18px 0;
        gap: 4px;
    }

    .floating-player {
        right: 10px;
        bottom: 10px;
        left: 10px;
        width: calc(100% - 20px);
        grid-template-columns: 46px minmax(0, 1fr) 66px 86px;
        gap: 8px;
        min-height: 72px;
        padding: 10px;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .floating-player__play {
        width: 46px;
        height: 46px;
    }

    .floating-player__identity > img {
        display: none;
    }

    .volume-control {
        display: flex;
        gap: 5px;
    }

    .volume-control button {
        width: 30px;
        height: 30px;
    }

    .volume-control input {
        width: 48px;
    }

    .floating-player__listeners {
        display: grid;
        grid-template-columns: auto auto;
        column-gap: 4px;
    }
}

@media (max-width: 480px) {
    body {
        padding-bottom: 86px;
    }

    .floating-player {
        grid-template-columns: 46px minmax(0, 1fr) 106px;
        min-height: 68px;
    }

    .floating-player__identity small {
        font-size: 9px;
    }

    .floating-player__identity strong {
        font-size: 13px;
    }

    .floating-player__identity span,
    .floating-player__listeners {
        display: none;
    }

    .volume-control {
        justify-content: flex-end;
    }

    .volume-control input {
        width: 64px;
    }
}
