:root {
    --blue: #064b8d;
    --blue-deep: #032f68;
    --blue-bright: #0092fa;
    --royal: #2b1fcc;
    --yellow: #fff500;
    --yellow-deep: #ffc400;
    --orange: #ff6633;
    --red: #f71929;
    --pink: #de0098;
    --purple: #6d1bc1;
    --ink: #08162b;
    --muted: #6b7487;
    --white: #ffffff;
    --paper: #f5f7fb;
    --content-width: 1100px;
    --shadow: 0 28px 78px rgba(2, 20, 49, .34);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding-bottom: 0;
    color: var(--ink);
    font-family: "Encode Sans", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    background: var(--paper);
}

::selection {
    color: var(--blue-deep);
    background: var(--yellow);
}

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

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 3px solid var(--blue-bright);
    outline-offset: 3px;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--yellow);
    box-shadow: 0 8px 24px rgba(3, 47, 104, .14);
}

.header-top {
    position: relative;
    display: grid;
    grid-template-columns: 184px minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 16px;
    width: min(var(--content-width), calc(100% - 48px));
    min-height: 78px;
    margin-inline: auto;
    padding: 12px 0;
}

.brand {
    position: absolute;
    left: 0;
    top: 3px;
    z-index: 3;
    width: 184px;
    transform-origin: top left;
    transition: transform .34s cubic-bezier(.22, 1, .36, 1), filter .34s ease;
    will-change: transform;
    filter: drop-shadow(0 12px 14px rgba(0, 35, 83, .22));
}

.site-header.is-scrolled .brand {
    transform: scale(.78);
    filter: drop-shadow(0 8px 10px rgba(0, 35, 83, .18));
}

.main-nav {
    grid-column: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-left: 0;
    color: var(--blue-deep);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
    text-transform: uppercase;
}

.header-store-links {
    position: relative;
    grid-column: 3;
    justify-self: end;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 5px;
}

.store-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 50%;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.header-store-links .store-icon,
.header-store-links .header-social-icon {
    position: relative;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    padding: 0;
    border-radius: 50%;
    color: var(--white);
    background: var(--blue-deep);
    line-height: 0;
    transition: background-color .2s ease, transform .2s ease;
}

.header-store-links .store-icon svg,
.header-store-links .header-social-icon svg {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 19px;
    height: 19px;
    margin: 0;
    transform: translate(-50%, -50%);
}

.header-store-links .store-icon:hover,
.header-store-links .header-social-icon:hover {
    background: #0648ae;
    transform: translateY(-2px);
}

.header-store-links .store-icon-alexa {
    color: #35d5ff;
}

.header-store-links .store-icon-alexa:hover {
    color: var(--white);
    background: #159bd7;
}

.store-icon:focus-visible,
.header-social-icon:focus-visible {
    outline: 3px solid var(--red);
    outline-offset: 3px;
}

.main-nav a {
    position: relative;
    padding-inline: 6px;
}

.main-nav a + a::before {
    content: "|";
    margin-right: 10px;
    color: var(--blue-deep);
}

.main-nav a:focus-visible,
.main-nav a:hover {
    color: var(--orange);
    outline: none;
}

.main-nav a.is-current {
    color: var(--orange);
}

.main-nav .main-nav-live {
    margin-left: 4px;
    padding: 8px 16px;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(135deg, #d94700, #ff9700);
    box-shadow: 0 6px 14px rgba(190, 61, 0, .25);
    transition: box-shadow .2s ease, filter .2s ease, transform .2s ease;
}

.main-nav .main-nav-live::before {
    content: none;
}

.main-nav .main-nav-live:hover,
.main-nav .main-nav-live:focus-visible,
.main-nav .main-nav-live.is-current {
    color: var(--white);
    background: linear-gradient(135deg, #bd3600, #ff8500);
    box-shadow: 0 9px 20px rgba(190, 61, 0, .34);
    filter: saturate(1.08);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 11px 9px;
    border: 0;
    border-radius: 50%;
    color: var(--blue-deep);
    background: transparent;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    margin: 4px 0;
    border-radius: 2px;
    background: currentColor;
    transition: transform .24s ease, opacity .18s ease;
}

.header-stripe {
    height: 4px;
    background: linear-gradient(90deg, var(--blue) 0 35%, var(--orange) 35% 72%, var(--purple) 72%);
}

.hero-showcase {
    --slide-height: clamp(440px, 36vw, 620px);
    position: relative;
    min-height: calc(var(--slide-height) + 108px);
    overflow: hidden;
    background-color: #0648ae;
    background-image:
        linear-gradient(rgba(4, 65, 170, .88), rgba(4, 65, 170, .88)),
        url("../png/pontos.png");
    background-repeat: no-repeat, repeat;
    background-position: center, left top;
    background-size: 100% 100%, auto;
}

.slide-art {
    position: relative;
    height: var(--slide-height);
    overflow: hidden;
    color: var(--white);
    background: #06112c;
    border-radius: 0 0 50% 50% / 0 0 15% 15%;
}

.slide-track,
.slide-panel,
.slide-picture,
.slide-picture img,
.slide-fallback {
    position: absolute;
    inset: 0;
}

.slide-panel {
    visibility: hidden;
    opacity: 0;
    transition: opacity .65s cubic-bezier(.22, 1, .36, 1), visibility .65s;
}

.slide-panel.is-active {
    visibility: visible;
    opacity: 1;
}

.slide-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--slide-position, center);
}

.slide-fallback {
    background:
        radial-gradient(circle at 72% 24%, rgba(255, 245, 0, .72), transparent 18%),
        radial-gradient(circle at 86% 72%, rgba(255, 102, 51, .76), transparent 25%),
        radial-gradient(circle at 14% 82%, rgba(0, 146, 250, .42), transparent 28%),
        linear-gradient(125deg, #030817 0%, #052e68 54%, #11133e 100%);
}

.slide-copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-top: 16px;
    padding-right: min(52%, 570px);
}

.slide-copy p,
.section-kicker {
    margin: 0 0 10px;
    color: var(--yellow);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
}

.slide-copy h1 {
    margin: 0 0 12px;
    max-width: 620px;
    font-size: clamp(38px, 3.8vw, 52px);
    font-weight: 600;
    line-height: 1.06;
    text-transform: uppercase;
    text-shadow: 0 20px 36px rgba(0, 0, 0, .42);
}

.slide-copy span {
    display: block;
    max-width: 480px;
    color: rgba(255, 255, 255, .9);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}

.slide-link {
    align-self: flex-start;
    margin-top: 22px;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--yellow);
    color: var(--yellow);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.slide-control {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: grid;
    place-items: center;
    width: 48px;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 50%;
    color: var(--blue-deep);
    background: rgba(255, 255, 255, .82);
    transform: translateY(-50%);
    transition: transform .18s ease, background .18s ease;
}

.slide-control.previous {
    left: max(24px, calc((100vw - var(--content-width)) / 2 - 160px));
}

.slide-control.next {
    right: max(24px, calc((100vw - var(--content-width)) / 2 - 160px));
}

.slide-control svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.slide-control:hover,
.slide-control:focus-visible {
    background: #fff;
    transform: translateY(-50%) scale(1.04);
}

.blue-stage {
    position: absolute;
    inset: auto 0 0;
    height: 0;
    background: var(--blue);
}

.hero-player {
    position: absolute;
    left: 50%;
    top: calc(var(--slide-height) - 35px);
    z-index: 8;
    display: grid;
    grid-template-columns: minmax(205px, 1fr) 116px 148px 82px 112px;
    align-items: center;
    gap: 14px;
    width: min(960px, calc(100% - 28px));
    min-height: 84px;
    padding: 0 22px 0 104px;
    border-radius: 999px;
    color: var(--blue-deep);
    background: #f8f9fb;
    box-shadow: 0 18px 48px rgba(0, 18, 48, .24);
    transform: translateX(-50%);
}

.hero-player-wave {
    --wave-color-primary: #ff275f;
    --wave-color-secondary: #9b51e0;
    --wave-color-depth: #fff500;
    position: absolute;
    left: 50%;
    top: calc(var(--slide-height) - 106px);
    z-index: 7;
    width: min(910px, calc(100% - 48px));
    height: 52px;
    pointer-events: none;
    opacity: 0;
    transform: translateX(-50%);
    transition: opacity .48s ease;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 4%, #000 96%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 4%, #000 96%, transparent 100%);
}

.hero-player.is-playing + .hero-player-wave {
    opacity: 1;
}

.speaker-thumb {
    position: absolute;
    left: 13px;
    top: 50%;
    display: grid;
    place-items: center;
    width: 68px;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--yellow), var(--yellow-deep));
    box-shadow: 0 14px 28px rgba(0, 36, 83, .2);
    transform: translateY(-50%);
}

.speaker-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.speaker-thumb img.is-station-logo {
    padding: 12%;
    object-fit: contain;
    object-position: center;
    background: linear-gradient(145deg, #0c3d94, #061741);
}

.program-copy {
    grid-column: 1;
    align-self: center;
    min-width: 0;
    padding-right: 26px;
    transform: translateY(3px);
}

.program-copy strong,
.live-copy strong,
.mini-player strong {
    display: block;
    color: var(--blue);
    font-size: clamp(18px, 1.1vw, 22px);
    font-weight: 600;
    line-height: 1.08;
    text-transform: uppercase;
}

.program-copy span,
.live-copy span,
.mini-player span {
    display: block;
    color: var(--ink);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.1;
    text-transform: uppercase;
}

.program-copy .program-status {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
    color: var(--red);
    font-size: 9px;
    font-weight: 600;
    line-height: 1;
}

.program-status i {
    display: block;
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    border-radius: 50%;
    background: currentColor;
}

.program-copy > [data-current-program] {
    font-size: 16px;
    line-height: 1.05;
}

.program-copy > [data-current-host] {
    margin-top: 2px;
    overflow: hidden;
    font-size: 10px;
    line-height: 1.1;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hero-program-progress {
    margin-top: 9px;
    font-variant-numeric: tabular-nums;
}

.hero-program-progress-times,
.hero-program-progress-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: rgba(7, 32, 72, .7);
    font-size: 8px;
    font-weight: 600;
    line-height: 1;
}

.hero-program-progress-details {
    display: none;
}

.hero-program-progress-track {
    position: relative;
    height: 5px;
    margin: 7px 0 0;
    border-radius: 999px;
    background-color: #e5e9ef;
    background-image: repeating-linear-gradient(
        135deg,
        rgba(255, 255, 255, .7) 0,
        rgba(255, 255, 255, .7) 5px,
        rgba(187, 197, 210, .28) 5px,
        rgba(187, 197, 210, .28) 10px
    );
    background-size: 16px 16px;
    animation: hero-program-progress-flow 1.25s linear infinite;
}

.hero-program-progress-track [data-progress-bar] {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--yellow), var(--orange));
    box-shadow: 0 2px 7px rgba(255, 126, 0, .25);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .8s linear;
}

