@media (max-width: 900px) and (orientation: landscape) {
    .container {
        max-width: 100%;
        width: 100%;
        padding: 0 8px;
    }
    .grid-4,
    .grid-6,
    .top-grid,
    .schedule-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    body {
        padding-bottom: 120px;
        font-size: 15px;
    }

    /* Menus e textos mais compactos no landscape */
    .hero-banner {
        padding: 36px 0;
    }

    .hero-banner h1 {
        font-size: 32px;
    }

    .main-nav ul {
        gap: 6px;
        padding: 8px;
    }

    .main-nav a {
        padding: 10px 12px;
    }

    /* Imagens altas reduzem no landscape */
    .banner-slider__item {
        height: clamp(180px, 52vw, 300px);
    }

    .schedule-card__media {
        height: 220px;
    }

    /* Player (mobile landscape): somente controles + volume, lado a lado */
    .fixed-player .player-info {
        display: none;
    }

    .fixed-player .player-content {
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 12px;
    }

    .fixed-player .player-controls {
        flex: 0 0 auto;
        justify-content: flex-start;
        gap: 10px;
    }

    .fixed-player .player-volume {
        flex: 0 0 auto;
        min-width: 180px;
        justify-content: flex-end;
    }
}
/* Single/Post/Page Modern Layout */
.single-section, .page-section {
    padding: 48px 0 32px;
}

.single-article, .page-article {
    max-width: 760px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 38px 36px 32px;
    position: relative;
}

.single-header, .page-header {
    margin-bottom: 28px;
    text-align: center;
}

.single-title, .page-title {
    font-size: 2.3rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.13;
}

.single-meta {
    font-size: 1rem;
    color: var(--text-light);
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    margin-bottom: 0;
}

.single-thumb {
    margin: 0 auto 28px;
    max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    text-align: center;
}

.single-thumb img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
    border-radius: 12px;
}

.single-content, .page-content {
    font-size: 1.13rem;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 32px;
}

.single-footer {
    margin-top: 32px;
    text-align: center;
}

.single-nav {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    font-size: 1.1rem;
}

.single-prev, .single-next {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 900px) {
    .single-article, .page-article {
        padding: 24px 10px 18px;
    }
    .single-title, .page-title {
        font-size: 1.5rem;
    }
    .single-thumb img {
        max-height: 220px;
    }
}
/*
Theme Name: 96 FM Guanambi
Theme URI: https://96fm.com.br
Description: Template moderno para estação de rádio com player fixo no rodapé
Author: Designer WordPress
Version: 1.0
*/

:root {
    --primary-color: #0d213a;
    --primary-color-2: #143556;
    --primary-color-3: #1e4e7a;
    --primary-rgb: 13,33,58;
    --secondary-color: #0a0f17;
    --secondary-rgb: 10,15,23;
    --accent-color: #5a4252;
    --accent-color-2: #ded5d5;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #f5f5f5;
    --white: #ffffff;
    --gradient: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    padding-bottom: 100px;
}

/* Acessibilidade: pular para conteúdo e foco visível (mobile/teclado) */
.skip-link {
    position: absolute;
    left: 12px;
    top: 10px;
    padding: 10px 12px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transform: translateY(-200%);
    transition: transform 0.2s ease;
    z-index: 2000;
}

.skip-link:focus {
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.site-logo {
    font-size: clamp(22px, 3.2vw, 32px);
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-logo .custom-logo {
    max-height: 56px;
    width: auto;
    display: block;
}

.site-logo .custom-logo-link {
    display: inline-flex;
    align-items: center;
}

.site-logo .frequency {
    font-size: clamp(30px, 4.4vw, 48px);
    font-weight: 900;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 22px;
}

.main-nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    transition: all 0.3s;
    padding: 6px 12px;
    border-radius: 25px;
}

.main-nav a:hover {
    background: rgba(255,255,255,0.2);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.08);
    color: var(--white);
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.menu-toggle i {
    font-size: 18px;
}

.menu-toggle.active {
    background: rgba(255,255,255,0.14);
}

/* Hero Banner */
.hero-banner {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}



.hero-content {
    position: relative;
    z-index: 1;
}

.hero-banner h1 {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-banner p {
    font-size: 20px;
    margin-bottom: 30px;
}

/* Section Titles */
.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0 20px;
}

.section-title h2 {
    font-size: clamp(20px, 2.6vw, 28px);
    font-weight: 700;
    color: var(--secondary-color);
    position: relative;
    padding-left: 15px;
}

.section-title h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 3px;
}

