/* ==================================================
   CONFIGURAÇÕES GERAIS
================================================== */

:root {
    --red: #ef2638;
    --red-dark: #bd1729;
    --ink: #101116;
    --muted: #747783;
    --paper: #f6f6f8;
    --lime: #d9fb3f;
    --line: #e8e8eb;
    --purple: #64338d;
    --purple-dark: #251340;
    --blue: #1767b7;
    --orange: #ed7a18;
    --green: #18975e;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: Montserrat, Arial, sans-serif;
    background: #fff;
}

button {
    font: inherit;
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1160px, calc(100% - 40px));
    margin: auto;
}


/* ==================================================
   TOPO
================================================== */

.top {
    background: var(--ink);
    color: #fff;
    font-size: 12px;
}

.top .container {
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top small {
    opacity: .65;
}

.live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.1px;
}

.dot {
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 0 rgba(217, 251, 63, .6);
    animation: pulse 1.6s infinite;
}

@keyframes pulse {
    70% {
        box-shadow: 0 0 0 8px transparent;
    }

    100% {
        box-shadow: 0 0 0 0 transparent;
    }
}


/* ==================================================
   CABEÇALHO
================================================== */

header {
    height: 78px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid #f0f0f1;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.brand {
    font: 900 24px/1 'Space Grotesk';
    letter-spacing: -1.8px;
}

.brand b {
    color: var(--red);
}

.links {
    display: flex;
    gap: 22px;
    font-size: 11px;
    font-weight: 800;
}

.links a {
    transition: .2s;
}

.links a:hover {
    color: var(--red);
}

.listen {
    border: 0;
    border-radius: 100px;
    padding: 13px 18px;
    background: var(--red);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .5px;
    box-shadow: 0 8px 20px #ef26384a;
}


/* ==================================================
   HERO
================================================== */

.hero {
    color: #fff;
    min-height: 530px;
    position: relative;
    overflow: hidden;
    background: #251340;
    isolation: isolate;
}

.hero-carousel {
    position: relative;
    min-height: 530px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .7s ease;
    background-position: center;
    background-size: cover;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        #1d1038 0%,
        #27124de8 38%,
        #33116b8c 64%,
        #120a2970 100%
    );
}

.hero-slide:nth-child(1) {
    background-image: url('https://images.unsplash.com/photo-1598488035139-bdbb2231ce04?auto=format&fit=crop&w=1800&q=85');
}

.hero-slide:nth-child(2) {
    background-image: url('https://images.unsplash.com/photo-1516280440614-37939bbacd81?auto=format&fit=crop&w=1800&q=85');
}

.hero-slide:nth-child(3) {
    background-image: url('https://images.unsplash.com/photo-1493225457124-a3eb161ffa5f?auto=format&fit=crop&w=1800&q=85');
}

.hero .container {
    height: 530px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 650px;
}

.eyebrow {
    color: var(--lime);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.7px;
}

.hero h1 {
    max-width: 680px;
    margin: 13px 0;
    font: 900 clamp(42px, 6vw, 74px)/.92 'Space Grotesk';
    letter-spacing: -4px;
}

.hero p {
    max-width: 520px;
    color: #ffffffdb;
    line-height: 1.7;
    font-size: 14px;
}

.hero .listen {
    margin-top: 20px;
    padding: 16px 25px;
}

.hero-dots {
    position: absolute;
    z-index: 3;
    bottom: 68px;
    left: max(20px, calc((100% - 1160px) / 2));
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-dots button {
    display: block;
    width: 34px;
    min-width: 34px;
    height: 4px;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 4px;
    background: #ffffff66;
    appearance: none;
}

.hero-dots button.active {
    background: var(--lime);
}


/* ==================================================
   PLAYER
================================================== */

.player-wrap {
    margin-top: -44px;
    position: relative;
    z-index: 10;
}

.player {
    background: #fff;
    border-radius: 22px;
    padding: 18px 25px;
    box-shadow: 0 20px 50px #17122f2b;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: center;
}

.play {
    width: 64px;
    height: 64px;
    border: 0;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-size: 22px;
    box-shadow: 0 10px 22px #ef26384a;
}

.playing .play {
    background: #542881;
}

.now {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.5px;
    color: var(--red);
}

.track {
    font-size: 19px;
    font-weight: 900;
    margin: 4px 0;
}

.sub {
    font-size: 11px;
    color: var(--muted);
}

.fm {
    text-align: right;
}

.fm strong {
    display: block;
    color: #542881;
    font: 900 30px/1 'Space Grotesk';
    letter-spacing: -2px;
}

.fm span {
    font-size: 10px;
    font-weight: 800;
    color: var(--muted);
}


/* ==================================================
   PUBLICIDADE
================================================== */

.ad-label {
    font-size: 9px;
    letter-spacing: 1.2px;
    font-weight: 900;
    color: #8a8791;
}

.sponsor-strip {
    padding: 28px 0;
    background: #fff;
}

.sponsor-box {
    min-height: 104px;
    border: 1px dashed #c9c7ce;
    border-radius: 17px;
    background: linear-gradient(110deg, #fafafb, #f2f1f5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
    color: #7d7984;
}

.sponsor-box strong {
    display: block;
    color: #30283c;
    font: 900 18px 'Space Grotesk';
    margin: 4px 0;
}

.sponsor-box span {
    font-size: 10px;
}

.sponsor-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: #542881;
    color: #fff;
    font-weight: 900;
}


/* ==================================================
   PROGRAMAÇÃO
================================================== */

.schedule {
    padding: 85px 0 75px;
    background: var(--paper);
}

.heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 28px;
}