.hero-program-progress-marker {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: clamp(6px, var(--program-progress, 0%), calc(100% - 6px));
    width: 12px;
    height: 12px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 3px 8px rgba(0, 25, 65, .2);
    transform: translate(-50%, -50%);
    transition: left .8s linear;
}

.program-copy .hero-program-progress-marker [data-progress-percent] {
    position: absolute;
    bottom: calc(100% + 3px);
    left: 50%;
    min-width: 29px;
    padding: 2px 4px;
    border-radius: 999px;
    color: var(--blue-deep);
    background: var(--yellow);
    box-shadow: 0 3px 8px rgba(0, 25, 65, .14);
    font-size: 8px;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    white-space: nowrap;
    transform: translateX(-50%);
}

.program-copy .hero-program-progress-details span {
    display: block;
    min-width: 0;
    color: rgba(7, 32, 72, .62);
    font-size: 8px;
    font-weight: 600;
    line-height: 1;
    text-transform: none;
    white-space: nowrap;
}

@keyframes hero-program-progress-flow {
    to { background-position: 16px 0; }
}

.main-play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 116px;
    aspect-ratio: 1;
    margin: 0;
    border: 0;
    border-radius: 50%;
    color: var(--blue);
    background: var(--yellow);
    box-shadow: 0 16px 30px rgba(255, 196, 0, .3);
    transform: translate(-50%, -50%);
    transition: transform .18s ease, box-shadow .18s ease;
}

.main-play:hover,
.main-play:focus-visible {
    outline: 4px solid rgba(0, 146, 250, .2);
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 20px 42px rgba(255, 196, 0, .46);
}

.play-mark {
    width: 0;
    height: 0;
    margin-left: 8px;
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
    border-left: 25px solid currentColor;
}

.pause-mark {
    display: inline-flex;
    gap: 8px;
}

.pause-mark::before,
.pause-mark::after {
    content: "";
    width: 8px;
    height: 34px;
    border-radius: 3px;
    background: currentColor;
}

.live-copy {
    grid-column: 3;
    min-width: 0;
}

.live-copy strong {
    margin-top: 3px;
}

.live-copy span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--red);
}

.live-dot {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 0 rgba(247, 25, 41, .44);
}

.is-playing .live-dot {
    animation: live-pulse 1.2s ease-out infinite;
}

.audio-spectrum {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 48px;
    color: var(--purple);
}

.audio-spectrum span {
    width: 7px;
    height: 18px;
    border-radius: 999px;
    background: currentColor;
    opacity: .72;
    transform-origin: center;
}

.is-playing .audio-spectrum span {
    animation: spectrum 780ms ease-in-out infinite;
}

.audio-spectrum span:nth-child(2) {
    height: 32px;
    animation-delay: -180ms;
}

.audio-spectrum span:nth-child(3) {
    height: 22px;
    animation-delay: -360ms;
}

.audio-spectrum span:nth-child(4) {
    height: 40px;
    animation-delay: -90ms;
}

.audio-spectrum span:nth-child(5) {
    height: 24px;
    animation-delay: -260ms;
}

.player-whatsapp {
    grid-column: 4 / 6;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 0;
    min-height: 58px;
    padding: 10px 12px;
    border: 1px solid #128044;
    border-radius: 999px;
    color: #fff;
    background: #128044;
    transition: background .18s ease, border-color .18s ease;
}

.player-whatsapp:hover {
    background: #0b6936;
    border-color: #0b6936;
}

.player-whatsapp {
    animation: participation-pulse 2.5s ease-out infinite;
}

.player-whatsapp:hover,
.player-whatsapp:focus-visible {
    animation: none;
}

@keyframes participation-pulse {
    0%, 32%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(18, 128, 68, 0);
    }
    10% {
        transform: scale(1.035);
        box-shadow: 0 0 0 0 rgba(18, 128, 68, .28);
    }
    28% {
        transform: scale(1);
        box-shadow: 0 0 0 7px rgba(18, 128, 68, 0);
    }
}

.player-whatsapp svg {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
}

.player-whatsapp strong,
.player-whatsapp small {
    display: block;
    line-height: 1.25;
}

.player-whatsapp strong {
    font-size: 17px;
    font-weight: 600;
}

.player-whatsapp small {
    margin-top: 3px;
    font-size: 11px;
    font-weight: 400;
}

.feedback-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.feedback-button {
    display: inline-grid;
    grid-template-columns: 19px auto;
    place-items: center;
    gap: 4px;
    width: 50px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: #eef1f5;
    transition: transform .18s ease, box-shadow .18s ease;
}

.feedback-button svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.feedback-button strong {
    min-width: 12px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 600;
}

.feedback-button.like {
    color: #00b359;
}

.feedback-button.dislike {
    color: #ff355e;
}

.feedback-button:hover,
.feedback-button:focus-visible,
.feedback-button.is-active {
    outline: none;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(7, 22, 51, .14);
}

.news-section {
    position: relative;
    overflow: hidden;
    padding: clamp(78px, 7vw, 104px) 0 clamp(86px, 8vw, 116px);
    color: var(--white);
    background-color: #0648ae;
    background-image:
        linear-gradient(rgba(4, 65, 170, .88), rgba(4, 65, 170, .88)),
        url("../png/pontos.png");
    background-repeat: no-repeat, repeat;
    background-position: center, left top;
    background-size: 100% 100%, auto;
}

.news-header,
.news-layout {
    position: relative;
    z-index: 1;
}

.news-header {
    margin-bottom: 38px;
}

.news-header h2,
.section-heading h2,
.app-copy h2,
.advertise-panel h2 {
    margin: 0;
    font-family: "Encode Sans", sans-serif;
    font-size: clamp(28px, 2.7vw, 36px);
    font-weight: 600;
    line-height: 1.12;
    text-transform: uppercase;
}

.news-layout {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(230px, 1fr);
    gap: 34px 26px;
}

.lead-news {
    display: grid;
    grid-template-columns: minmax(300px, 1.18fr) minmax(240px, 1fr);
    align-items: center;
    gap: clamp(26px, 3.2vw, 14px);
}

.news-media {
    position: relative;
    min-height: 180px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 22px 54px rgba(0, 14, 36, .28);
}

.lead-news .news-media {
    min-height: 0;
    aspect-ratio: 1.48 / 1;
}

.side-news .news-media {
    min-height: 0;
    aspect-ratio: 1.34 / 1;
    margin-bottom: 16px;
}

.small-news .news-media {
    min-height: 0;
    aspect-ratio: 1.47 / 1;
    margin-bottom: 16px;
}

.news-media img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.media-blue {
    background: linear-gradient(135deg, #0b9ee9, #054177 62%, #021c3d);
}

.media-orange {
    background:
        radial-gradient(circle at 68% 22%, rgba(255, 245, 0, .68), transparent 16%),
        linear-gradient(135deg, var(--orange), #9b0b28 62%, #2a0928);
}

.media-yellow {
    background:
        radial-gradient(circle at 28% 28%, rgba(255, 255, 255, .5), transparent 18%),
        linear-gradient(135deg, var(--yellow), var(--orange));
}

.media-pink {
    background:
        radial-gradient(circle at 78% 22%, rgba(0, 146, 250, .44), transparent 18%),
        linear-gradient(135deg, var(--pink), var(--royal));
}

.lead-news-copy span,
.side-news span,
.small-news span {
    display: block;
    margin-bottom: 10px;
    color: var(--yellow);
    font-family: "Encode Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
}

.lead-news h3,
.side-news h3,
.small-news h3 {
    margin: 0;
    color: var(--white);
    font-family: "Encode Sans", sans-serif;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
}

.lead-news h3 {
    max-width: 430px;
    font-size: clamp(25px, 2.35vw, 32px);
    line-height: 1.16;
}

.lead-news p {
    max-width: 430px;
    margin: 18px 0 0;
    color: #f4f4f4;
    font-size: 15px;
    line-height: 1.58;
}

.side-news h3,
.small-news h3 {
    font-size: clamp(16px, 1.45vw, 19px);
    line-height: 1.25;
}

.news-side-slider {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 12px 12px 14px;
    color: var(--blue-deep);
    border-radius: 8px;
    background: #f8f8fb;
    box-shadow: 0 18px 44px rgba(0, 14, 36, .2);
}

.news-side-viewport {
    display: grid;
    flex: 1;
}

.side-news {
    grid-area: 1 / 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(8px);
    transition: opacity .25s ease, transform .3s ease, visibility .3s;
}

.side-news.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}

.side-news-copy {
    padding: 0 1px 4px;
}

.news-side-slider .side-news span {
    color: var(--pink);
}

.news-side-slider .side-news h3 {
    color: var(--blue-deep);
    font-size: clamp(16px, 1.35vw, 19px);
    line-height: 1.28;
}

.news-side-controls {
    display: grid;
    grid-template-columns: 34px 1fr 34px;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 12px;
}

.news-side-controls > button {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    padding: 0;
    color: var(--blue-deep);
    border: 1px solid #dce0e8;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    transition: border-color .18s ease, color .18s ease, background-color .18s ease;
}

.news-side-controls > button:last-child {
    justify-self: end;
}

.news-side-controls > button:hover,
.news-side-controls > button:focus-visible {
    color: var(--pink);
    border-color: var(--pink);
    outline: none;
}

.news-side-controls > button span {
    margin: -2px 0 0;
    color: inherit;
    font-size: 25px;
    font-weight: 400;
    line-height: 1;
}

.news-side-dots {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.news-side-dots button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #d8dbe2;
    cursor: pointer;
}

.news-side-dots button.is-active {
    background: var(--pink);
}

.small-news-grid {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 0;
}

.section-space {
    padding: clamp(72px, 8vw, 118px) 0;
}

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

.section-heading h2 {
    max-width: 730px;
    color: var(--blue-deep);
}

.section-heading a,
.advertise-panel a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    color: var(--blue-deep);
    background: var(--yellow);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}

