@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&display=swap');

:root {
    --sticky-player-height: 47px;
    --menu-purple: #8e2de2;
    --menu-purple-dark: #6f1bb8;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(#4c86a8, #7fb3c9);
}

/* ===== ENQUETE FINAL ===== */

.bloco-enquete-site {
    max-width: 400px; /* 🔥 largura menor */
    margin: 30px 0 30px 20px; /* cola na esquerda */
}



.enquete-box {
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.enquete-box h3 {
    color: #8e24aa;
    margin-bottom: 15px;
    font-size: 20px;
}

.enquete-opcao {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    cursor: pointer;
}

.btn-votar {
    width: 100%;
    padding: 12px;
    background: linear-gradient(90deg,#7b1fa2,#9c27b0);
    color: #fff;
    border: 0;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
    font-weight: bold;
}

.resultado-box {
    margin-top: 20px;
}

.resultado-item {
    margin-bottom: 15px;
}

.resultado-item span {
    font-weight: bold;
}

.barra {
    height: 8px;
    background: #eee;
    border-radius: 5px;
    overflow: hidden;
    margin: 5px 0;
}

.barra div {
    height: 100%;
    background: linear-gradient(90deg,#7b1fa2,#9c27b0);
}
/* =========================
   PLAYER PREMIUM AJUSTADO
========================= */

.top-player {
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
    background: #000;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #0d0d0d;
    box-shadow: inset 0 -8px 18px rgba(255, 255, 255, 0.05);
}

.radio-topbar {
    width: 100%;
    margin: 0;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 4px 6px;
    box-sizing: border-box;
    background: linear-gradient(to bottom, #111 0%, #000 45%, #111 100%);
    box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.05);
}

.rp-left,
.rp-center,
.rp-right {
    display: flex;
    align-items: center;
}

.rp-left {
    gap: 4px;
    flex: 0 0 auto;
    margin-right: 4px;
}

.rp-center {
    flex: 0 0 auto;
    min-width: 0;
    margin: 0;
}

.rp-right {
    gap: 4px;
    flex: 0 0 auto;
    margin-left: 4px;
}

.rp-title-wrap {
    width: 650px;
    max-width: 650px;
    height: 34px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid #ff9d00;
    background:
        radial-gradient(circle at center, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.03) 45%, rgba(0,0,0,0.25) 100%),
        #1d1d1d;
    box-shadow: inset 0 0 10px rgba(255,153,0,0.16);
    box-sizing: border-box;
}

.rp-title-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.rp-title-marquee span {
    display: inline-block;
    padding-left: 100%;
    color: #f1f1f1;
    font-weight: bold;
    font-size: 14px;
    animation: marqueePlayer 15s linear infinite;
}

@keyframes marqueePlayer {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.equalizer {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    width: 90px;
    height: 22px;
}

.equalizer span {
    width: 5px;
    height: 8px;
    background: #ffe500;
    box-shadow: 0 0 4px rgba(255,229,0,0.55);
    animation: none;
}

.equalizer.playing span {
    animation: eqMove 1s infinite ease-in-out;
}

.equalizer.playing span:nth-child(1)  { animation-delay: 0.0s; }
.equalizer.playing span:nth-child(2)  { animation-delay: 0.1s; }
.equalizer.playing span:nth-child(3)  { animation-delay: 0.2s; }
.equalizer.playing span:nth-child(4)  { animation-delay: 0.3s; }
.equalizer.playing span:nth-child(5)  { animation-delay: 0.4s; }
.equalizer.playing span:nth-child(6)  { animation-delay: 0.5s; }
.equalizer.playing span:nth-child(7)  { animation-delay: 0.6s; }
.equalizer.playing span:nth-child(8)  { animation-delay: 0.7s; }
.equalizer.playing span:nth-child(9)  { animation-delay: 0.8s; }
.equalizer.playing span:nth-child(10) { animation-delay: 0.9s; }

@keyframes eqMove {
    0%, 100% { height: 6px; }
    25% { height: 20px; }
    50% { height: 10px; }
    75% { height: 18px; }
}

.rp-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid #18b7ff;
    background: radial-gradient(circle at 30% 30%, #17445a, #0c1820 70%);
    color: #18b7ff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 14px;
    line-height: 1;
    box-shadow: 0 0 8px rgba(24,183,255,0.25);
}

.rp-btn:hover {
    transform: scale(1.04);
}

.rp-mini-btn,
.rp-social {
    height: 30px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    border: 1px solid rgba(255,255,255,0.4);
    background: linear-gradient(to bottom, #3b3b3b, #1b1b1b);
    text-decoration: none;
    box-sizing: border-box;
    white-space: nowrap;
    cursor: pointer;
}

.rp-social {
    width: 30px;
    padding: 0;
}

.rp-social svg {
    width: 15px;
    height: 15px;
    fill: #fff;
}

.rp-social.facebook { background: linear-gradient(to bottom, #4e74c9, #244a9c); }
.rp-social.instagram { background: linear-gradient(to bottom, #d95ca6, #8f2d6f); }
.rp-social.twitter { background: linear-gradient(to bottom, #53c8ff, #1b95d1); }
.rp-social.android { background: linear-gradient(to bottom, #8bd94b, #4e9820); }

.rp-mini-btn:hover,
.rp-social:hover {
    opacity: 0.92;
}

.rp-title-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.rp-title-marquee span {
    display: inline-block;
    white-space: nowrap;
}



/* =========================
   MODAL CÓDIGO PLAYER
========================= */

.player-code-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    display: none !important;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    box-sizing: border-box;
}

.player-code-modal.active {
    display: flex !important;
}

.player-code-box {
    width: 100%;
    max-width: 560px;
    background: #111827;
    border: 1px solid #2c3547;
    border-radius: 10px;
    padding: 20px;
    position: relative;
    box-sizing: border-box;
}

.player-code-box h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #fff;
}

.player-code-box textarea {
    width: 100%;
    min-height: 120px;
    background: #0b1220;
    color: #fff;
    border: 1px solid #2c3547;
    border-radius: 8px;
    padding: 12px;
    box-sizing: border-box;
    resize: vertical;
}

.player-code-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: #8e2de2;
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
}

.copy-player-code-btn {
    margin-top: 12px;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #8e2de2;
    color: #fff;
    cursor: pointer;
}

@media (max-width: 1400px) {
    .rp-title-wrap {
        width: 560px;
        max-width: 560px;
    }
}

@media (max-width: 1100px) {
    :root {
        --sticky-player-height: 86px;
    }

    .radio-topbar {
        flex-wrap: wrap;
        justify-content: center;
    }

    .rp-center {
        order: -1;
        width: 100%;
        justify-content: center;
        margin-bottom: 6px;
    }

    .rp-title-wrap {
        width: 100%;
        max-width: 700px;
    }
}

@media (max-width: 700px) {
    :root {
        --sticky-player-height: 84px;
    }

    .rp-right {
        display: none;
    }

    .equalizer {
        width: 60px;
    }

    .rp-title-marquee span {
        font-size: 13px;
    }

    .rp-title-wrap {
        width: 100%;
        max-width: 100%;
    }
}

/* =========================
   TOPO
========================= */

.topo {
    max-width: 1000px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
}

/* LOGO */
.logo-img {
    width: 220px;
    max-width: 100%;
    display: block;
}

/* DIREITA */
.topo-direita {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    flex-shrink: 0;
    max-width: 450px;
}

/* BANNER */
.banner {
    background: #8e2de2;
    color: #fff;
    padding: 20px 50px;
    border: 3px solid #fff;
    text-align: center;
}

/* DATA */
.data {
    font-size: 13px;
    color: #fff;
}

/* BUSCA */
.busca {
    display: flex;
    gap: 5px;
}

.busca input {
    padding: 6px;
    border: none;
    outline: none;
}

.busca button {
    padding: 6px 10px;
    border: none;
    background: #fff;
    cursor: pointer;
}

/* =========================
   MENU
========================= */

.menu {
    position: sticky;
    top: var(--sticky-player-height);
    z-index: 9998;
    background: linear-gradient(180deg, #9b35ec 0%, var(--menu-purple) 52%, #7c22c9 100%);
    box-shadow: 0 6px 16px rgba(53, 13, 84, 0.22);
    font-family: "Oswald", "Roboto Condensed", Arial, sans-serif;
}

.menu-toggle {
    display: none;
    color: #fff;
    font-size: 25px;
    padding: 10px;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
}

.menu ul {
    max-width: 1000px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
    list-style: none;
    padding: 0;
}

.menu li {
    display: flex;
    color: #fff;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.menu a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 12px;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1;
    text-decoration: none;
    text-transform: none;
}

.menu li.is-active,
.menu li:hover {
    background: var(--menu-purple-dark);
    box-shadow: inset 0 -3px 0 rgba(255, 255, 255, 0.22);
}

.menu li:hover a,
.menu li.is-active a {
    color: #fff;
}

.site-page {
    display: grid;
    gap: 18px;
}

.site-page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 16px;
    align-items: start;
}

.site-page-main {
    display: grid;
    gap: 18px;
}

.section-block__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.page-sidebar {
    display: grid;
    gap: 14px;
}

.site-page__hero,
.site-page__card {
    border-radius: 14px;
    background: #fbfaff;
    box-shadow: 0 10px 24px rgba(62, 25, 79, 0.12);
    overflow: hidden;
}

.site-page__hero {
    display: grid;
    gap: 14px;
    padding: 22px;
    border: 1px solid #eee8f7;
}

.site-page__hero img {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    border-radius: 12px;
}

.site-page__hero h1,
.site-page__card h2,
.site-page__card h3 {
    margin: 0;
    color: #4b176f;
}

.site-page__hero p,
.site-page__card p,
.site-page__card li {
    color: #4a4157;
    line-height: 1.7;
}

.site-page__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
    gap: 14px;
}

.site-page__grid--videos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.site-page__list {
    display: grid;
    gap: 14px;
}

.site-page__card {
    display: grid;
    gap: 10px;
    padding: 18px;
    border: 1px solid #eee8f7;
}

.site-page__card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 10px;
}

.site-page__meta {
    display: inline-flex;
    width: fit-content;
    padding: 5px 9px;
    border-radius: 999px;
    background: #8e2de2;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.site-page__button,
.site-page button.site-page__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 16px;
    border: 0;
    border-radius: 8px;
    background: #8e2de2;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.contact-form {
    display: grid;
    gap: 14px;
}

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

.contact-form label {
    display: grid;
    gap: 6px;
    color: #4b176f;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e4d7f0;
    border-radius: 8px;
    outline: none;
}

.contact-form__full {
    grid-column: 1 / -1;
}

.contact-form__counter {
    color: #7b6d86;
    font-size: 13px;
    text-align: right;
}

.program-day-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
}

.program-day-tabs button {
    padding: 10px 13px;
    border: 0;
    border-radius: 8px;
    background: #eee8f7;
    color: #4b176f;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
}

.program-day-tabs button.is-active {
    background: #8e2de2;
    color: #fff;
}

.program-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.program-table th,
.program-table td {
    padding: 12px;
    border-bottom: 1px solid #eee8f7;
    text-align: left;
}

.program-table tr.is-current {
    background: #dff0ff;
}

.program-now {
    display: inline-flex;
    margin-left: 8px;
    padding: 3px 7px;
    border-radius: 999px;
    background: #2b7de9;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.program-host,
.locutor-row,
.news-row,
.mural-page-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.program-host img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.locutor-row img,
.news-row img {
    width: 170px;
    height: 125px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.news-row {
    align-items: center;
}

.news-row__content {
    flex: 1;
}

.video-embed {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 10px;
    background: #eee8f7;
}

.video-embed iframe,
.video-embed img {
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
    display: block;
}

.mural-page-item {
    display: grid;
    gap: 10px;
    padding: 0;
}

.mural-page-item__box {
    padding: 14px;
    border-radius: 10px;
    background: #f3f3f3;
    color: #4a4157;
}

.mural-page-item__date {
    padding: 8px 12px;
    border-radius: 0 0 10px 10px;
    background: #8e2de2;
    color: #fff;
    font-weight: 700;
}

/* =========================
   CONTAINER
========================= */

.container {
    max-width: 1000px;
    margin: auto;
    background: #fff;
    padding: 10px;
    box-sizing: border-box;
}

/* SLIDER */
.swiper {
    height: 300px;
    margin-bottom: 15px;
}

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

/* =========================
   PORTAL NOTÍCIAS
========================= */

.portal-noticias {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 10px;
    margin-top: 15px;
}

.noticia-principal {
    position: relative;
    height: 470px;
    overflow: hidden;
    background: #111;
}

.noticia-principal a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #fff;
}

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

.noticias-laterais {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.noticia-card {
    position: relative;
    height: 230px;
    overflow: hidden;
    background: #111;
}

.noticia-card a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #fff;
}

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

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.20), rgba(0, 0, 0, 0.05));
    z-index: 1;
}

.texto {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 16px;
    z-index: 2;
    box-sizing: border-box;
}

.noticia-principal h2 {
    margin: 0;
    font-size: 22px;
    line-height: 1.2;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.noticia-card h3 {
    margin: 0;
    font-size: 14px;
    line-height: 1.25;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.sem-noticias {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 470px;
    color: #fff;
    background: #111;
    font-size: 18px;
}

/* =========================
   FOOTER
========================= */

.footer {
    text-align: center;
    color: #fff;
    margin-top: 20px;
    padding: 15px 0;
}

/* =========================
   RESPONSIVO
========================= */

@media (max-width: 1100px) {
    .radio-topbar {
        flex-wrap: wrap;
        justify-content: center;
    }

    .rp-center {
        order: -1;
        width: 100%;
    }

    .rp-title-wrap {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .topo {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .site-ad--topo {
        flex-basis: auto;
        width: min(100%, 450px);
    }

    .topo-direita {
        align-items: center;
    }

    .banner {
        padding: 15px 20px;
    }

    .linha-fanpage-anuncio {
        grid-template-columns: 1fr;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        min-height: 48px;
    }

    .menu ul {
        display: none;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        padding: 0;
    }

    .menu ul.active {
        display: flex;
    }

    .menu li,
    .menu a {
        width: 100%;
    }

    .menu a {
        justify-content: center;
        min-height: 44px;
        font-size: 16px;
    }

    .portal-noticias {
        grid-template-columns: 1fr;
    }

    .noticia-principal {
        height: 320px;
    }

    .noticias-laterais {
        grid-template-columns: 1fr 1fr;
    }

    .noticia-card {
        height: 180px;
    }
}

@media (max-width: 700px) {
    .rp-right {
        display: none;
    }

    .equalizer {
        width: 60px;
    }

    .rp-title-marquee span {
        font-size: 13px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 8px;
    }

    .swiper {
        height: 220px;
    }

    .noticias-laterais {
        grid-template-columns: 1fr;
    }

    .noticia-card {
        height: 220px;
    }

    .noticia-principal h2 {
        font-size: 18px;
    }

    .noticia-card h3 {
        font-size: 15px;
    }

    .busca {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.player-nome,
.player-info,
.nome-musica,
#nome-musica {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    color: #fff !important;
    z-index: 9999;
}


/* =========================
   ENQUETE
========================= */
.titulo-enquete {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #8e24aa;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
    padding: 5px 0;
}

/* Ícone */
.titulo-enquete::before {
    content: "🔊";
    font-size: 24px;
}

/* =========================
   OUVINTES + ENQUETE
========================= */

.blocos-laterais {
    display: flex;
    gap: 2px; /* 🔥 bem mais próximo */
    margin-top: 15px;
    align-items: flex-start;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .blocos-laterais {
        flex-direction: column;
    }
}

/* =========================
   COLUNAS AJUSTADAS (3 COLUNAS)
========================= */

/* ENQUETE */
.coluna:nth-child(1) {
    flex: 1.2;
}

/* OUVINTE */
.coluna:nth-child(2) {
    flex: 1;
}

/* LATERAL DIREITA (Whats + No Ar) */
.coluna:nth-child(3) {
    flex: 0.9;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* =========================
   CARD OUVINTE
========================= */

.ouvinte-box {
    background: #fff;
    color: #333;
    width: 100%;
    max-width: 240px;
    height: 400px;
    display: flex;
    flex-direction: column;
    overflow: hidden;

    /* 🔥 ESTILO CARD */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* TÍTULO */
.ouvinte-titulo {
    background: #8e24aa; /* roxo do seu site */
    color: #fff;
    text-align: center;
    font-weight: 700;
    padding: 8px;
    font-size: 16px;
}

/* IMAGEM */
.ouvinte-box img {
    width: 100%;
    height: calc(100% - 80px);
    object-fit: cover;
}

/* INFO */
.ouvinte-info {
    height: 80px;
    background: #111;
    color: #fff;
    padding: 10px;
    box-sizing: border-box;
}

/* NOME */
.ouvinte-info strong {
    display: block;
    font-size: 15px;
}

/* CIDADE */
.ouvinte-info span {
    font-size: 12px;
    color: #ccc;
}

/* =========================
   NOVOS BLOCOS (WHATS + NO AR)
========================= */

.card-box {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    overflow: hidden;
}

/* TITULO PADRÃO */
.card-titulo {
    background: #8e24aa;
    color: #fff;
    text-align: center;
    font-weight: 700;
    padding: 8px;
    font-size: 16px;
}

/* CONTEÚDO PADRÃO */
.card-conteudo {
    padding: 10px;
    text-align: center;
}

/* =========================
   WHATSAPP AJUSTADO
========================= */
.whatsapp-box {
    background: #25D366; /* verde oficial */
    color: #fff;
    width: 100%;
    max-width: 260px; /* 🔥 um pouco maior que os outros */
    padding: 5px 0;

    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* TITULO */
.whatsapp-box .card-titulo {
    background: transparent;
    font-size: 18px;
    font-weight: 700;
}

/* NUMERO */
.whatsapp-box p {
    font-size: 18px;
    margin: 5px 0 10px;
    font-weight: bold;
}

.btn-whatsapp {
    display: block;
    text-decoration: none;
    color: #fff;
}

.btn-whatsapp p {
    margin: 0;
}

/* =========================
   NO AR (AGORA IGUAL OUVINTE)
========================= */
.noar-box {
    background: #fff;
    color: #333;
    width: 100%;
    max-width: 240px;
    height: 400px;
    display: flex;
    flex-direction: column;
    overflow: hidden;

    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* TITULO IGUAL OUVINTE */
.noar-box .card-titulo {
    background: #8e24aa;
    color: #fff;
    text-align: center;
    font-weight: 700;
    padding: 8px;
    font-size: 16px;
}

/* IMAGEM */
.noar-box img {
    width: 100%;
    height: calc(100% - 80px);
    object-fit: cover;
}

/* INFO (parte de baixo igual ouvinte) */
.noar-box .card-conteudo {
    height: 80px;
    background: #111;
    color: #fff;
    padding: 10px;
    box-sizing: border-box;
}

/* =========================
   CENTRALIZAÇÃO
========================= */

/* OUVINTE */
.coluna:nth-child(2) {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* COLUNA DIREITA */
.coluna:nth-child(3) {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* =========================
   AJUSTES DE LAYOUT
========================= */

* {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

.topo {
    width: min(100%, 1000px);
    gap: 20px;
    padding: 12px 16px;
}

.menu ul {
    width: min(100%, 1000px);
    padding: 0 16px;
}

.container {
    width: min(100%, 1000px);
    padding: 16px;
}

.footer {
    padding: 15px 16px;
}

.bloco-enquete-site {
    width: 100%;
    margin: 0;
}

.fanpage-card {
    display: grid;
    gap: 9px;
    width: 100%;
    margin-top: 14px;
    padding: 12px;
    border: 1px solid #eee8f7;
    border-radius: 14px;
    background: #fbfaff;
    box-shadow: 0 8px 20px rgba(62, 25, 79, 0.1);
    overflow: hidden;
}

.fanpage-card__title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #5e1376;
    font-size: 18px;
}

.fanpage-card__title span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8e24aa, #b832d4);
    color: #fff;
    font-size: 14px;
    box-shadow: 0 8px 16px rgba(142, 36, 170, 0.22);
}

.fanpage-plugin {
    display: block;
    width: 100%;
    max-width: 340px;
    height: 150px;
    border: 0;
    border-radius: 10px;
    background: #fff;
}

.linha-fanpage-anuncio {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 24px;
    align-items: stretch;
    margin-top: 20px;
    width: 100%;
}

.linha-fanpage-anuncio .fanpage-card {
    width: 100%;
    min-width: 0;
    margin-top: 0;
}

.site-ad {
    width: 100%;
}

.site-ad__track,
.site-ad__item,
.site-ad a {
    display: block;
    width: 100%;
    height: 100%;
}

.site-ad img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-ad--topo {
    width: min(100%, 450px);
    max-width: 450px;
    height: 80px;
    overflow: hidden;
}

.site-ad--meio {
    display: block;
    width: min(100%, 600px);
    max-width: 600px;
    height: 120px;
    margin: 0 auto;
    overflow: hidden;
}

.site-ad--rodape {
    width: 100%;
}

.anuncio-card {
    display: grid;
    gap: 10px;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

.anuncio-card--meio {
    align-content: center;
    justify-items: center;
}

.anuncio-meio-card {
    display: grid !important;
    gap: 10px;
    align-content: center;
    justify-items: center;
    width: 100%;
    min-width: 0;
    min-height: 150px;
    background: #fff;
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 12px 35px rgba(0,0,0,.08);
    overflow: visible;
}

.anuncio-card--meio {
    display: grid !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.card-header {
    display: grid;
    gap: 4px;
    width: 100%;
}

.tag {
    display: inline-flex;
    width: fit-content;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(142, 36, 170, 0.12);
    color: #8e24aa;
    font-size: 12px;
    font-weight: 700;
}

.card-header h3 {
    margin: 0;
    color: #5e1376;
    font-size: 20px;
    line-height: 1.1;
}

.anuncio-meio-card img {
    display: block !important;
    width: 100%;
    max-width: 600px;
    height: 120px;
    object-fit: contain;
    margin: 0 auto;
}

.anuncio-slider-vertical {
    width: 100%;
    max-width: 600px;
    height: 120px;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
}

.anuncio-slider-vertical .slides {
    display: flex;
    flex-direction: column;
    transition: transform 0.6s ease-in-out;
}

.anuncio-slider-vertical a {
    display: block;
    width: 100%;
    max-width: 600px;
    height: 120px;
}

.anuncio-slider-vertical img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    display: block;
}

.anuncio-card--rodape {
    margin-top: 0;
}

.anuncio-card__header {
    display: grid;
    gap: 4px;
}

.anuncio-card__header h3 {
    margin: 0;
    color: #5e1376;
    font-size: 20px;
    line-height: 1.1;
}

.anuncios-rodape {
    display: grid;
    width: 100%;
}

.anuncios-rodape .site-ad__track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    width: 100%;
}

.anuncio-rodape .site-ad__item,
.anuncio-rodape-item {
    display: block;
    width: 100%;
    max-width: 300px;
    height: 100px;
    justify-self: center;
    border-radius: 12px;
    background: #fbfaff;
    box-shadow: 0 8px 20px rgba(62, 25, 79, 0.12);
}

.anuncio-rodape .site-ad__item img,
.anuncio-rodape-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.titulo-enquete {
    margin: 0 0 12px;
}

.enquete-box {
    height: 100%;
}

.blocos-laterais {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 0.95fr);
    gap: 16px;
    margin-top: 20px;
    align-items: start;
}

.coluna {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.coluna--ouvinte,
.coluna--extras {
    align-items: stretch;
}

.coluna--extras {
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
}

.card-box,
.bloco-enquete-site,
.ouvinte-box,
.whatsapp-box,
.noar-box {
    width: 100%;
    max-width: none;
}

.ouvinte-box,
.noar-box {
    min-height: 400px;
    height: 100%;
}

.ouvinte-box img,
.noar-box img {
    flex: 1;
    min-height: 0;
    display: block;
}

.ouvinte-info,
.noar-box .card-conteudo {
    min-height: 80px;
    height: auto;
}

@media (max-width: 920px) {
    .blocos-laterais {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .coluna--extras {
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .anuncios-rodape .site-ad__track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .topo,
    .menu ul,
    .container {
        width: 100%;
    }

    .container {
        padding: 12px;
    }

    .blocos-laterais,
    .coluna--extras {
        grid-template-columns: 1fr;
    }

    .linha-fanpage-anuncio {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .site-ad--meio {
        max-width: 100%;
    }

    .site-page-layout,
    .contact-form__grid,
    .site-page__grid--videos {
        grid-template-columns: 1fr;
    }

    .locutor-row,
    .news-row {
        display: grid;
    }

    .locutor-row img,
    .news-row img {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 10;
    }

    .anuncios-rodape .site-ad__track {
        grid-template-columns: 1fr;
    }

    .site-ad--topo {
        height: auto;
        aspect-ratio: 45 / 8;
    }

    .coluna--extras {
        grid-column: auto;
    }

    .titulo-enquete {
        font-size: 22px;
    }

    .ouvinte-box,
    .noar-box {
        min-height: 360px;
    }
}

.blocos-laterais > .coluna--ouvinte,
.blocos-laterais > .coluna--extras {
    align-items: stretch;
    justify-content: flex-start;
}

.blocos-laterais > .coluna--extras {
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 16px;
}

@media (max-width: 920px) {
    .blocos-laterais > .coluna--extras {
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .blocos-laterais > .coluna--extras {
        grid-column: auto;
        grid-template-columns: 1fr;
    }
}

/* =========================
   PERFORMANCE
========================= */

.swiper {
    position: relative;
    overflow: hidden;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
}

.swiper-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.logo-img {
    height: auto;
}

.swiper img,
.noticia-principal img {
    content-visibility: auto;
}

/* =========================
   COMMUNITY
========================= */

.community-grid,
.linha-top-mural,
.linha-parceiros-estatisticas {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-items: start;
    margin-top: 20px;
}

.linha-parceiros-estatisticas {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.community-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
    padding: 18px;
}

.community-stack {
    display: grid;
    gap: 10px;
    align-self: start;
    justify-items: center;
}

.mural-card {
    padding: 14px;
    align-self: start;
}

.parceiros-card,
.estatisticas-card {
    width: 100%;
    align-self: start;
}

.top-musica-card {
    width: 100%;
    max-width: 380px;
    justify-self: center;
    padding: 14px;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(82, 21, 102, 0.16);
    align-self: start;
}

.community-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.community-card__header h3 {
    margin: 6px 0 0;
    color: #202124;
    font-size: 24px;
}

.top-musica-card .community-card__header {
    margin-bottom: 10px;
}

.mural-card .community-card__header {
    align-items: center;
    margin-bottom: 8px;
}

.top-musica-card .community-card__header h3 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
    color: #5e1376;
    font-size: 20px;
    line-height: 1.1;
}

.mural-card .community-card__header h3 {
    margin-top: 4px;
    color: #5e1376;
    font-size: 20px;
    line-height: 1.1;
}

.estatisticas-card .community-card__header {
    margin-bottom: 12px;
}

.estatisticas-card .community-card__header h3 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
    color: #5e1376;
    font-size: 20px;
    line-height: 1.1;
}

.estatisticas-lista {
    display: grid;
    gap: 10px;
}

.estatistica-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    background: #fbfaff;
    border: 1px solid #eee8f7;
}

.estatistica-icone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(142, 36, 170, 0.12);
    color: #8e24aa;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.estatistica-item strong {
    display: block;
    color: #14161a;
    font-size: 22px;
    line-height: 1.1;
}

.estatistica-item small {
    color: #5f6368;
    font-size: 13px;
}

.top-musica-title-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8e24aa, #b832d4);
    color: #fff;
    font-size: 14px;
    box-shadow: 0 8px 16px rgba(142, 36, 170, 0.26);
}

.community-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(142, 36, 170, 0.12);
    color: #8e24aa;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.community-add-btn {
    border: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #8e24aa, #b832d4);
    color: #fff;
    padding: 8px 14px;
    font-weight: bold;
    font-size: 13px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(142, 36, 170, 0.25);
}

.community-empty {
    padding: 18px;
    border-radius: 12px;
    background: #f6f7fb;
    color: #5f6368;
    text-align: center;
}

.top-musicas-lista,
.mural-lista {
    display: grid;
    gap: 12px;
}

.top-musicas-lista {
    gap: 8px;
}

.mural-slider {
    overflow: hidden;
}

.mural-lista {
    gap: 6px;
    transition: transform 0.6s ease;
    will-change: transform;
}

.mural-slide {
    display: grid;
    gap: 6px;
}

.musica-item,
.mural-item {
    display: grid;
    gap: 12px;
    border-radius: 14px;
    background: #f8f9ff;
    border: 1px solid #ecebfb;
    box-shadow: 0 8px 18px rgba(21, 28, 38, 0.06);
}

.musica-item {
    grid-template-columns: 28px 50px minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    min-height: 64px;
    padding: 8px 10px;
    border-radius: 13px;
    background: #fbfaff;
    border-color: #eee8f7;
    box-shadow: 0 5px 14px rgba(62, 25, 79, 0.07);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.musica-item:hover {
    border-color: rgba(142, 36, 170, 0.22);
    box-shadow: 0 8px 18px rgba(62, 25, 79, 0.1);
    transform: translateY(-1px);
}

.musica-posicao {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(180deg, #8e24aa, #b832d4);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
    box-shadow: 0 6px 12px rgba(142, 36, 170, 0.24);
}

.musica-capa img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border: 2px solid #fff;
    border-radius: 50%;
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
}

.musica-info {
    display: grid;
    gap: 1px;
    min-width: 0;
}

.musica-info strong {
    overflow: hidden;
    color: #14161a;
    font-size: 14px;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.musica-info span {
    overflow: hidden;
    color: #5f6368;
    font-size: 12.5px;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.musica-acoes {
    display: flex;
    align-items: center;
    gap: 6px;
}

.musica-play,
.musica-download {
    min-width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.musica-play:hover,
.musica-download:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.musica-play {
    background: #26112f;
    color: #fff;
    font-size: 11px;
    padding-left: 2px;
}

.musica-download {
    width: auto;
    border-radius: 999px;
    padding: 0 9px;
    background: linear-gradient(90deg, #8e24aa, #b832d4);
    color: #fff;
    font-size: 11px;
    line-height: 1;
    box-shadow: 0 6px 14px rgba(142, 36, 170, 0.22);
}

.mural-item {
    padding: 9px 11px;
    min-height: 0;
    align-content: start;
    gap: 4px;
}

.mural-item strong {
    color: #1c1d21;
    font-size: 14px;
    line-height: 1.2;
}

.mural-item span {
    color: #8e24aa;
    font-size: 12px;
    font-weight: bold;
}

.mural-item p {
    margin: 0;
    color: #474b52;
    font-size: 13px;
    line-height: 1.35;
    white-space: pre-line;
}

.recado-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(7, 10, 20, 0.6);
    z-index: 9999;
}

.recado-modal.is-active {
    display: flex;
}

.recado-modal__dialog {
    width: 100%;
    max-width: 520px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
    padding: 26px;
    position: relative;
}

.recado-modal__dialog h3 {
    margin: 0 0 18px;
    color: #16181d;
    font-size: 26px;
}

.recado-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #f0f1f8;
    color: #333;
    cursor: pointer;
    font-size: 24px;
}

.recado-form {
    display: grid;
    gap: 14px;
}

.recado-form label {
    display: grid;
    gap: 8px;
    color: #222;
    font-weight: bold;
}

.recado-form input,
.recado-form textarea {
    width: 100%;
    border: 1px solid #d8dce7;
    border-radius: 12px;
    padding: 12px 14px;
    box-sizing: border-box;
    font: inherit;
}

.recado-form textarea {
    resize: vertical;
    min-height: 120px;
}

.recado-form__submit {
    border: 0;
    border-radius: 12px;
    padding: 14px;
    background: linear-gradient(90deg, #8e24aa, #b832d4);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

.recado-form__feedback {
    min-height: 20px;
    font-size: 14px;
}

.recado-form__feedback.is-success {
    color: #0b8f4d;
}

.recado-form__feedback.is-error {
    color: #c62828;
}

.recado-form__feedback.is-info {
    color: #5f6368;
}

@media (max-width: 920px) {
    .community-grid,
    .linha-top-mural,
    .linha-parceiros-estatisticas {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .linha-top-mural,
    .linha-parceiros-estatisticas {
        display: grid;
        grid-template-columns: 1fr;
    }

    .top-musica-card {
        order: 1;
    }

    .mural-card {
        order: 2;
    }

    .parceiros-card {
        order: 3;
    }

    .estatisticas-card {
        order: 4;
    }
}

@media (max-width: 640px) {
    .top-musica-card {
        max-width: 100%;
    }

    .musica-item {
        grid-template-columns: 26px 48px minmax(0, 1fr) auto;
        min-height: 62px;
        padding: 8px;
    }

    .musica-capa img {
        width: 48px;
        height: 48px;
    }

    .musica-acoes {
        justify-content: flex-end;
    }

    .community-card__header {
        flex-direction: column;
    }

    .community-add-btn {
        width: 100%;
        justify-content: center;
    }

    .mural-card .community-card__header {
        flex-direction: row;
        align-items: center;
    }

    .mural-card .community-add-btn {
        width: auto;
    }

    .recado-modal__dialog {
        padding: 22px 18px;
    }

    .mural-item {
        min-height: 0;
    }
}