.heading h2 {
    margin: 6px 0 0;
    font: 900 clamp(31px, 4vw, 48px)/.92 'Space Grotesk';
    letter-spacing: -2.8px;
}

.heading p {
    font-size: 13px;
    color: var(--muted);
    max-width: 400px;
    line-height: 1.6;
}

.days {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.day {
    border: 1px solid transparent;
    border-radius: 50px;
    padding: 10px 14px;
    background: #fff;
    color: #777;
    font-size: 11px;
    font-weight: 900;
}

.day.active {
    background: #542881;
    color: #fff;
    box-shadow: 0 6px 16px #54288130;
}

.onair {
    display: grid;
    grid-template-columns: minmax(280px, .95fr) 1.25fr;
    gap: 55px;
    align-items: center;
    background: #fff;
    border-radius: 30px;
    padding: 32px 38px;
    margin-bottom: 15px;
    overflow: hidden;
}

.host-visual {
    position: relative;
    width: min(100%, 420px);
    aspect-ratio: 1;
    border-radius: 50%;
    padding: 9px;
    background: conic-gradient(
        from 145deg,
        var(--red) 0 15%,
        #eee 15% 100%
    );
}

.host-visual::before {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: #f4f4f6;
}

.host-photo {
    position: absolute;
    inset: 31px;
    border-radius: 50%;
    background: #2c1b2c;
    display: grid;
    place-items: end center;
    overflow: hidden;
}

.host-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.onair-copy .live {
    color: var(--red);
    margin-bottom: 13px;
}

.onair-copy h3 {
    font: 900 clamp(31px, 4vw, 53px)/.88 'Space Grotesk';
    letter-spacing: -3px;
    margin: 0;
}

.onair-copy h3 span {
    color: var(--red);
}

.show-info {
    font-size: 13px;
    color: #6c6870;
    margin: 14px 0 22px;
}

.progress-meta {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    font-weight: 900;
    color: #826d91;
    margin-bottom: 8px;
}

.progress {
    height: 8px;
    background: #eee9f0;
    border-radius: 99px;
    overflow: hidden;
}

.progress i {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--red), #8936a0);
    border-radius: inherit;
    transition: width .95s linear;
}

.up-next {
    display: grid;
    grid-template-columns: 85px 1fr auto;
    align-items: center;
    gap: 17px;
    padding: 17px 25px;
    background: #fff;
    border-radius: 17px;
    border: 1px solid #eeeeef;
}

.up-time {
    font: 900 19px 'Space Grotesk';
    color: #542881;
}

.up-name {
    font-weight: 900;
    font-size: 14px;
}

.up-name small {
    display: block;
    font-size: 11px;
    color: var(--muted);
    font-weight: 600;
    margin-top: 3px;
}

.next-tag {
    font-size: 10px;
    color: var(--red);
    font-weight: 900;
    letter-spacing: .8px;
}

.list {
    display: grid;
    gap: 9px;
    margin-top: 26px;
}

.show {
    padding: 0;
    display: block;
    overflow: hidden;
    background: #fff;
    border-radius: 14px;
    border: 1px solid transparent;
}

.show.live-show {
    border-color: #ef26385e;
    box-shadow: 0 10px 25px #ef263817;
}

.show button {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 17px 21px;
    display: grid;
    grid-template-columns: 92px 1fr auto;
    gap: 18px;
    align-items: center;
    text-align: left;
    color: inherit;
}

.show time {
    font-size: 12px;
    font-weight: 900;
    color: #542881;
}