.schedule-section {
    background:
        radial-gradient(circle at 88% 14%, rgba(255, 102, 51, .22), transparent 22%),
        var(--paper);
}

.schedule-rail {
    display: grid;
    gap: 12px;
}

.schedule-item {
    display: grid;
    grid-template-columns: 92px 1fr 74px;
    align-items: center;
    gap: 22px;
    min-height: 86px;
    padding: 16px 24px;
    border-left: 8px solid var(--orange);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 14px 34px rgba(9, 35, 75, .08);
}

.schedule-item time {
    color: var(--blue);
    font-family: "Encode Sans", sans-serif;
    font-size: 20px;
    font-weight: 600;
}

.schedule-item span,
.schedule-item strong {
    color: var(--orange);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.schedule-item h3 {
    margin: 2px 0 4px;
    font-family: "Encode Sans", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
}

.schedule-item p {
    margin: 0;
    color: var(--muted);
}

.top10-section {
    position: relative;
    overflow: hidden;
    background-color: #eef4fb;
    background-image:
        linear-gradient(rgba(238, 244, 251, .94), rgba(238, 244, 251, .94)),
        url("../png/pontos.png");
    background-repeat: no-repeat, repeat;
}

.top10-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 38%;
    height: 8px;
    background: var(--yellow);
}

.top10-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 38%;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--orange), var(--pink));
}

.top10-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 36px;
    margin-bottom: 34px;
}

.top10-heading h2 {
    margin: 0;
    color: var(--blue-deep);
    font-size: clamp(30px, 3.2vw, 40px);
    font-weight: 600;
    line-height: 1.08;
    text-transform: uppercase;
}

.top10-heading h2 span { display: block; color: var(--orange); }
.top10-heading > p {
    max-width: 360px;
    margin: 0 0 4px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.5;
}

.top10-stage {
    display: grid;
    grid-template-columns: minmax(330px, .92fr) minmax(0, 1.65fr);
    align-items: stretch;
    gap: 18px;
}

.top10-feature {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    min-height: 100%;
    overflow: hidden;
    border-radius: 8px;
    color: var(--white);
    background: var(--blue-deep);
    box-shadow: 0 24px 52px rgba(2, 35, 83, .18);
}

.top10-feature-cover,
.top10-card-cover {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    border: 0;
    color: inherit;
    background: var(--blue);
    cursor: pointer;
}

.top10-feature-cover { min-height: 390px; }
.top10-feature-cover img,
.top10-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .48s cubic-bezier(.22, 1, .36, 1), filter .3s ease;
}

.top10-feature-cover::after,
.top10-card-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 48%, rgba(1, 21, 54, .62));
    transition: background .25s ease;
}

.top10-feature-cover:hover img,
.top10-feature-cover:focus-visible img,
.top10-card-cover:hover img,
.top10-card-cover:focus-visible img { transform: scale(1.045); }

.top10-feature-cover:hover::after,
.top10-feature-cover:focus-visible::after,
.top10-card-cover:hover::after,
.top10-card-cover:focus-visible::after { background: rgba(3, 33, 78, .2); }

.top10-rank {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    display: grid;
    place-items: center;
    min-width: 42px;
    height: 42px;
    padding: 0 7px;
    border-radius: 5px;
    color: var(--blue-deep);
    background: var(--yellow);
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 9px 20px rgba(0, 20, 52, .2);
}

.top10-rank-feature {
    top: 18px;
    left: 18px;
    min-width: 62px;
    height: 62px;
    font-size: 29px;
}

.top10-play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    color: var(--blue-deep);
    background: var(--yellow);
    box-shadow: 0 12px 28px rgba(0, 20, 52, .3);
    opacity: 0;
    transform: translate(-50%, -42%) scale(.82);
    transition: opacity .24s ease, transform .3s cubic-bezier(.22, 1, .36, 1);
}

.top10-play i {
    width: 0;
    height: 0;
    margin-left: 4px;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 13px solid currentColor;
}

.top10-feature-cover .top10-play { width: 68px; height: 68px; }
.top10-feature-cover .top10-play i { border-top-width: 10px; border-bottom-width: 10px; border-left-width: 16px; }
.top10-feature-cover:hover .top10-play,
.top10-feature-cover:focus-visible .top10-play,
.top10-card-cover:hover .top10-play,
.top10-card-cover:focus-visible .top10-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.top10-feature-copy { position: relative; padding: 26px 28px 29px; }
.top10-position-label {
    color: var(--yellow);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.top10-feature-copy h3,
.top10-card-copy h3 {
    color: inherit;
    font-weight: 600;
    line-height: 1.18;
}

.top10-feature-copy h3 { margin: 7px 0 5px; font-size: clamp(24px, 2.4vw, 30px); }
.top10-feature-copy p { margin: 0; color: rgba(255, 255, 255, .7); font-size: 14px; }
.top10-equalizer {
    position: absolute;
    right: 28px;
    bottom: 30px;
    display: flex;
    align-items: center;
    gap: 4px;
    height: 36px;
    color: var(--purple);
}

.top10-equalizer span { width: 4px; height: 42%; border-radius: 3px; background: currentColor; }
.top10-equalizer span:nth-child(2),
.top10-equalizer span:nth-child(6) { height: 70%; }
.top10-equalizer span:nth-child(3),
.top10-equalizer span:nth-child(5) { height: 100%; }
.top10-equalizer span:nth-child(4) { height: 58%; }

.top10-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.top10-card {
    min-width: 0;
    overflow: hidden;
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 13px 32px rgba(2, 35, 83, .1);
    transition: transform .25s ease, box-shadow .25s ease;
}

.top10-card:hover { transform: translateY(-3px); box-shadow: 0 19px 40px rgba(2, 35, 83, .15); }
.top10-card-cover { aspect-ratio: 1.46 / 1; }
.top10-card-copy { min-height: 91px; padding: 15px 16px 17px; border-bottom: 4px solid var(--orange); }
.top10-card:nth-child(3n + 2) .top10-card-copy { border-bottom-color: var(--purple); }
.top10-card:nth-child(3n) .top10-card-copy { border-bottom-color: var(--yellow-deep); }
.top10-card-copy h3 {
    display: -webkit-box;
    margin: 0 0 5px;
    overflow: hidden;
    color: var(--blue-deep);
    font-size: 16px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.top10-card-copy p {
    margin: 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 11px;
    font-weight: 500;
    line-height: 1.35;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.charts-team-section {
    position: relative;
    overflow: hidden;
    background-color: #eef4fb;
    background-image:
        linear-gradient(rgba(238, 244, 251, .95), rgba(238, 244, 251, .95)),
        url("../png/pontos.png");
    background-repeat: no-repeat, repeat;
}

.charts-team-section::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 8px;
    background: linear-gradient(90deg, var(--yellow) 0 35%, var(--orange) 35% 68%, var(--purple) 68%);
}

.charts-team-layout {
    display: grid;
    grid-template-columns: minmax(0, 2.15fr) minmax(280px, .85fr);
    align-items: stretch;
    gap: 24px;
}

.top10-column,
.team-column {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 22px 52px rgba(2, 35, 83, .13);
}

.top10-column {
    background: var(--white);
}

.top10-list-heading {
    display: flex;
    align-items: center;
    min-height: 0;
    padding: 19px 30px;
    border-bottom: 1px solid #e5ebf3;
}

.top10-list-heading .section-kicker,
.team-column-heading .section-kicker {
    color: var(--orange);
}

.top10-list-heading h2 {
    margin: 0;
    color: var(--blue-deep);
    font-size: clamp(30px, 3.2vw, 40px);
    font-weight: 600;
    line-height: 1.08;
    text-transform: uppercase;
}

.top10-list-heading h2 span {
    display: block;
    color: var(--orange);
}

.top10-list-heading > p {
    max-width: 250px;
    margin: 0 0 3px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

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

.top10-list-item {
    --track-accent: var(--orange);
    border-bottom: 1px solid #e8edf4;
    border-left: 4px solid var(--track-accent);
}

.top10-list-item:nth-child(3n + 2) { --track-accent: #8d47d8; }
.top10-list-item:nth-child(3n) { --track-accent: var(--yellow-deep); }
.top10-list-item:last-child { border-bottom: 0; }

.top10-track {
    display: grid;
    grid-template-columns: 54px 82px minmax(0, 1fr) 42px;
    align-items: center;
    gap: 16px;
    width: 100%;
    min-height: 101px;
    padding: 9px 18px 9px 14px;
    border: 0;
    color: var(--blue-deep);
    text-align: left;
    background: transparent;
    transition: background .2s ease;
}

.top10-list-item:first-child .top10-track {
    min-height: 112px;
    background: linear-gradient(90deg, rgba(255, 245, 0, .16), transparent 72%);
}

.top10-track:hover,
.top10-track:focus-visible {
    outline-offset: -4px;
    background: #f5f8fc;
}

.top10-list-rank {
    color: var(--track-accent);
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
}

.top10-list-item:first-child .top10-list-rank {
    font-size: 30px;
}

.top10-list-cover {
    width: 82px;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 5px;
    background: var(--blue);
}

.top10-list-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}

.top10-track:hover .top10-list-cover img,
.top10-track:focus-visible .top10-list-cover img {
    transform: scale(1.05);
}

.top10-list-copy {
    min-width: 0;
}

.top10-list-copy strong,
.top10-list-copy small {
    display: block;
}

.top10-list-copy strong {
    overflow: hidden;
    color: var(--blue-deep);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.22;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.top10-list-copy small {
    margin-top: 5px;
    overflow: hidden;
    color: var(--muted);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.35;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.top10-list-play {
    display: grid;
    place-items: center;
    width: 42px;
    aspect-ratio: 1;
    border: 2px solid var(--track-accent);
    border-radius: 50%;
    color: var(--blue-deep);
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.top10-list-play i {
    width: 0;
    height: 0;
    margin-left: 3px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid currentColor;
}

.top10-track:hover .top10-list-play,
.top10-track:focus-visible .top10-list-play {
    color: var(--white);
    background: var(--track-accent);
    transform: scale(1.06);
}

.team-column {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 28px 24px 22px;
    color: var(--white);
    background-color: var(--blue-deep);
    background-image:
        linear-gradient(rgba(3, 47, 104, .91), rgba(3, 47, 104, .91)),
        url("../png/pontos.png");
    border-top: 6px solid var(--yellow);
}

.team-column-heading {
    padding-bottom: 15px;
}

.team-column-heading h2 {
    margin: 0;
    color: var(--white);
    font-size: 29px;
    font-weight: 600;
    line-height: 1.1;
    text-transform: uppercase;
}

.team-column-heading > p:last-child {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, .68);
    font-size: 13px;
    line-height: 1.5;
}

.team-roster {
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.team-roster-item {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    min-height: 120px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.team-roster-item.is-on-air {
    margin-inline: -12px;
    padding-inline: 12px;
    background: rgba(255, 245, 0, .08);
}

.team-roster-item img {
    width: 76px;
    height: 94px;
    object-fit: cover;
    object-position: center top;
    border-radius: 5px;
    background: var(--yellow);
}

.team-roster-item > div {
    min-width: 0;
}

.team-roster-item span,
.team-roster-status {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--yellow);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.team-roster-status b {
    font: inherit;
}

.team-roster-status i {
    display: none;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
}

.team-roster-item.is-on-air .team-roster-status i {
    display: block;
    animation: live-pulse 1.2s ease-out infinite;
}

.team-roster-item h3 {
    margin: 5px 0 4px;
    overflow: hidden;
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.18;
    white-space: normal;
}

.team-roster-item p {
    margin: 0;
    overflow: hidden;
    color: rgba(255, 255, 255, .58);
    font-size: 11px;
    line-height: 1.4;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.team-column-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 50px;
    margin-top: auto;
    padding-top: 18px;
    color: var(--yellow);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.team-column-link span {
    font-size: 22px;
    line-height: 1;
    transition: transform .2s ease;
}

.team-column-link:hover span,
.team-column-link:focus-visible span {
    transform: translateX(4px);
}

.top10-home-section {
    position: relative;
    overflow: hidden;
}

.top10-home-section::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--yellow) 0 35%, var(--orange) 35% 68%, var(--purple) 68%);
}

.top10-home-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 18px;
    text-align: center;
}

.top10-home-heading .section-kicker {
    margin: 0;
    color: var(--purple);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: none;
}

.top10-home-heading .section-kicker::after {
    content: "";
    display: block;
    width: 32px;
    height: 2px;
    margin: 8px auto 0;
    background: currentColor;
}

.top10-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(370px, 1fr);
    align-items: stretch;
    gap: 18px;
    padding: 18px;
    border-radius: 8px;
    color: var(--white);
    background-color: var(--blue-deep);
    background-image:
        linear-gradient(rgba(3, 35, 84, .93), rgba(3, 35, 84, .93)),
        url("../png/pontos.png");
    box-shadow: 0 24px 58px rgba(2, 35, 83, .18);
}

.top10-podium {
    display: grid;
    grid-template-rows: auto auto;
    align-content: start;
    gap: 8px;
    min-width: 0;
}

.top10-featured {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 245, 0, .72);
    border-radius: 8px;
    background: #06112c;
    box-shadow: 0 0 0 1px rgba(255, 245, 0, .08), 0 18px 46px rgba(0, 9, 28, .28);
}

.top10-featured-open {
    position: relative;
    display: block;
    width: 100%;
    height: 300px;
    min-height: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    color: var(--white);
    background: var(--blue);
    text-align: left;
}

.top10-featured-open::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 25, 63, .02) 45%, rgba(3, 25, 63, .64));
    pointer-events: none;
}