.view-all {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
}

.view-all:hover {
    transform: translateX(5px);
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.grid-4 {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.grid-6 {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

/* Banner Slider (Top) */
.banner-slider {
    padding: 0;
    background: var(--bg-color);
}

.banner-slider__viewport {
    border-radius: 0;
    overflow: hidden;
    background: var(--secondary-color);
    position: relative;
}

.banner-slider__track {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease;
}

.banner-slider__item {
    min-width: 100%;
    position: relative;
    height: clamp(220px, 56vw, 420px);
    background: var(--secondary-color);
}

.banner-slider__link {
    display: block;
    color: inherit;
    text-decoration: none;
    height: 100%;
}

.banner-slider__media {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
}

.banner-slider__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.banner-slider__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px 30px;
    background: rgba(10,15,23,0.72);
    color: var(--white);
}

.banner-slider__caption h2 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 6px;
}

.banner-slider__caption p {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
}

.banner-slider__dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 12px;
    display: flex;
    justify-content: center;
    gap: 8px;
    pointer-events: auto;
}

/* Audiência (Acessos por mês) */
.audience-highlight {
    background: var(--primary-color);
    color: var(--white);
    border-radius: 14px;
    padding: 16px 18px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}

.audience-highlight__value {
    font-weight: 900;
    font-size: 26px;
    letter-spacing: 0.2px;
}

.audience-highlight__label {
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
}

.audience-stats__empty {
    background: var(--white);
    border-radius: 12px;
    padding: 16px;
    color: var(--text-light);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.audience-stats__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 18px;
    margin-top: 10px;
}

.audience-stats__table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.audience-stats__table th,
.audience-stats__table td {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 14px;
}

.audience-stats__table thead th {
    background: rgba(10,15,23,0.06);
    color: var(--secondary-color);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-size: 12px;
}

.audience-stats__table tr:last-child td {
    border-bottom: 0;
}

.audience-stats__table .is-right {
    text-align: right;
}

.audience-stats__bars {
    background: var(--white);
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.audience-stats__bar {
    display: grid;
    grid-template-columns: 70px 1fr 80px;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.audience-stats__bar:last-child {
    border-bottom: 0;
}

.audience-stats__bar-label {
    font-weight: 800;
    color: var(--primary-color);
    font-size: 13px;
}

.audience-stats__bar-track {
    height: 10px;
    background: rgba(10,15,23,0.10);
    border-radius: 999px;
    overflow: hidden;
}

.audience-stats__bar-fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: 999px;
}

.audience-stats__bar-val {
    text-align: right;
    font-weight: 800;
    color: var(--text-light);
    font-size: 13px;
}

.audience-stats__source {
    margin-top: 10px;
    font-size: 13px;
    color: var(--text-light);
}

.audience-stats__source a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
}

.audience-stats__source a:hover {
    text-decoration: underline;
}

/* Programação (Schedule) */
.schedule {
    margin-top: 10px;
}

.schedule-tabs {
    display: flex;
    background: var(--primary-color);
    border-radius: 10px;
    overflow: hidden;
}

.schedule-tab {
    flex: 1;
    padding: 16px 10px;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.85);
    font-weight: 700;
    cursor: pointer;
    position: relative;
}

.schedule-tab + .schedule-tab {
    border-left: 1px solid rgba(255,255,255,0.12);
}

.schedule-tab.is-active {
    color: var(--accent-color);
}

.schedule-panels {
    margin-top: 24px;
}

.schedule-panel {
    display: none;
}

.schedule-panel.is-active {
    display: block;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 22px;
}

.schedule-card {
    background: transparent;
}

.schedule-card__media {
    position: relative;
    height: 330px;
    border-radius: 12px;
    overflow: hidden;
    background: #0b1626;
}

.schedule-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.schedule-card__time {
    position: absolute;
    left: 18px;
    bottom: 18px;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
    letter-spacing: 0.5px;
}