.show-main {
    display: flex;
    align-items: center;
    gap: 10px;
}

.show strong {
    font-size: 14px;
}

.show small {
    display: block;
    font-size: 11px;
    color: var(--muted);
    margin-top: 3px;
}

.mini-host {
    width: 34px;
    height: 34px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px #0002;
}

.accordion-icon {
    font-size: 22px;
    color: #542881;
    line-height: 1;
    transition: transform .28s;
}

.show.open .accordion-icon {
    transform: rotate(180deg);
}

.show-detail {
    display: grid;
    grid-template-columns: 92px 1fr auto;
    gap: 18px;
    align-items: center;
    max-height: 0;
    padding: 0 21px;
    opacity: 0;
    overflow: hidden;
    transition: max-height .32s ease, padding .32s ease, opacity .22s;
}

.show.open .show-detail {
    max-height: 115px;
    padding: 0 21px 19px;
    opacity: 1;
}

.show-description {
    font-size: 11px;
    line-height: 1.55;
    color: var(--muted);
    max-width: 540px;
}

.show-detail strong {
    color: var(--red);
    font-size: 11px;
}


/* ==================================================
   NOTÍCIAS — NOVA SEÇÃO AMPLIADA
================================================== */

.news {
    padding: 80px 0 90px;
    background: #fff;
}

.news-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
    margin-bottom: 22px;
}

.news-head h2 {
    font: 900 clamp(31px, 4vw, 48px)/.92 'Space Grotesk';
    letter-spacing: -2.8px;
    margin: 6px 0 0;
}

.more {
    border: 1px solid var(--red);
    padding: 12px 17px;
    border-radius: 99px;
    color: var(--red);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .5px;
    transition: .2s;
}

.more:hover {
    color: #fff;
    background: var(--red);
}


/* CATEGORIAS */

.news-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.news-category-button {
    border: 1px solid var(--line);
    background: #fff;
    color: #686871;
    border-radius: 100px;
    padding: 10px 15px;
    font-size: 10px;
    font-weight: 900;
    transition: .2s;
}

.news-category-button:hover,
.news-category-button.active {
    color: #fff;
    background: var(--red);
    border-color: var(--red);
}


/* PRIMEIRO BLOCO DE NOTÍCIAS */

.news-featured-grid {
    display: grid;
    grid-template-columns: 1.45fr .75fr .75fr;
    grid-template-rows: repeat(2, 210px);
    gap: 16px;
    margin-bottom: 28px;
}

.news-featured {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    color: #fff;
    min-height: 210px;
    background: #30214e;
    isolation: isolate;
}

.news-featured.main {
    grid-row: 1 / 3;
}

.news-featured img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.news-featured:hover img {
    transform: scale(1.05);
}

.news-featured::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(
        to top,
        rgba(9, 7, 15, .94) 0%,
        rgba(9, 7, 15, .35) 55%,
        rgba(9, 7, 15, .08) 100%
    );
}

.news-featured-content {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 20px;
}

.news-featured.main .news-featured-content {
    left: 30px;
    right: 30px;
    bottom: 28px;
}

.news-tag {
    display: inline-flex;
    width: max-content;
    padding: 6px 9px;
    border-radius: 100px;
    color: #17151b;
    background: var(--lime);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.news-featured h3 {
    margin: 9px 0 6px;
    font: 900 17px/1.08 'Space Grotesk';
    letter-spacing: -.5px;
}

.news-featured.main h3 {
    font-size: clamp(28px, 3.5vw, 42px);
    letter-spacing: -1.7px;
}

.news-featured p {
    display: none;
    color: #ffffffbf;
    font-size: 11px;
    line-height: 1.55;
    margin: 8px 0 0;
}

.news-featured.main p {
    display: block;
    max-width: 550px;
}

.news-meta {
    color: #ffffff9e;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .4px;
}


/* GRADE DE MAIS NOTÍCIAS */

.more-news-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 42px 0 20px;
}

.more-news-title h3 {
    margin: 0;
    white-space: nowrap;
    font: 900 20px 'Space Grotesk';
    letter-spacing: -.7px;
}

.more-news-title::after {
    content: "";
    height: 1px;
    width: 100%;
    background: var(--line);
}

.news-list-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 17px;
}

.news-card {
    border: 1px solid var(--line);
    border-radius: 17px;
    overflow: hidden;
    background: #fff;
    transition: transform .25s, box-shadow .25s;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(20, 15, 30, .09);
}