.top10-featured-open img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    transition: transform .5s cubic-bezier(.22, 1, .36, 1), filter .3s ease;
}

.top10-featured-open:hover img,
.top10-featured-open:focus-visible img {
    transform: scale(1.035);
    filter: saturate(1.08);
}

.top10-featured-rank {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 15px;
    border-radius: 8px;
    color: var(--white);
    background: rgba(3, 27, 67, .9);
    box-shadow: 0 12px 28px rgba(0, 10, 30, .3);
}

.top10-featured-rank b {
    font-size: 22px;
    font-weight: 700;
}

.top10-featured-rank svg {
    width: 21px;
    height: 21px;
    color: var(--yellow);
}

.top10-featured-play,
.top10-ranking-play {
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--blue-deep);
    background: var(--yellow);
    box-shadow: 0 12px 28px rgba(0, 12, 40, .28);
    transition: background-color .2s ease, transform .2s ease;
}

.top10-featured-play {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 2;
    width: 52px;
    height: 52px;
}

.top10-featured-play i,
.top10-ranking-play i {
    width: 0;
    height: 0;
    margin-left: 4px;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 13px solid currentColor;
}

.top10-featured-open:hover .top10-featured-play,
.top10-featured-open:focus-visible .top10-featured-play,
.top10-ranking-play:hover,
.top10-ranking-play:focus-visible {
    background: var(--orange);
    transform: scale(1.06);
}

.top10-featured-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 92px;
    padding: 15px 18px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.top10-featured-copy {
    min-width: 0;
}