.schedule-card__time .t-start,
.schedule-card__time .t-end {
    font-size: 34px;
    line-height: 1.05;
}

.schedule-card__time .t-mid {
    font-size: 22px;
    opacity: 0.95;
    margin: 6px 0;
}

.schedule-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 6px 0;
}

.schedule-card__title {
    font-size: 20px;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1.2;
}

.schedule-card__host {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 120px;
    justify-content: flex-end;
}

.schedule-card__host .host-avatar {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: cover;
    background: #e9eef6;
}

.schedule-card__host .host-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 140px;
}

.schedule-empty {
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    color: var(--text-light);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    grid-column: 1 / -1;
}

@media (max-width: 768px) {
    .schedule-tabs {
        overflow-x: auto;
    }
    .schedule-tab {
        min-width: 140px;
        flex: 0 0 auto;
    }

    /* Programação em 2 colunas no mobile */
    .schedule-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
    .schedule-card__media {
        height: 220px;
    }
    .schedule-card__time .t-start,
    .schedule-card__time .t-end {
        font-size: 28px;
    }

    .schedule-card__title {
        font-size: 18px;
    }
}

.banner-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: 2px solid rgba(255,255,255,0.35);
    cursor: pointer;
}

.banner-slider__dot.is-active {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

@media (max-width: 768px) {
    .banner-slider__item {
        height: clamp(200px, 60vw, 320px);
    }

    .banner-slider__caption h2 {
        font-size: 22px;
    }

    .banner-slider__caption p {
        font-size: 14px;
    }
}

/* Card Styles */
.card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s;
    cursor: pointer;
}

/* Card clicável (quando o card é um <a>) */
.card.card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.card-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: var(--secondary-color);
}

.card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.card:hover .play-overlay {
    opacity: 1;
}

/* Top Músicas (Grade numerada) */
.top-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
    margin-bottom: 40px;
}

.top-grid__item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.top-grid__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.14);
}

.top-grid__media {
    position: relative;
    display: block;
    height: 0;
    padding-top: 100%;
    background: var(--secondary-color);
    text-decoration: none;
}

.top-grid__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.top-grid__rank {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(10,15,23,0.78);
    color: var(--white);
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 900;
    letter-spacing: 0.3px;
}

.top-grid__meta {
    padding: 14px 14px 16px;
}

.top-grid__title {
    font-weight: 900;
    color: var(--secondary-color);
    line-height: 1.2;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.top-grid__title a {
    color: inherit;
    text-decoration: none;
}

.top-grid__artist {
    margin-top: 6px;
    color: var(--text-light);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.top-grid__empty {
    background: var(--white);
    border-radius: 12px;
    padding: 18px;
    color: var(--text-light);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    grid-column: 1 / -1;
}

/* Locutores (estilo "Our Expert") */
.experts-section {
    background: var(--primary-color);
    padding: 70px 0;
    margin-top: 60px;
}

/* Arquivo de locutores usa o mesmo card, mas em fundo claro */
.archive-locutor .expert-card__name {
    color: var(--primary-color);
}

.archive-locutor .expert-card__role {
    color: var(--text-light);
}

.archive-locutor .expert-card__avatar {
    background: rgba(0,0,0,0.06);
}

.archive-locutor .experts-empty {
    color: var(--text-color);
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.experts-header {
    text-align: center;
    margin-bottom: 34px;
}

.experts-kicker {
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.experts-title {
    color: var(--white);
    font-size: 46px;
    font-weight: 900;
    line-height: 1.1;
}

.experts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 26px;
    align-items: start;
}

.expert-card {
    text-align: center;
}

.expert-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.expert-card__avatar {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 18px;
    background: rgba(255,255,255,0.08);
}

.expert-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.expert-card__name {
    color: var(--white);
    font-weight: 900;
    font-size: 20px;
    margin-bottom: 6px;
}

.expert-card__role {
    color: rgba(255,255,255,0.75);
    font-weight: 600;
}

.experts-cta {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.experts-empty {
    grid-column: 1 / -1;
    color: rgba(255,255,255,0.75);
    background: rgba(255,255,255,0.06);
    padding: 18px;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .experts-title {
        font-size: 34px;
    }
    .expert-card__avatar {
        width: 170px;
        height: 170px;
    }
}

.play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
}

.card-content {
    padding: 15px;
}

.card-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--secondary-color);
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-subtitle {
    font-size: 14px;
    color: var(--text-light);
    display: -webkit-box;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-stats {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 10px;
}

/* Featured Carousel */
.featured-carousel {
    position: relative;
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    min-width: 100%;
    height: 400px;
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
}

.carousel-caption h3 {
    font-size: 32px;
    margin-bottom: 10px;
}

/* Player Fixo no Rodapé */
.fixed-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(var(--secondary-rgb), 0.92);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 9999;
    padding: 15px 0;
}

.player-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: nowrap;
}

.player-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1 1 320px;
    min-width: 0;
}