.news-card-image {
    height: 150px;
    overflow: hidden;
    background: #eee;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.news-card:hover .news-card-image img {
    transform: scale(1.05);
}

.news-card-content {
    padding: 17px;
}

.news-card-category {
    display: block;
    margin-bottom: 7px;
    color: var(--red);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .9px;
    text-transform: uppercase;
}

.news-card h3 {
    margin: 0;
    font: 900 16px/1.18 'Space Grotesk';
    letter-spacing: -.4px;
}

.news-card p {
    margin: 9px 0 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.55;
}

.news-card-date {
    display: block;
    margin-top: 13px;
    color: #a0a0a7;
    font-size: 8px;
    font-weight: 700;
}


/* TICKER */

.ticker {
    margin-top: 28px;
    background: #15151b;
    color: #fff;
    border-radius: 12px;
    padding: 13px 18px;
    display: flex;
    gap: 14px;
    overflow: hidden;
    white-space: nowrap;
    font-size: 11px;
}

.ticker b {
    color: var(--lime);
    letter-spacing: 1px;
    font-size: 10px;
}

.ticker span {
    color: #ffffffb5;
}


/* ==================================================
   DESTAQUES DA RÁDIO — AGORA ABAIXO DAS NOTÍCIAS
================================================== */

.about {
    padding: 85px 0 45px;
    background: var(--paper);
}

.program-carousel {
    position: relative;
    overflow: hidden;
    margin-top: 26px;
}

.program-track {
    display: flex;
    gap: 16px;
    transition: transform .6s cubic-bezier(.22, .61, .36, 1);
}

.program-slide {
    flex: 0 0 calc((100% - 32px) / 3);
    min-height: 320px;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    padding: 23px;
    color: #fff;
    background: #352060;
    isolation: isolate;
}

.program-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(10deg, #0d0b16 4%, transparent 65%);
    z-index: -1;
}

.program-slide img {
    position: absolute;
    z-index: -2;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-slide .program-time {
    font-size: 10px;
    letter-spacing: .6px;
    font-weight: 900;
    background: var(--lime);
    color: #1a1820;
    padding: 7px 9px;
    border-radius: 99px;
    display: inline-block;
}

.program-slide .program-copy {
    position: absolute;
    left: 23px;
    right: 23px;
    bottom: 22px;
}

.program-slide h3 {
    font: 900 26px/.95 'Space Grotesk';
    letter-spacing: -1.2px;
    margin: 8px 0;
}

.program-slide p {
    font-size: 11px;
    color: #ffffffcf;
    margin: 0;
}

.carousel-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 18px;
}

.carousel-controls small {
    font-size: 11px;
    color: var(--muted);
}

.carousel-buttons {
    display: flex;
    gap: 8px;
}

.carousel-buttons button {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #dbd9df;
    background: #fff;
    color: #542881;
    font-size: 17px;
    font-weight: 900;
}

.carousel-buttons button:hover {
    background: #542881;
    color: #fff;
    border-color: #542881;
}


/* ==================================================
   BANNER PUBLICITÁRIO
================================================== */

.ad-section {
    padding: 45px 0;
    background: var(--paper);
}

.ad-banner {
    min-height: 150px;
    border-radius: 21px;
    display: grid;
    place-items: center;
    text-align: center;
    color: #fff;
    background: linear-gradient(110deg, #17111f, #542881 52%, #ef2638);
    position: relative;
    overflow: hidden;
}

.ad-banner::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border: 34px solid #ffffff13;
    border-radius: 50%;
    right: 4%;
    top: -70px;
}

.ad-banner strong,
.ad-banner span {
    position: relative;
}

.ad-banner strong {
    display: block;
    margin: 5px 0;
    font: 900 23px 'Space Grotesk';
}

.ad-banner span {
    font-size: 10px;
    color: #ffffffb9;
}


/* ==================================================
   CTA
================================================== */

.cta-section {
    padding: 80px 0;
    background: #fff;
}