.top10-featured-copy > span {
    color: var(--yellow);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.top10-featured-copy h2 {
    margin: 5px 0 3px;
    overflow: hidden;
    color: var(--white);
    font-size: clamp(19px, 1.8vw, 24px);
    font-weight: 700;
    line-height: 1.12;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.top10-featured-copy p {
    margin: 0;
    color: rgba(255, 255, 255, .65);
    font-size: 13px;
}

.top10-featured-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top10-signal {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 34px;
    color: var(--orange);
}

.top10-signal i {
    width: 3px;
    height: 32%;
    border-radius: 3px;
    background: currentColor;
    animation: top10-signal 1.1s ease-in-out infinite alternate;
}

.top10-signal i:nth-child(4n + 1) { height: 86%; animation-delay: -.7s; }
.top10-signal i:nth-child(4n + 2) { height: 58%; animation-delay: -.35s; }
.top10-signal i:nth-child(4n + 3) { height: 100%; animation-delay: -.9s; }

@keyframes top10-signal {
    from { transform: scaleY(.48); opacity: .55; }
    to { transform: scaleY(1); opacity: 1; }
}

.top10-like {
    display: inline-grid;
    grid-template-columns: 20px auto;
    place-items: center;
    gap: 4px;
    min-width: 44px;
    height: 44px;
    padding: 0 9px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    color: rgba(255, 255, 255, .82);
    background: rgba(255, 255, 255, .06);
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.top10-like svg {
    width: 20px;
    height: 20px;
}

.top10-like [data-like-count] {
    display: none;
    font-size: 10px;
    font-weight: 700;
}

.top10-like.is-liked {
    border-color: var(--yellow);
    color: var(--blue-deep);
    background: var(--yellow);
}

.top10-like.is-liked svg {
    fill: var(--orange);
    stroke: var(--orange);
}

.top10-like:hover,
.top10-like:focus-visible {
    transform: scale(1.06);
}

.top10-like:disabled {
    opacity: .5;
    cursor: wait;
    transform: none;
}

.top10-like-featured {
    width: auto;
    min-width: 54px;
    height: 54px;
}

.top10-like-featured [data-like-count],
.top10-like.is-liked [data-like-count] {
    display: block;
}

.top10-ranking {
    display: grid;
    grid-template-rows: repeat(7, minmax(70px, 1fr));
    gap: 8px;
    min-width: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.top10-ranking-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px 46px;
    align-items: center;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .1);
    border-left: 3px solid var(--orange);
    border-radius: 8px;
    background: rgba(255, 255, 255, .055);
    transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.top10-ranking-item:nth-child(3n + 2) { border-left-color: var(--purple); }
.top10-ranking-item:nth-child(3n) { border-left-color: var(--yellow); }

.top10-ranking-item:hover {
    border-color: rgba(255, 245, 0, .42);
    background: rgba(255, 255, 255, .1);
    transform: translateX(-3px);
}

.top10-ranking-open {
    display: grid;
    grid-template-columns: 40px 58px minmax(0, 1fr);
    align-items: center;
    gap: 11px;
    min-width: 0;
    height: 100%;
    padding: 5px 8px;
    border: 0;
    color: var(--white);
    background: transparent;
    text-align: left;
}

.top10-ranking-number {
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

.top10-ranking-cover {
    width: 58px;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 5px;
    background: var(--blue);
}

.top10-ranking-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.top10-ranking-item:hover .top10-ranking-cover img {
    transform: scale(1.06);
}

.top10-ranking-copy {
    min-width: 0;
}

.top10-ranking-copy strong,
.top10-ranking-copy small {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.top10-ranking-copy strong {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}

.top10-ranking-copy small {
    margin-top: 4px;
    color: rgba(255, 255, 255, .58);
    font-size: 10px;
    font-weight: 500;
}

.top10-ranking-item > .top10-like {
    width: 38px;
    min-width: 38px;
    height: 38px;
    padding: 0 7px;
}

.top10-ranking-item > .top10-like svg {
    width: 18px;
    height: 18px;
}

.top10-ranking-play {
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
}

.top10-ranking-play i {
    margin-left: 3px;
    border-top-width: 6px;
    border-bottom-width: 6px;
    border-left-width: 10px;
}

.top10-podium-list {
    display: grid;
    grid-template-rows: 102px 88px;
    gap: 8px;
    min-width: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.top10-podium-item {
    background: rgba(255, 255, 255, .08);
}

.top10-podium-position-2 {
    border-left-color: var(--purple);
    background: linear-gradient(90deg, rgba(141, 71, 216, .2), rgba(255, 255, 255, .06));
}

.top10-podium-position-3 {
    border-left-color: var(--yellow);
    background: linear-gradient(90deg, rgba(255, 245, 0, .13), rgba(255, 255, 255, .045));
}

.top10-podium-position-2 .top10-ranking-open {
    grid-template-columns: 46px 76px minmax(0, 1fr);
    gap: 13px;
    padding-left: 10px;
}

.top10-podium-position-2 .top10-ranking-number {
    color: #c79cff;
    font-size: 27px;
}

.top10-podium-position-2 .top10-ranking-cover {
    width: 76px;
}

.top10-podium-position-2 .top10-ranking-copy strong {
    font-size: 16px;
}

.top10-podium-position-3 .top10-ranking-open {
    grid-template-columns: 42px 62px minmax(0, 1fr);
    gap: 11px;
    padding-left: 10px;
}

.top10-podium-position-3 .top10-ranking-number {
    color: var(--yellow);
    font-size: 23px;
}

.top10-podium-position-3 .top10-ranking-cover {
    width: 62px;
}

.top10-podium-position-3 .top10-ranking-copy strong {
    font-size: 14px;
}

.top10-modal {
    width: min(900px, calc(100% - 34px));
    max-width: none;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 8px;
    color: var(--white);
    background: var(--blue-deep);
    box-shadow: 0 30px 90px rgba(0, 13, 39, .55);
}

.top10-modal::backdrop { background: rgba(0, 13, 39, .8); backdrop-filter: blur(5px); }
.top10-modal-shell > header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 21px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.top10-modal-shell header span { color: var(--yellow); font-size: 10px; font-weight: 700; text-transform: uppercase; }
.top10-modal-shell header h3 { margin: 3px 0 2px; color: var(--white); font-size: 21px; font-weight: 600; line-height: 1.18; }
.top10-modal-shell header p { margin: 0; color: rgba(255, 255, 255, .64); font-size: 12px; }
.top10-modal-shell header button {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    color: var(--white);
    background: transparent;
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
}

.top10-video-frame { aspect-ratio: 16 / 9; background: #000; }
.top10-video-frame iframe { width: 100%; height: 100%; border: 0; }
.top10-modal-shell footer { display: flex; justify-content: flex-end; padding: 14px 24px 18px; }
.top10-modal-shell footer a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 17px;
    border-radius: 5px;
    color: var(--blue-deep);
    background: var(--yellow);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.sidebar-gallery {
    position: sticky;
    top: 128px;
    display: grid;
    align-self: start;
    gap: 18px;
    min-width: 0;
}

.sidebar-slider {
    display: grid;
    gap: 18px;
    min-width: 0;
}

.sidebar-slider-viewport {
    position: relative;
    min-height: 0;
    aspect-ratio: 1;
}

.sidebar-slide {
    position: absolute;
    inset: 0;
    visibility: hidden;
    opacity: 0;
    transform: translateX(14px);
    transition: opacity .32s ease, transform .38s cubic-bezier(.22, 1, .36, 1), visibility .32s;
}

.sidebar-slide.is-active {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

.sidebar-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.sidebar-slider-controls > button {
    display: grid;
    place-items: center;
    width: 34px;
    aspect-ratio: 1;
    padding: 0 0 2px;
    border: 1px solid #d8e0ec;
    border-radius: 50%;
    color: var(--blue-deep);
    background: #fff;
  /*  font-size: 23px; */
}

.sidebar-slider-controls > div { display: flex; gap: 7px; }
.sidebar-slider-controls > div button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #c9d2df;
}
.sidebar-slider-controls > div button.is-active { width: 20px; border-radius: 8px; background: var(--orange); }
.sidebar-media-static { cursor: default; }

.sidebar-media {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 8px;
    background: var(--blue-deep);
    box-shadow: 0 15px 36px rgba(4, 36, 80, .12);
}

.sidebar-media img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform .38s cubic-bezier(.22, 1, .36, 1), filter .25s ease;
}

.sidebar-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 62%, rgba(3, 47, 104, .42));
    opacity: 0;
    transition: opacity .24s ease;
}

.sidebar-media:hover img,
.sidebar-media:focus-visible img {
    transform: scale(1.025);
    filter: saturate(1.05);
}

.sidebar-media:hover::after,
.sidebar-media:focus-visible::after {
    opacity: 1;
}

.sidebar-media-zoom {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 40px;
    aspect-ratio: 1;
    border-radius: 50%;
    color: var(--blue-deep);
    background: var(--yellow);
    box-shadow: 0 9px 22px rgba(0, 20, 52, .25);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .2s ease, transform .24s ease;
}

.sidebar-media:hover .sidebar-media-zoom,
.sidebar-media:focus-visible .sidebar-media-zoom {
    opacity: 1;
    transform: translateY(0);
}

.sidebar-media-zoom svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.sidebar-lightbox {
    width: min(900px, calc(100% - 34px));
    max-width: none;
    max-height: calc(100dvh - 34px);
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 8px;
    background: transparent;
    box-shadow: 0 30px 90px rgba(0, 13, 39, .58);
}

.sidebar-lightbox::backdrop {
    background: rgba(0, 13, 39, .86);
    backdrop-filter: blur(5px);
}

.sidebar-lightbox img {
    width: 100%;
    max-height: calc(100dvh - 34px);
    object-fit: contain;
    border-radius: 8px;
    background: var(--blue-deep);
}

.sidebar-lightbox-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 44px;
    aspect-ratio: 1;
    padding: 0 0 3px;
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 50%;
    color: var(--white);
    background: rgba(3, 47, 104, .82);
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
}

.sidebar-lightbox-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 48px;
    aspect-ratio: 1;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 50%;
    color: var(--white);
    background: rgba(3, 47, 104, .82);
    box-shadow: 0 10px 28px rgba(0, 13, 39, .3);
    transform: translateY(-50%);
    transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

.sidebar-lightbox-nav:hover,
.sidebar-lightbox-nav:focus-visible {
    color: var(--blue-deep);
    background: var(--yellow);
    transform: translateY(-50%) scale(1.06);
}

.sidebar-lightbox-nav[hidden] {
    display: none;
}

.sidebar-lightbox-nav svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.25;
}

.sidebar-lightbox-previous { left: 14px; }
.sidebar-lightbox-next { right: 14px; }

.sidebar-lightbox-counter {
    position: absolute;
    bottom: 12px;
    left: 50%;
    z-index: 2;
    min-width: 58px;
    padding: 7px 12px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(3, 47, 104, .82);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    transform: translateX(-50%);
}

.sidebar-lightbox-counter[hidden] {
    display: none;
}

@media (max-width: 640px) {
    .sidebar-lightbox-nav {
        width: 42px;
    }

    .sidebar-lightbox-previous { left: 8px; }
    .sidebar-lightbox-next { right: 8px; }
}

.team-section {
    color: var(--white);
    background:
        radial-gradient(circle at 8% 16%, rgba(255, 245, 0, .2), transparent 22%),
        radial-gradient(circle at 92% 72%, rgba(0, 146, 250, .24), transparent 25%),
        linear-gradient(135deg, #07123a, var(--blue-deep));
}

.section-heading.invert h2 {
    color: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
}

.voice-card {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    border-radius: 8px;
    background: var(--orange);
    box-shadow: 0 24px 48px rgba(0, 14, 36, .24);
}

.voice-card img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
}

.voice-card div {
    position: absolute;
    inset: auto 0 0;
    padding: 80px 16px 18px;
    background: linear-gradient(180deg, transparent, rgba(0, 18, 42, .9));
}

.voice-card h3 {
    margin: 0;
    color: var(--white);
    font-family: "Encode Sans", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.18;
}

.voice-card p {
    margin: 5px 0 0;
    color: var(--yellow);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.app-section {
    position: relative;
    margin-top: 112px;
    color: var(--white);
    background-color: #0648ae;
    background-image:
        linear-gradient(rgba(4, 65, 170, .88), rgba(4, 65, 170, .88)),
        url("../png/pontos.png");
    background-repeat: no-repeat, repeat;
    background-position: center, left top;
    background-size: 100% 100%, auto;
}

.app-panel {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 280px minmax(390px, 1fr) 340px;
    align-items: center;
    gap: 20px;
    min-height: 440px;
}

.app-device {
    align-self: end;
    display: flex;
    justify-content: flex-start;
    height: 550px;
    margin-top: -110px;
    overflow: hidden;
}

.app-device img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: center bottom;
}

.app-copy {
    max-width: 580px;
    padding: 64px 0 62px;
}

.app-copy h2 {
    max-width: 520px;
    margin: 0;
    color: var(--yellow);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.18;
    text-transform: none;
}

.app-copy h2 span,
.app-copy > p span {
    display: block;
}

.app-copy h2::after {
    content: "";
    display: block;
    width: 32px;
    height: 2px;
    margin: 8px 0 0;
    background: currentColor;
}

.app-copy > p {
    max-width: 520px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, .9);
    font-size: 17px;
    line-height: 1.6;
}

.app-downloads {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.app-download-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 190px;
    min-height: 62px;
    padding: 9px 18px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    color: var(--white);
    background: #07101f;
    box-shadow: 0 12px 28px rgba(0, 19, 50, .24);
    transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.app-download-button:hover {
    color: var(--white);
    background: #101b2c;
    box-shadow: 0 16px 32px rgba(0, 19, 50, .34);
    transform: translateY(-3px);
}

.app-download-button svg {
    flex: 0 0 30px;
    width: 30px;
    height: 34px;
}

.app-download-button .apple-mark {
    width: 31px;
    height: 31px;
}

.app-download-button span,
.app-download-button small,
.app-download-button strong {
    display: block;
}

.app-download-button small {
    font-size: 10px;
    font-weight: 500;
    line-height: 1.1;
}

.app-download-button strong {
    margin-top: 2px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.05;
}

.app-alexa {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    min-width: 0;
    padding: 28px 0 28px 40px;
    border-left: 1px solid rgba(255, 255, 255, .2);
    color: var(--white);
    text-align: center;
}

a.app-alexa {
    transition: transform .25s ease;
}

a.app-alexa:hover,
a.app-alexa:focus-visible {
    color: var(--white);
    transform: translateY(-3px);
}

.app-alexa-device {
    position: relative;
    width: min(100%, 380px);
    overflow: hidden;
}

.app-alexa-device::after {
    content: none;
}

.app-alexa-device img {
    position: relative;
    z-index: 1;
    display: block;
    width: 150%;
    max-width: none;
    height: auto;
    margin-left: -25%;
}

.app-alexa-copy {
    position: relative;
    z-index: 1;
    margin-top: 3px;
}

.app-alexa-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #54dcff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.app-alexa-label svg {
    width: 22px;
    height: 22px;
}

.app-alexa-copy strong,
.app-alexa-copy small {
    display: block;
}

.app-alexa-copy strong {
    max-width: 250px;
    margin: 11px auto 0;
    color: var(--yellow);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.app-alexa-copy small {
    max-width: 220px;
    margin: 9px auto 0;
    color: rgba(255, 255, 255, .75);
    font-size: 11px;
    line-height: 1.5;
}

.whatsapp-section {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background-color: #0b7a40;
    background-image:
        linear-gradient(115deg, rgba(7, 94, 50, .94), rgba(17, 145, 76, .92)),
        url("../png/pontos.png");
    background-repeat: no-repeat, repeat;
}

.whatsapp-section.section-space {
    padding-top: clamp(44px, 5vw, 66px);
    padding-bottom: clamp(44px, 5vw, 66px);
}

.whatsapp-section::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: var(--yellow);
}

.whatsapp-section-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
    align-items: center;
    gap: clamp(34px, 5vw, 68px);
}