.fixed-player .now-playing {
    min-width: 0;
}

.fixed-player .song-title,
.fixed-player .artist {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-artwork {
    width: clamp(54px, 6vw, 70px);
    height: clamp(54px, 6vw, 70px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    animation: pulse 2s ease-in-out infinite;
}

.player-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 10px rgba(var(--primary-rgb), 0.3); }
    50% { box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.6); }
}

.now-playing {
    color: var(--white);
}

.now-playing .label {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 1px;
}

.now-playing .song-title {
    font-size: 16px;
    font-weight: 700;
    margin: 2px 0;
}

.now-playing .artist {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 0 0 auto;
    justify-content: center;
}

.control-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(var(--primary-rgb), 0.3);
}

.control-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(var(--primary-rgb), 0.5);
    background: var(--primary-color-3);
}

.control-btn.play-pause {
    width: 70px;
    height: 70px;
    font-size: 32px;
}

.player-volume {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 1 220px;
    min-width: 160px;
    color: var(--white);
}

@media (max-width: 1024px) {
    .player-content {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .player-info {
        flex: 1 1 420px;
        justify-content: center;
    }

    .player-controls {
        flex: 0 0 auto;
    }

    .player-volume {
        flex: 1 1 320px;
        justify-content: center;
    }
}

.volume-icon {
    font-size: 20px;
}

.volume-slider {
    flex: 1;
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,0.2);
    position: relative;
    cursor: pointer;
}

.volume-fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: 2px;
    width: 70%;
    position: relative;
}

.volume-fill::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Footer */
.site-footer {
    background: var(--primary-color);
    color: rgba(255,255,255,0.8);
    padding: 40px 0 120px;
    margin-top: 60px;
}