.cta {
    background: linear-gradient(115deg, #25153e, #42228c 56%, #ef2638);
    border-radius: 28px;
    padding: 47px 50px;
    color: #fff;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 35px;
    align-items: center;
    overflow: hidden;
}

.cta h2 {
    font: 900 clamp(30px, 4vw, 47px)/.95 'Space Grotesk';
    letter-spacing: -2px;
    margin: 8px 0;
}

.cta p {
    margin: 0;
    color: #ffffffbd;
    font-size: 13px;
}

.cta .listen {
    background: var(--lime);
    color: #18151b;
    white-space: nowrap;
}


/* ==================================================
   RODAPÉ
================================================== */

.footer {
    background: #101116;
    color: #fff;
    padding: 55px 0 27px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 28px;
}

.footer .brand {
    margin-bottom: 10px;
}

.footer p {
    color: #ffffff8c;
    font-size: 11px;
    line-height: 1.6;
    margin: 0;
    max-width: 260px;
}

.footer h4 {
    font-size: 11px;
    color: var(--lime);
    letter-spacing: 1px;
    margin: 5px 0 15px;
}

.footer a {
    display: block;
    font-size: 11px;
    color: #ffffff9e;
    margin: 10px 0;
}

.footer a:hover {
    color: #fff;
}

.copyright {
    border-top: 1px solid #ffffff15;
    margin-top: 35px;
    padding-top: 20px;
    text-align: center;
    color: #ffffff70;
    font-size: 10px;
}


/* ==================================================
   RESPONSIVO
================================================== */

@media (max-width: 900px) {

    .news-featured-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 400px 220px 220px;
    }

    .news-featured.main {
        grid-column: 1 / 3;
        grid-row: 1;
    }

    .news-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 720px) {

    .container {
        width: min(100% - 28px, 1160px);
    }

    .links {
        display: none;
    }

    .top small {
        display: none;
    }

    .top .container {
        justify-content: center;
    }

    .hero .container {
        padding: 70px 0;
    }

    .hero-dots {
        bottom: 65px;
        left: 20px;
    }

    .player {
        padding: 15px;
        grid-template-columns: auto 1fr;
    }

    .fm {
        display: none;
    }

    .schedule {
        padding: 65px 0;
    }

    .heading,
    .news-head {
        display: block;
    }

    .heading p {
        margin-top: 14px;
    }

    .news-head .more {
        display: inline-block;
        margin-top: 20px;
    }

    .onair {
        grid-template-columns: 1fr;
        padding: 25px;
        gap: 25px;
    }

    .host-visual {
        max-width: 285px;
        margin: auto;
    }

    .onair-copy {
        text-align: center;
    }

    .news-featured-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .news-featured.main {
        grid-column: auto;
        grid-row: auto;
        min-height: 400px;
    }

    .news-featured:not(.main) {
        min-height: 250px;
    }

    .news-featured.main h3 {
        font-size: 29px;
    }

    .news-list-grid {
        grid-template-columns: 1fr;
    }

    .news-card {
        display: grid;
        grid-template-columns: 125px 1fr;
    }

    .news-card-image {
        height: 100%;
        min-height: 155px;
    }

    .program-slide {
        flex-basis: 85vw;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta {
        grid-template-columns: 1fr;
        padding: 32px 26px;
    }

    .cta .listen {
        width: max-content;
    }

    .show button {
        grid-template-columns: 70px 1fr auto;
        padding: 15px;
    }

    .show-detail {
        grid-template-columns: 70px 1fr;
        padding: 0 15px;
    }

    .show.open .show-detail {
        padding: 0 15px 16px;
    }

    .show-detail strong {
        display: none;
    }

    .up-next {
        grid-template-columns: 62px 1fr;
    }

    .next-tag {
        display: none;
    }

}

/* Páginas internas e estados dinâmicos */
[hidden]{display:none!important}.empty-state{padding:24px;border:1px dashed var(--line);border-radius:14px;color:var(--muted);text-align:center}.page{padding-top:70px;padding-bottom:90px;min-height:55vh}.page>h1{font:900 clamp(36px,5vw,62px)/.95 'Space Grotesk';letter-spacing:-3px}.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.card{overflow:hidden;border:1px solid var(--line);border-radius:18px;background:#fff}.card img{width:100%;height:220px;object-fit:cover}.card>div{padding:20px}.card h2{font:900 22px/1.05 'Space Grotesk'}.article{max-width:850px}.article>img{width:100%;max-height:520px;object-fit:cover;border-radius:24px;margin:25px 0}.article>div{font-size:16px;line-height:1.8}.contact{display:grid;gap:13px;max-width:700px}.contact input,.contact textarea{width:100%;padding:15px;border:1px solid var(--line);border-radius:10px;font:inherit}.contact textarea{min-height:180px}.schedule-item{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:18px 22px;margin:10px 0;border:1px solid var(--line);border-radius:14px}.sponsor-box,.ad-banner{cursor:pointer}.news-featured>a{display:block;height:100%}
@media(max-width:900px){.grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:720px){.grid{grid-template-columns:1fr}.page{padding-top:45px}.schedule-item{align-items:flex-start;flex-direction:column}}