.whatsapp-section-heading h2 {
    max-width: 720px;
    margin: 0;
    color: var(--yellow);
    font-size: clamp(28px, 3.2vw, 32px);
    font-weight: 700;
    line-height: 1.06;
}

.whatsapp-section-action {
    display: flex;
    align-items: center;
}

.whatsapp-section-button {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 24px;
    align-items: center;
    gap: 13px;
    width: min(100%, 340px);
    min-height: 72px;
    padding: 12px 18px;
    border: 2px solid var(--yellow);
    border-radius: 999px;
    color: var(--white);
    background: #075a32;
    box-shadow: 0 16px 34px rgba(0, 48, 24, .24);
    animation: whatsapp-section-pulse 2.8s ease-out infinite;
    transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.whatsapp-section-button:hover,
.whatsapp-section-button:focus-visible {
    animation: none;
    background: #064928;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 48, 24, .32);
}

.whatsapp-section-button svg {
    width: 34px;
    height: 34px;
    color: var(--yellow);
}

.whatsapp-section-button strong,
.whatsapp-section-button small {
    display: block;
}

.whatsapp-section-button strong {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.15;
}

.whatsapp-section-button small {
    margin-top: 4px;
    color: var(--yellow);
    font-size: 11px;
    font-weight: 500;
}

.whatsapp-section-button i {
    color: var(--yellow);
    font-size: 24px;
    font-style: normal;
    line-height: 1;
}

@keyframes whatsapp-section-pulse {
    0%, 35%, 100% { transform: scale(1); box-shadow: 0 16px 34px rgba(0, 48, 24, .24); }
    12% { transform: scale(1.025); box-shadow: 0 16px 34px rgba(0, 48, 24, .24), 0 0 0 8px rgba(255, 245, 0, 0); }
    20% { box-shadow: 0 16px 34px rgba(0, 48, 24, .24), 0 0 0 0 rgba(255, 245, 0, .24); }
}

.site-footer {
    padding: 54px 0 0;
    color: rgba(255, 255, 255, .76);
    background: #06112c;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(190px, .72fr) minmax(280px, 1.15fr) minmax(326px, auto);
    align-items: center;
    gap: 46px;
    padding-bottom: 48px;
}

.footer-brand {
    display: inline-flex;
    width: fit-content;
    border-radius: 8px;
}

.footer-brand img {
    width: clamp(150px, 15vw, 190px);
    height: auto;
    filter: drop-shadow(0 16px 24px rgba(0, 0, 0, .2));
}

.footer-about {
    justify-self: center;
    width: 100%;
    max-width: 46ch;
    text-align: center;
}

.footer-about h2,
.footer-social h2 {
    margin: 0 0 12px;
    color: var(--white);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
}

.footer-about p {
    max-width: 52ch;
    margin: 0 auto;
    font-size: 13px;
    line-height: 1.7;
}

.footer-about address {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
    color: rgba(255, 255, 255, .92);
    font-size: 13px;
    font-style: normal;
    line-height: 1.55;
    text-align: left;
}

.footer-about address svg {
    flex: 0 0 19px;
    width: 19px;
    height: 19px;
    margin-top: 1px;
    color: var(--yellow);
}

.footer-social {
    justify-self: end;
    width: 100%;
    max-width: 326px;
}

.footer-social > h2 {
    text-align: center;
}

.footer-social-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact {
    margin-top: 20px;
    padding-top: 17px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    color: rgba(255, 255, 255, .84);
    text-align: left;
}

.footer-contact h3 {
    margin: 0 0 9px;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.footer-contact p {
    margin: 4px 0 0;
    font-size: 12px;
    line-height: 1.5;
}

.footer-contact span {
    color: var(--yellow);
    font-weight: 600;
}

.footer-contact a {
    transition: color .2s ease;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
    color: var(--yellow);
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, .08);
    transition: color .22s ease, background-color .22s ease, border-color .22s ease, transform .22s ease;
}

.social-link svg {
    width: 21px;
    height: 21px;
}

.social-link:hover {
    color: var(--white);
    border-color: transparent;
    transform: translateY(-3px);
}

.social-link-facebook:hover {
    background: #1877f2;
}

.social-link-instagram:hover {
    background: #d62976;
}

.social-link-whatsapp:hover {
    background: #16a75c;
}

.footer-social-links .store-icon {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, .2);
    color: var(--white);
    background: rgba(255, 255, 255, .08);
}

.footer-social-links .store-icon svg {
    width: 21px;
    height: 23px;
}

.footer-social-links .store-icon:hover {
    border-color: var(--yellow);
    color: var(--blue-deep);
    background: var(--yellow);
    transform: translateY(-3px);
}

.footer-social-links .store-icon-alexa {
    color: #54dcff;
}

.footer-social-links .store-icon-alexa:hover {
    color: var(--white);
    border-color: #159bd7;
    background: #159bd7;
}

.site-copyright {
    color: #536078;
    background: var(--white);
    border-top: 1px solid rgba(7, 32, 72, .08);
}

body:has(.mini-player.is-visible) .site-copyright {
    padding-bottom: 102px;
}

.copyright-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 54px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.copyright-grid p {
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
}

.copyright-grid a {
    color: var(--blue-deep);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(3, 47, 104, .28);
    text-underline-offset: 3px;
}

.copyright-grid a:hover {
    color: var(--orange);
    text-decoration-color: currentColor;
}

.mini-player {
    position: fixed;
    left: 50%;
    bottom: 18px;
    z-index: 60;
    display: grid;
    grid-template-columns: 54px 46px minmax(0, 1fr) auto 166px;
    align-items: center;
    gap: 14px;
    width: min(620px, calc(100% - 28px));
    min-height: 72px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 18px 48px rgba(2, 20, 49, .26);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 130%);
    transition: transform .24s ease, opacity .24s ease;
}

.mini-player-photo {
    width: 46px;
    height: 46px;
    object-fit: cover;
    object-position: center top;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #eef2f7;
    box-shadow: 0 3px 10px rgba(2, 20, 49, .18);
}

.mini-player.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.mini-player-wave {
    --wave-color-primary: #ff275f;
    --wave-color-secondary: #9b51e0;
    --wave-color-depth: #fff500;
    position: absolute;
    top: -30px;
    left: 28px;
    width: calc(100% - 56px);
    height: 36px;
    pointer-events: none;
    opacity: 0;
    clip-path: inset(0 0 6px);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
    transition: opacity .48s ease;
}

.mini-player.is-visible.is-playing .mini-player-wave {
    opacity: 1;
}

.mini-play {
    display: grid;
    place-items: center;
    width: 54px;
    aspect-ratio: 1;
    border: 0;
    border-radius: 50%;
    color: var(--blue);
    background: var(--yellow);
}

.navigation-error {
    position: fixed;
    z-index: 70;
    left: 50%;
    bottom: 110px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    width: min(560px, calc(100% - 28px));
    padding: 16px;
    border: 1px solid #d8deea;
    border-radius: 8px;
    background: #fff;
    color: var(--blue-deep);
    box-shadow: 0 10px 30px #032f6826;
}

.navigation-error button {
    border: 0;
    padding: 8px 12px;
    background: var(--yellow);
    color: var(--blue-deep);
}

.mini-play .play-mark {
    border-top-width: 11px;
    border-bottom-width: 11px;
    border-left-width: 17px;
}

.mini-play .pause-mark::before,
.mini-play .pause-mark::after {
    width: 4px;
    height: 20px;
}

.mini-play .pause-mark {
    display: inline-flex;
}

.mini-player strong {
    font-size: 18px;
}

.mini-player [data-dock-program] {
    display: block;
    overflow: hidden;
    line-height: 1.2;
}

.mini-player > div:not(.mini-feedback) { min-width: 0; }

.hero-player .player-title,
.mini-player .player-title {
    display: block;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
}

.player-title .player-title-track {
    display: inline-flex;
    width: max-content;
    max-width: none;
    gap: 32px;
    font-size: 16px;
    font-weight: 700;
    vertical-align: top;
}

.mini-player .player-title-track {
    font-size: 17px;
}

.player-title b {
    flex: none;
    font: inherit;
    color: inherit;
    white-space: nowrap;
}

.player-title.is-scrolling .player-title-track {
    animation: player-title-slide var(--title-duration) linear infinite;
}

.player-title:hover .player-title-track,
.mini-player:not(.is-visible) .player-title-track {
    animation-play-state: paused;
}