/* Widgets do rodapé (dinâmico via Aparência > Widgets) */
.footer-widget .widget-title {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-widget ul {
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-widget a:hover {
    color: var(--primary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.radio-contact {
    list-style: none;
}

.radio-contact a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.radio-contact a:hover {
    color: var(--primary-color);
}

.newsletter-message {
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    min-height: 20px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        gap: 12px;
        padding: 12px 0;
    }

    .site-logo .custom-logo {
        max-height: 42px;
    }

    .menu-toggle {
        display: inline-flex;
        margin-left: auto;
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .header-actions {
        width: 100%;
        order: 3;
    }

    .header-actions .btn {
        width: 100%;
        padding: 10px 14px;
        border-radius: 12px;
        font-size: 0.95rem;
    }

    .main-nav {
        width: 100%;
        order: 2;
        display: none;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 6px;
        background: rgba(10,15,23,0.55);
        border: 1px solid rgba(255,255,255,0.12);
        border-radius: 14px;
        padding: 8px;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }

    .main-nav a {
        display: block;
        padding: 10px 12px;
        border-radius: 12px;
        font-size: 0.95rem;
    }

    .hero-banner h1 {
        font-size: 32px;
    }

    body {
        font-size: 15px;
    }

    .btn,
    .btn-primary,
    .btn-secondary {
        padding: 9px 16px;
        border-radius: 18px;
        font-size: 0.95rem;
    }

    .player-content {
        flex-wrap: wrap;
        gap: 15px;
    }

    .player-info {
        flex: 0 0 100%;
    }

    .player-controls {
        gap: 10px;
    }

    .control-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .control-btn.play-pause {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .player-volume {
        flex: 0 0 100%;
    }

    body {
        padding-bottom: 180px;
    }

    .audience-stats__grid {
        grid-template-columns: 1fr;
    }

    .audience-highlight {
        flex-direction: column;
        align-items: flex-start;
    }

    .audience-highlight__value {
        font-size: 24px;
    }

    .audience-stats__bar {
        grid-template-columns: 64px 1fr 72px;
    }

    /* Home: grids mais confortáveis no mobile */
    .grid-4 {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }

    .top-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .top-grid__rank {
        top: 10px;
        left: 10px;
        padding: 5px 9px;
        font-size: 13px;
    }

    .top-grid__meta {
        padding: 12px 12px 14px;
    }

    /* Programação: footer do card quebra melhor */
    .schedule-card__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .schedule-card__host {
        justify-content: flex-start;
        min-width: 0;
    }

    .schedule-card__host .host-name {
        max-width: 240px;
    }

    /* Locutores (Experts): menos respiro */
    .experts-section {
        padding: 54px 0;
        margin-top: 44px;
    }
}

@media (max-width: 520px) {
    .site-logo {
        font-size: 24px;
    }
    .site-logo .custom-logo {
        max-height: 36px;
    }
}

@media (max-width: 520px) {
    .container {
        padding: 0 16px;
    }

    .section-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .banner-slider__item {
        height: clamp(190px, 62vw, 280px);
    }

    .banner-slider__caption {
        padding: 18px 16px;
    }

    .banner-slider__caption h2 {
        font-size: 18px;
    }

    .banner-slider__caption p {
        font-size: 13px;
    }

    .top-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .top-grid__title {
        font-size: 14px;
    }

    .top-grid__artist {
        font-size: 13px;
    }

    /* Programação e Notícias em 2 colunas no celular */
    .schedule-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .schedule-card__media {
        height: 190px;
    }

    .schedule-card__time {
        left: 12px;
        bottom: 12px;
    }

    .schedule-card__time .t-start,
    .schedule-card__time .t-end {
        font-size: 22px;
    }

    .schedule-card__time .t-mid {
        font-size: 16px;
        margin: 4px 0;
    }

    .schedule-card__title {
        font-size: 16px;
    }

    .news-section .grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .news-section .card-content {
        padding: 12px;
    }

    .news-section .card-title {
        font-size: 14px;
    }

    .news-section .card-subtitle {
        font-size: 12px;
    }

    /* Player: bem compacto */
    .fixed-player {
        padding: 10px 0;
    }

    /* No mobile: apenas controles + volume */
    .player-info {
        display: none;
    }

    .player-content {
        gap: 12px;
        justify-content: space-between;
    }

    .player-controls {
        gap: 8px;
        flex: 0 0 auto;
    }

    .control-btn {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .control-btn.play-pause {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }

    /* Esconde anterior/próxima pra caber melhor */
    #prev-btn,
    #next-btn {
        display: none;
    }

    /* Volume sempre visível no mobile */
    .player-volume {
        display: flex;
        flex: 0 0 160px;
        gap: 10px;
        justify-content: flex-end;
    }

    .player-volume .volume-icon {
        font-size: 18px;
    }

    .player-volume .volume-slider {
        width: 110px;
    }

    .player-volume .volume-fill::after {
        width: 10px;
        height: 10px;
        right: -5px;
    }

    body {
        padding-bottom: 120px;
    }
}

/* Locutores (Experts) em 2 colunas no mobile */
@media (max-width: 768px) {
    .experts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .expert-card__avatar {
        width: 140px;
        height: 140px;
    }

    .expert-card__name {
        font-size: 16px;
    }
}

@media (max-width: 520px) {
    .experts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .expert-card__avatar {
        width: 120px;
        height: 120px;
    }

    .expert-card__role {
        font-size: 12px;
    }
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.card {
    animation: fadeIn 0.5s ease-out;
}

/* Loading */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Badges */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-live {
    background: #ff0000;
    color: var(--white);
    animation: pulse-live 2s ease-in-out infinite;
}

@keyframes pulse-live {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.badge-new {
    background: var(--accent-color);
    color: var(--secondary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
}


.btn-primary {
    background: #5a4252;
    color: var(--white);
    box-shadow: 0 4px 10px rgba(90,66,82,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(90,66,82,0.5);
    background: #473543;
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}