@keyframes player-title-slide {
    0%, 12% { transform: translateX(0); }
    100% { transform: translateX(calc(-1 * var(--title-distance))); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-program-progress-track { animation: none; }
    .hero-program-progress-track [data-progress-bar],
    .hero-program-progress-marker { transition: none; }
    .player-title.is-scrolling .player-title-track {
        display: block;
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        animation: none;
    }
    .player-title .player-title-copy { display: none; }
}

.mini-player .player-whatsapp {
    grid-area: auto;
    min-height: 50px;
    gap: 8px;
    padding: 8px 12px;
}

.mini-player .player-whatsapp svg {
    flex-basis: 24px;
    width: 24px;
    height: 24px;
}

.mini-player .player-whatsapp span,
.mini-player .player-whatsapp strong {
    color: inherit;
    text-transform: none;
}

.mini-player .player-whatsapp strong { font-size: 14px; }
.mini-player .player-whatsapp small { font-size: 10px; }

.mini-player .mini-feedback {
    grid-area: auto;
    gap: 8px;
}

.mini-player .feedback-button {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: 21px 12px;
    gap: 1px;
    width: 52px;
    min-width: 52px;
    height: 52px;
    padding: 8px 6px;
    border-radius: 50%;
    transform: none;
}

.mini-player .feedback-button svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
    stroke-width: 1.4;
}

.mini-player .feedback-button strong {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 10px;
    line-height: 12px;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
    text-transform: none;
}
.mini-player .feedback-button.like { color: #078647; }
.mini-player .feedback-button.dislike { color: #e12e4a; }
.mini-player .feedback-button[aria-pressed="true"] { box-shadow: inset 0 0 0 2px currentColor; }
.mini-player .feedback-button:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
.mini-player .feedback-button:disabled { opacity: .55; cursor: wait; }

.mini-player .feedback-status {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
}

.mini-player .feedback-status.is-error {
    bottom: calc(100% + 32px);
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    max-width: calc(100% - 24px);
    height: auto;
    padding: 8px 12px;
    clip-path: none;
    white-space: normal;
    border-radius: 6px;
    background: #fff;
    color: #922037;
    text-transform: none;
}

.volume {
    width: 100%;
    accent-color: var(--orange);
}

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

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

.hero-player[data-reveal] {
    transform: translate(-50%, 22px);
}

.hero-player[data-reveal].is-visible {
    transform: translate(-50%, -27%);
}

@keyframes live-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(247, 25, 41, .5);
    }
    100% {
        box-shadow: 0 0 0 12px rgba(247, 25, 41, 0);
    }
}

@keyframes spectrum {
    0%, 100% {
        transform: scaleY(.42);
        opacity: .42;
    }
    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

@media (max-width: 1180px) {
    .app-panel {
        grid-template-columns: minmax(260px, .78fr) minmax(360px, 1.22fr);
        gap: 34px;
    }

    .app-alexa {
        display: grid;
        grid-column: 1 / -1;
        grid-template-columns: minmax(180px, 240px) minmax(0, 360px);
        justify-content: center;
        width: min(100%, 720px);
        margin: 0 auto;
        padding: 26px 0 40px;
        border-top: 1px solid rgba(255, 255, 255, .2);
        border-left: 0;
        text-align: left;
    }

    .app-alexa-device {
        width: 100%;
    }

    .app-alexa-copy {
        align-self: center;
        margin-top: 0;
    }

    .app-alexa-label {
        justify-content: flex-start;
    }

    .app-alexa-copy strong,
    .app-alexa-copy small {
        margin-right: 0;
        margin-left: 0;
    }

    .main-nav {
        justify-content: center;
        gap: 8px 10px;
        margin-right: 0;
        margin-left: 0;
        font-size: 13px;
    }

    .main-nav a {
        padding-inline: 6px;
    }

    .main-nav a + a::before {
        margin-right: 10px;
    }

    .footer-grid {
        grid-template-columns: minmax(170px, .72fr) minmax(230px, 1fr) minmax(326px, 1.05fr);
        gap: 28px;
    }

    .hero-player {
        grid-template-columns: minmax(180px, 1fr) 106px 132px 70px 104px;
        width: min(900px, calc(100% - 40px));
        padding-left: 98px;
    }

    .hero-player-wave {
        width: min(900px, calc(100% - 40px));
    }

    .speaker-thumb {
        left: 22px;
        width: 68px;
    }

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

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

    .header-top {
        display: flex;
        width: calc(100% - 28px);
        min-height: 74px;
        justify-content: flex-end;
        padding: 8px 0;
    }

    .brand {
        left: 0;
        top: 6px;
        width: 140px;
        transform: none;
    }

    .menu-toggle {
        position: relative;
        z-index: 4;
        display: block;
        order: 3;
    }

    .header-store-links {
        position: relative;
        top: auto;
        right: auto;
        order: 2;
        margin-right: 7px;
        transform: none;
    }

    .header-store-links .store-icon,
    .header-store-links .header-social-icon {
        width: 30px;
        height: 30px;
    }

    .header-store-links .store-icon svg,
    .header-store-links .header-social-icon svg {
        width: 17px;
        height: 17px;
    }

    .main-nav {
        position: absolute;
        top: 104px;
        left: -14px;
        right: -14px;
        z-index: 3;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin-right: 0;
        margin-left: 0;
        padding: 12px 18px 18px;
        color: var(--white);
        background: var(--blue-deep);
        box-shadow: 0 18px 34px rgba(0, 18, 48, .24);
        font-size: 14px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity .2s ease, transform .24s ease, visibility .24s;
    }

    .main-nav a {
        width: 100%;
        padding: 12px 8px;
        text-align: center;
    }

    .main-nav a + a::before {
        content: none;
    }

    .main-nav .main-nav-live {
        width: min(100%, 220px);
        margin: 8px auto 0;
        text-align: center;
    }

    .site-header.menu-open .main-nav {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-header.menu-open .menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .site-header.menu-open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .site-header.menu-open .menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .header-stripe {
        height: 5px;
    }

    .hero-showcase {
        --slide-height: clamp(430px, 58vw, 520px);
        min-height: calc(var(--slide-height) + 118px);
    }

    .slide-art {
        border-radius: 0 0 50% 50% / 0 0 12% 12%;
    }

    .slide-copy {
        padding-right: 38%;
    }

    .slide-copy h1 {
        font-size: clamp(36px, 6vw, 46px);
    }

    .slide-control.previous {
        left: 16px;
    }

    .slide-control.next {
        right: 16px;
    }

    .hero-player {
        grid-template-columns: minmax(155px, 1fr) 96px 116px 62px 96px;
        gap: 10px;
        width: calc(100% - 32px);
        min-height: 80px;
        padding: 0 16px 0 142px;
    }

    .hero-player-wave {
        width: calc(100% - 32px);
    }

    .speaker-thumb {
        left: 20px;
        width: 112px;
    }

    .main-play {
        width: 96px;
    }

    .main-play .play-mark {
        border-top-width: 13px;
        border-bottom-width: 13px;
        border-left-width: 20px;
    }

    .news-section {
        padding-top: 52px;
    }

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

    .news-side-slider {
        grid-column: 1;
    }

    .side-news {
        display: grid;
        grid-template-columns: minmax(220px, .72fr) minmax(0, 1fr);
        align-items: center;
        gap: 24px;
    }

    .side-news .news-media {
        margin-bottom: 0;
    }

    .news-header,
    .section-heading,
    .advertise-panel,
    .app-panel {
        display: grid;
        grid-template-columns: 1fr;
        align-items: start;
    }

    .app-section {
        margin-top: 96px;
    }

    .app-panel {
        grid-template-columns: minmax(260px, .78fr) minmax(360px, 1.22fr);
        align-items: center;
        gap: 34px;
    }

    .app-device {
        height: 500px;
        margin-top: -84px;
    }

    .app-copy {
        padding-right: 44px;
    }

    .footer-grid {
        grid-template-columns: minmax(150px, .72fr) minmax(250px, 1.35fr) minmax(165px, .72fr);
        gap: 28px;
    }

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

    .top10-stage { grid-template-columns: 1fr; }
    .top10-feature {
        grid-template-columns: minmax(280px, .85fr) minmax(0, 1fr);
        grid-template-rows: 1fr;
    }
    .top10-feature-cover { min-height: 330px; }
    .top10-feature-copy { display: flex; flex-direction: column; justify-content: center; }

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

    .team-roster {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 24px;
    }
}

@media (max-width: 760px) {
    .container {
        width: calc(100% - 28px);
    }

    .app-section {
        margin-top: 78px;
    }

    .app-panel {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .app-device {
        justify-content: center;
        height: 430px;
        margin-top: -70px;
    }

    .app-copy {
        max-width: 620px;
        padding: 36px 36px 52px;
        text-align: center;
    }

    .app-alexa {
        display: flex;
        grid-column: auto;
        width: min(100%, 420px);
        margin: 0 auto;
        padding: 30px 22px 46px;
        border-top: 1px solid rgba(255, 255, 255, .2);
        text-align: center;
    }

    .app-alexa-device {
        width: min(100%, 250px);
    }

    .app-alexa-label {
        justify-content: center;
    }

    .app-alexa-copy strong,
    .app-alexa-copy small {
        margin-right: auto;
        margin-left: auto;
    }

    .app-copy h2,
    .app-copy > p {
        margin-right: auto;
        margin-left: auto;
    }

    .app-copy h2::after {
        margin-right: auto;
        margin-left: auto;
    }

    .app-downloads {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .app-download-button {
        justify-content: center;
        margin-inline: auto;
    }

    .site-footer {
        padding-top: 42px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 30px;
        padding-bottom: 38px;
        text-align: center;
    }

    .footer-brand img {
        width: min(176px, 54vw);
    }

    .footer-about {
        max-width: 520px;
    }

    .footer-about address {
        justify-content: center;
        text-align: left;
    }

    .footer-social {
        justify-self: center;
    }

    .copyright-grid {
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        min-height: 72px;
        padding-top: 14px;
        padding-bottom: 14px;
        text-align: center;
    }

    .hero-showcase {
        --slide-height: 420px;
        min-height: calc(var(--slide-height) + 248px);
    }

    .slide-art {
        border-radius: 0 0 50% 50% / 0 0 8% 8%;
    }

    .slide-copy {
        justify-content: flex-end;
        padding: 0 38px 98px 0;
    }

    .slide-copy p {
        font-size: 13px;
    }

    .slide-copy h1 {
        font-size: clamp(32px, 9vw, 40px);
    }

    .slide-copy span {
        max-width: 340px;
        font-size: 14px;
    }

    .slide-control {
        top: 50%;
        width: 44px;
    }

    .slide-control.previous {
        left: 10px;
    }

    .slide-control.next {
        right: 10px;
    }

    .hero-player {
        top: calc(var(--slide-height) - 26px);
        grid-template-columns: minmax(0, 1fr) 68px auto minmax(0, 1fr);
        grid-template-areas:
            "program program program program"
            ". play live ."
            "participate participate participate participate";
        gap: 11px 14px;
        width: calc(100% - 28px);
        min-height: 238px;
        padding: 18px 16px 16px;
        border-radius: 26px;
    }

    .hero-player-wave {
        top: calc(var(--slide-height) - 84px);
        width: calc(100% - 28px);
        height: 42px;
    }

    .speaker-thumb {
        left: 18px;
        top: 18px;
        width: 60px;
        transform: none;
    }

    .program-copy {
        grid-area: program;
        min-height: 60px;
        padding-left: 74px;
        padding-right: 0;
        transform: none;
    }

    .hero-program-progress {
        margin-top: 6px;
    }

    .hero-program-progress-track {
        margin: 7px 0 5px;
    }

    .hero-program-progress-details {
        display: flex;
    }

    .program-copy strong,
    .live-copy strong {
        font-size: 19px;
    }

    .program-copy span,
    .live-copy span {
        font-size: 11px;
    }

    .main-play {
        position: relative;
        top: auto;
        left: auto;
        grid-area: play;
        align-self: center;
        justify-self: center;
        width: 68px;
        margin-block: 0;
        transform: none;
    }

    .main-play:hover,
    .main-play:focus-visible {
        transform: scale(1.05);
    }

    .hero-player[data-reveal].is-visible {
        transform: translate(-50%, -10%);
    }

    .live-copy {
        grid-area: live;
        align-self: center;
        justify-self: start;
    }

    .audio-spectrum {
        grid-area: spectrum;
        justify-content: center;
        min-height: 36px;
    }

    .audio-spectrum span {
        width: 5px;
    }

    .feedback-button {
        width: 44px;
        height: 38px;
    }

    .feedback-actions {
        grid-area: feedback;
        justify-content: flex-end;
    }

    .player-whatsapp {
        grid-area: participate;
        min-height: 54px;
    }

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

    .side-news {
        display: flex;
        gap: 0;
    }

    .side-news .news-media {
        margin-bottom: 16px;
    }

    .news-header h2,
    .section-heading h2,
    .advertise-panel h2 {
        font-size: clamp(27px, 8vw, 32px);
    }

    .app-copy h2 {
        font-size: 18px;
    }

    .app-copy > p {
        font-size: 15px;
    }

    .lead-news h3 {
        font-size: clamp(24px, 7vw, 28px);
    }

    .small-news-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .top10-heading { display: grid; gap: 15px; }
    .top10-heading > p { max-width: 500px; }
    .top10-feature { grid-template-columns: 1fr; grid-template-rows: auto auto; }
    .top10-feature-cover { min-height: 0; aspect-ratio: 1.35 / 1; }
    .top10-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .top10-card-cover { aspect-ratio: 1.18 / 1; }
    .top10-card-copy { min-height: 104px; padding: 13px 12px 15px; }
    .top10-card-copy h3 { font-size: 15px; }
    .top10-rank { top: 8px; left: 8px; min-width: 38px; height: 38px; font-size: 16px; }
    .top10-play { opacity: .95; transform: translate(-50%, -50%) scale(.84); }
    .top10-modal-shell > header { padding: 17px 18px; }
    .top10-modal-shell header h3 { font-size: 19px; }
    .top10-modal-shell footer { padding: 12px 18px 15px; }

    .top10-list-heading {
        display: grid;
        align-items: start;
        gap: 12px;
        min-height: 0;
        padding: 24px 20px 22px;
    }

    .top10-list-heading > p {
        max-width: none;
    }

    .top10-track {
        grid-template-columns: 40px 68px minmax(0, 1fr) 36px;
        gap: 10px;
        min-height: 88px;
        padding: 9px 12px 9px 8px;
    }

    .top10-list-item:first-child .top10-track {
        min-height: 94px;
    }

    .top10-list-rank,
    .top10-list-item:first-child .top10-list-rank {
        font-size: 20px;
    }

    .top10-list-cover {
        width: 68px;
    }

    .top10-list-copy strong {
        font-size: 15px;
    }

    .top10-list-copy small {
        font-size: 11px;
    }

    .top10-list-play {
        width: 36px;
    }

    .team-column {
        padding: 25px 20px 20px;
    }

    .team-roster {
        grid-template-columns: 1fr;
    }

    .schedule-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .mini-player {
        grid-template-columns: 44px minmax(0, 1fr) 134px;
        gap: 8px;
        padding: 10px;
        border-radius: 999px;
        width: min(560px, calc(100% - 28px));
    }

    .mini-player-photo { display: none; }

    .mini-player .mini-feedback,
    .mini-player .feedback-status { display: none; }

    .mini-player .mini-play { width: 44px; }
    .mini-player [data-dock-program] { font-size: 14px; }
    .mini-player .player-whatsapp { padding: 8px; gap: 6px; }
    .mini-player .player-whatsapp svg { flex-basis: 22px; width: 22px; height: 22px; }
    .mini-player .player-whatsapp strong { font-size: 12px; }
    .mini-player .player-whatsapp small { font-size: 9px; }
}

@media (max-width: 860px) {
    .whatsapp-section-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .top10-showcase {
        grid-template-columns: 1fr;
    }

    .top10-featured-open {
        height: auto;
        min-height: 0;
        aspect-ratio: 2 / 1;
    }

    .top10-featured-open img {
        min-height: 0;
    }

    .top10-ranking {
        grid-template-rows: repeat(7, minmax(68px, auto));
    }
}

@media (max-width: 600px) {
    .whatsapp-section-heading {
        text-align: center;
    }

    .whatsapp-section-heading h2 {
        margin-inline: auto;
        font-size: clamp(27px, 8vw, 34px);
    }

    .whatsapp-section-action {
        justify-content: center;
    }

    .whatsapp-section-button {
        width: 100%;
        margin-inline: auto;
    }

    .top10-showcase {
        gap: 12px;
        padding: 10px;
    }

    .top10-featured-open {
        aspect-ratio: 16 / 10;
    }

    .top10-featured-rank {
        top: 14px;
        left: 14px;
        min-height: 46px;
        padding-inline: 14px;
    }

    .top10-featured-rank b {
        font-size: 21px;
    }

    .top10-featured-play {
        left: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
    }

    .top10-featured-footer {
        gap: 14px;
        min-height: 106px;
        padding: 17px 16px;
    }

    .top10-featured-copy h2 {
        font-size: 19px;
    }

    .top10-signal {
        display: none;
    }

    .top10-like-featured {
        min-width: 48px;
        height: 48px;
    }

    .top10-ranking-item {
        grid-template-columns: minmax(0, 1fr) 44px;
    }

    .top10-ranking-open {
        grid-template-columns: 30px 52px minmax(0, 1fr);
        gap: 8px;
        padding-left: 4px;
    }

    .top10-ranking-number {
        font-size: 18px;
    }

    .top10-ranking-cover {
        width: 52px;
    }

    .top10-ranking-copy strong {
        font-size: 13px;
    }

    .top10-ranking-item > .top10-like {
        width: 44px;
        min-width: 44px;
        height: 44px;
    }

    .top10-ranking-play {
        display: none;
    }
}

@media (max-width: 520px) {
    .header-store-links .store-icon {
        display: none;
    }

    .header-store-links .header-social-icon {
        width: 40px;
        height: 40px;
    }

    .header-store-links .header-social-icon svg {
        width: 19px;
        height: 19px;
    }
}

@media (max-width: 420px) {
    .app-device {
        height: 360px;
        margin-top: -58px;
    }

    .app-copy {
        padding: 30px 22px 46px;
    }

    .app-download-button {
        width: min(100%, 280px);
    }

    .brand {
        width: 126px;
    }

    .header-store-links {
        gap: 6px;
        margin-right: 6px;
    }

    .header-store-links .store-icon {
        display: none;
    }

    .slide-copy {
        padding-right: 22px;
    }

    .program-copy {
        padding-left: 84px;
    }

    .program-copy strong,
    .live-copy strong {
        font-size: 18px;
    }

    .program-copy span,
    .live-copy span {
        font-size: 10px;
    }

    .top10-track {
        grid-template-columns: 34px 60px minmax(0, 1fr) 32px;
        gap: 8px;
        padding-inline: 6px 9px;
    }

    .top10-list-cover {
        width: 60px;
    }

    .top10-list-play {
        width: 32px;
    }
}

@media (max-width: 360px) {
    .brand {
        width: 100px;
    }

    .header-store-links {
        gap: 4px;
        margin-right: 4px;
    }

    .header-store-links .header-social-icon {
        width: 40px;
        height: 40px;
    }

    .header-store-links .header-social-icon svg {
        width: 17px;
        height: 17px;
    }

    .menu-toggle {
        width: 44px;
        height: 44px;
    }

    .hero-player {
        grid-template-columns: minmax(0, 1fr) 62px auto minmax(0, 1fr);
        gap: 10px 12px;
        padding: 16px 12px 14px;
    }

    .speaker-thumb {
        left: 14px;
        top: 16px;
        width: 60px;
    }

    .program-copy {
        padding-left: 72px;
    }

    .program-copy strong,
    .live-copy strong {
        font-size: 14px;
    }

    .main-play {
        width: 62px;
    }

    .top10-ranking-item {
        grid-template-columns: minmax(0, 1fr) 38px;
    }

    .top10-ranking-open {
        grid-template-columns: 26px 48px minmax(0, 1fr);
        gap: 7px;
    }

    .top10-ranking-cover {
        width: 48px;
    }

    .top10-ranking-play {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }
}
