/* =========================================================
   PIEDADE FM 89,3
   A RÁDIO DA COMUNIDADE
   STYLE.CSS — VERSÃO LIMPA E PROFISSIONAL
========================================================= */

/* =========================================================
   RESET
========================================================= */

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

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

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #050a14;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

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

section {
    scroll-margin-top: 115px;
}


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

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


/* =========================================================
   BARRA SUPERIOR
========================================================= */

.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    width: 100%;
    height: 34px;

    z-index: 10000;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            #075bd4 0%,
            #174cff 50%,
            #d90032 100%
        );
}

.top-bar-content {
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #ffffff;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.live-top {
    display: flex;
    align-items: center;
    gap: 7px;
}

.live-top i {
    width: 7px;
    height: 7px;

    display: block;

    border-radius: 50%;

    background: #ffffff;

    box-shadow:
        0 0 10px rgba(255,255,255,.9);
}


/* =========================================================
   CABEÇALHO FIXO
========================================================= */

.site-header {
    position: fixed;

    top: 34px;
    left: 0;
    right: 0;

    width: 100%;
    height: 76px;

    z-index: 9999;

    background:
        rgba(4, 9, 19, .97);

    border-bottom:
        1px solid
        rgba(255,255,255,.08);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header-content {
    height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* =========================================================
   LOGO DO TOPO
========================================================= */

.site-logo {
    width: 135px;
    height: 68px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;
}

.site-logo img {
    width: 135px;
    height: 68px;

    object-fit: contain;
}


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

.main-nav {
    margin-left: auto;

    display: flex;
    align-items: center;

    gap: 28px;
}

.main-nav a {
    position: relative;

    color: #aeb8c8;

    font-size: 13px;
    font-weight: 700;

    white-space: nowrap;

    transition:
        color .25s ease;
}

.main-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    border-radius: 5px;

    background:
        linear-gradient(
            90deg,
            #0878ff,
            #e50938
        );

    transition: width .25s ease;
}

.main-nav a:hover {
    color: #ffffff;
}

.main-nav a:hover::after {
    width: 100%;
}


/* =========================================================
   BOTÃO MENU MOBILE
========================================================= */

.menu-button {
    display: none;

    width: 42px;
    height: 42px;

    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(255,255,255,.12);

    border-radius: 10px;

    background:
        rgba(255,255,255,.05);

    color: #ffffff;

    font-size: 21px;
}


/* =========================================================
   ESPAÇO PARA O CABEÇALHO FIXO
========================================================= */

main {
    padding-top: 110px;
}


/* =========================================================
   HERO
========================================================= */

.hero-section {
    position: relative;

    min-height: 650px;

    overflow: hidden;

    background:
        #060c18;
}

.hero-background {
    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 82% 35%,
            rgba(0,110,255,.18),
            transparent 30%
        ),

        radial-gradient(
            circle at 95% 75%,
            rgba(225,0,60,.16),
            transparent 34%
        ),

        linear-gradient(
            135deg,
            rgba(0,75,180,.08),
            transparent 50%,
            rgba(220,0,55,.08)
        );
}

.hero-background::after {
    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    right: -350px;
    top: 50px;

    border-radius: 50%;

    border:
        1px solid
        rgba(0,120,255,.10);

    box-shadow:
        0 0 0 80px rgba(0,120,255,.02),
        0 0 0 160px rgba(220,0,60,.02);
}

.hero-content {
    position: relative;

    z-index: 2;

    min-height: 650px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        430px;

    gap: 70px;

    align-items: center;
}


/* =========================================================
   HERO — TEXTO
========================================================= */

.hero-text {
    padding: 30px 0;
}

.live-label {
    width: fit-content;

    display: flex;
    align-items: center;

    gap: 8px;

    padding: 7px 13px;

    margin-bottom: 22px;

    border:
        1px solid
        rgba(255,35,65,.45);

    border-radius: 50px;

    background:
        rgba(220,0,40,.08);

    color: #ff5066;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1.2px;
}

.live-label i {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #ff1740;

    box-shadow:
        0 0 10px
        rgba(255,23,64,.8);
}

.hero-text h1 {
    max-width: 700px;

    margin-bottom: 22px;

    font-size:
        clamp(50px, 6vw, 78px);

    line-height: .98;

    letter-spacing: -3px;

    font-weight: 900;
}

.hero-text h1 span {
    display: block;

    background:
        linear-gradient(
            90deg,
            #0878ff,
            #6266ff,
            #e72d91
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.hero-text > p {
    max-width: 600px;

    margin-bottom: 28px;

    color: #9ca9bb;

    font-size: 16px;
}


/* =========================================================
   BOTÕES
========================================================= */

.hero-actions {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 38px;
}

.button {
    min-height: 46px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 0 20px;

    border-radius: 9px;

    font-size: 13px;
    font-weight: 800;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background:
        linear-gradient(
            135deg,
            #ff3048,
            #d90026
        );

    color: #ffffff;

    box-shadow:
        0 12px 28px
        rgba(220,0,38,.25);
}

.button-primary:hover {
    box-shadow:
        0 16px 34px
        rgba(220,0,38,.40);
}

.button-secondary {
    border:
        1px solid
        rgba(255,255,255,.15);

    background:
        rgba(255,255,255,.04);

    color: #ffffff;
}

.button-secondary:hover {
    background:
        rgba(255,255,255,.08);
}


/* =========================================================
   ESTATÍSTICAS
========================================================= */

.hero-stats {
    display: flex;
    align-items: center;

    gap: 38px;
}

.hero-stats div {
    display: flex;
    flex-direction: column;
}

.hero-stats strong {
    font-size: 18px;
    line-height: 1;
}

.hero-stats span {
    margin-top: 5px;

    color: #68768b;

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* =========================================================
   PLAYER
========================================================= */

.radio-player {
    width: 100%;
    max-width: 430px;

    min-height: 500px;

    margin-left: auto;

    padding: 25px;

    display: flex;
    flex-direction: column;

    background:
        linear-gradient(
            145deg,
            rgba(18,35,58,.98),
            rgba(6,12,23,.99)
        );

    border:
        1px solid
        rgba(255,255,255,.10);

    border-radius: 22px;

    box-shadow:
        0 30px 70px
        rgba(0,0,0,.45);

    overflow: hidden;
}


/* =========================================================
   PLAYER HEADER
========================================================= */

.player-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #aab5c5;

    font-size: 11px;
    font-weight: 800;
}

.player-live {
    display: flex;
    align-items: center;

    gap: 6px;

    color: #ff4057;
}

.player-live i {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #ff173c;

    box-shadow:
        0 0 10px
        rgba(255,23,60,.7);
}


/* =========================================================
   LOGO DO PLAYER
========================================================= */

.player-logo-area {
    height: 205px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.player-ring {
    width: 180px;
    height: 180px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            #172943 0%,
            #0b1525 58%,
            #070d18 100%
        );

    border:
        1px solid
        rgba(255,255,255,.12);

    box-shadow:
        0 0 0 10px
        rgba(0,110,255,.025),

        0 20px 50px
        rgba(0,0,0,.45);
}

.player-logo {
    width: 76px;
    height: 76px;

    overflow: hidden;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    border: 3px solid #ffffff;

    box-shadow:
        0 8px 25px
        rgba(0,0,0,.45);
}

.player-logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}


/* =========================================================
   INFORMAÇÕES DO PLAYER
========================================================= */

.player-info {
    text-align: center;
}

.player-info > span {
    color: #ff4057;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1.5px;
}

.player-info h2 {
    margin-top: 3px;

    font-size: 23px;

    line-height: 1.2;
}

.player-info p {
    margin-top: 3px;

    color: #7d8ca1;

    font-size: 11px;
}


/* =========================================================
   PLAY
========================================================= */

.player-main-button {
    display: flex;

    align-items: center;
    justify-content: center;

    margin-top: 17px;
}

.play-button {
    width: 60px;
    height: 60px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: none;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #ff3048,
            #d90024
        );

    color: #ffffff;

    font-size: 20px;

    box-shadow:
        0 12px 30px
        rgba(225,0,35,.35);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.play-button:hover {
    transform: scale(1.06);

    box-shadow:
        0 15px 35px
        rgba(225,0,35,.5);
}


/* =========================================================
   VISUALIZADOR
========================================================= */

.audio-visualizer {
    height: 34px;

    margin-top: 13px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 4px;
}

.audio-visualizer span {
    width: 3px;
    height: 8px;

    border-radius: 10px;

    background:
        linear-gradient(
            180deg,
            #0878ff,
            #ff3048
        );
}

.radio-playing .audio-visualizer span {
    animation:
        audio-wave .55s
        ease-in-out
        infinite
        alternate;
}

.radio-playing
.audio-visualizer
span:nth-child(2n) {
    animation-delay: -.2s;
}

.radio-playing
.audio-visualizer
span:nth-child(3n) {
    animation-delay: -.35s;
}

@keyframes audio-wave {
    from {
        height: 6px;
    }

    to {
        height: 28px;
    }
}


/* =========================================================
   VOLUME
========================================================= */

.player-volume {
    width: 100%;

    display: flex;

    align-items: center;

    gap: 7px;

    margin-top: 12px;
}

.volume-button {
    width: 32px;
    height: 32px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(255,255,255,.10);

    border-radius: 7px;

    background:
        rgba(255,255,255,.05);

    color: #ffffff;

    font-size: 16px;
    font-weight: 900;

    transition:
        background .2s ease,
        transform .2s ease;
}

.volume-button:hover {
    background: #0878ff;

    transform: translateY(-1px);
}

#volumeSlider {
    flex: 1;

    min-width: 40px;

    height: 4px;

    appearance: none;
    -webkit-appearance: none;

    border-radius: 10px;

    outline: none;

    background:
        linear-gradient(
            90deg,
            #0878ff,
            #e50920
        );
}

#volumeSlider::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;

    width: 13px;
    height: 13px;

    border-radius: 50%;

    border: 2px solid #ffffff;

    background: #0878ff;

    cursor: pointer;
}

#volumeSlider::-moz-range-thumb {
    width: 13px;
    height: 13px;

    border-radius: 50%;

    border: 2px solid #ffffff;

    background: #0878ff;

    cursor: pointer;
}

#volumeValue {
    width: 34px;

    flex-shrink: 0;

    color: #718097;

    font-size: 9px;
    font-weight: 800;

    text-align: right;
}


/* =========================================================
   STATUS
========================================================= */

/* =========================================================
   PIEDADE WEB
   RODAPÉ PREMIUM DO PLAYER
========================================================= */

.player-status {
    position: relative !important;

    width: 100% !important;

    min-height: 42px !important;

    margin-top: 16px !important;

    padding: 11px 2px 0 !important;

    display: flex !important;

    align-items: center !important;

    justify-content: space-between !important;

    gap: 12px !important;

    border-top:
        1px solid
        rgba(255,255,255,.07) !important;

    color: #72839a !important;

    font-size: 9px !important;

    font-weight: 600 !important;

    letter-spacing: .1px !important;
}


/* brilho discreto no centro da linha */

.player-status::after {
    content: "";

    position: absolute;

    top: -1px;

    left: 18%;

    width: 64%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(0,120,255,.28),
            rgba(255,48,72,.20),
            transparent
        );

    opacity: .8;
}


/* =========================================================
   INDICADOR DA TRANSMISSÃO
========================================================= */

.player-status > span:first-child {
    display: inline-flex !important;

    align-items: center !important;

    gap: 7px !important;

    color: #718198 !important;

    white-space: nowrap !important;
}


/* bolinha vermelha */

.player-status > span:first-child::before {
    content: "";

    width: 5px;

    height: 5px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #ff3048;

    box-shadow:
        0 0 5px
        rgba(255,48,72,.75),

        0 0 10px
        rgba(255,48,72,.25);

    animation:
        status-live-dot
        1.5s
        ease-in-out
        infinite;
}


@keyframes status-live-dot {

    0%,
    100% {
        opacity: 1;

        transform:
            scale(1);
    }

    50% {
        opacity: .35;

        transform:
            scale(.7);
    }

}


/* =========================================================
   TEXTO "TRANSMISSÃO AO VIVO"
========================================================= */

.player-status > span:nth-child(2) {
    position: relative;

    display: inline-flex !important;

    align-items: center !important;

    justify-content: center !important;

    min-height: 22px;

    padding: 4px 10px !important;

    border:
        1px solid
        rgba(255,48,72,.12) !important;

    border-radius: 20px !important;

    background:
        rgba(255,48,72,.035) !important;

    color: #8291a5 !important;

    font-size: 8px !important;

    font-weight: 700 !important;

    letter-spacing: .15px !important;

    white-space: nowrap !important;
}


/* pequeno indicador dentro do selo */

.player-status > span:nth-child(2)::before {
    content: "";

    width: 4px;

    height: 4px;

    margin-right: 5px;

    border-radius: 50%;

    background: #ff3048;

    box-shadow:
        0 0 6px
        rgba(255,48,72,.8);
}


/* =========================================================
   NOME PIEDADE WEB
========================================================= */

.player-status > span:last-child {
    display: inline-flex !important;

    align-items: center !important;

    justify-content: flex-end !important;

    color: #7f91aa !important;

    font-size: 8px !important;

    font-weight: 800 !important;

    letter-spacing: .4px !important;

    text-transform: none !important;

    white-space: nowrap !important;
}


/* brilho sutil no nome */

.player-status > span:last-child::after {
    content: "";

    width: 3px;

    height: 3px;

    margin-left: 6px;

    border-radius: 50%;

    background: #0878ff;

    box-shadow:
        0 0 7px
        rgba(0,120,255,.8);
}


/* =========================================================
   EFEITO QUANDO A RÁDIO ESTÁ TOCANDO
========================================================= */

.radio-playing .player-status > span:nth-child(2) {
    border-color:
        rgba(255,48,72,.20) !important;

    background:
        rgba(255,48,72,.055) !important;

    color: #9aa8ba !important;
}


.radio-playing .player-status > span:last-child {
    color: #9aa8ba !important;
}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 600px) {

    .player-status {
        gap: 7px !important;

        padding-top: 10px !important;

        font-size: 8px !important;
    }

    .player-status > span:nth-child(2) {
        padding:
            4px 7px !important;

        font-size: 7px !important;
    }

    .player-status > span:last-child {
        font-size: 7px !important;
    }

}


/* =========================================================
   ATALHOS
========================================================= */

.shortcut-section {
    padding: 35px 0;

    background: #070d19;

    border-top:
        1px solid
        rgba(255,255,255,.05);

    border-bottom:
        1px solid
        rgba(255,255,255,.05);
}

.shortcut-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;
}

.shortcut-card {
    min-height: 85px;

    padding: 15px;

    display: flex;

    align-items: center;

    gap: 14px;

    background:
        rgba(255,255,255,.025);

    border:
        1px solid
        rgba(255,255,255,.07);

    border-radius: 12px;

    transition:
        transform .25s ease,
        border-color .25s ease;
}

.shortcut-card:hover {
    transform: translateY(-3px);

    border-color:
        rgba(0,120,255,.35);
}

.shortcut-card > div:last-child {
    display: flex;
    flex-direction: column;
}

.shortcut-card strong {
    font-size: 13px;
}

.shortcut-card span {
    color: #748196;
    font-size: 10px;
}

.shortcut-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    font-size: 17px;
}

.shortcut-icon.blue {
    background: rgba(0,120,255,.15);
    color: #3194ff;
}

.shortcut-icon.red {
    background: rgba(235,0,45,.14);
    color: #ff4057;
}

.shortcut-icon.gradient {
    background:
        linear-gradient(
            135deg,
            rgba(0,120,255,.18),
            rgba(225,0,55,.18)
        );
}

.shortcut-icon.white {
    background:
        rgba(255,255,255,.08);
}


/* =========================================================
   SEÇÕES
========================================================= */

.program-section,
.news-section,
.about-section,
.social-section,
.contact-section {
    padding: 90px 0;
}

.program-section {
    background: #080f1c;
}

.news-section {
    background: #060b15;
}

.about-section {
    background: #080f1c;
}

.social-section {
    background: #060b15;
}

.contact-section {
    background: #080f1c;
}


/* =========================================================
   TÍTULOS
========================================================= */

.section-title {
    max-width: 650px;

    margin-bottom: 45px;
}

.section-title > span {
    color: #348eff;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 2px;
}

.section-title h2 {
    margin-top: 7px;

    font-size: 38px;

    line-height: 1.15;
}

.section-title p {
    margin-top: 10px;

    color: #7f8ca0;

    font-size: 14px;
}


/* =========================================================
   PROGRAMAÇÃO ATUAL
========================================================= */

.current-program {
    position: relative;

    margin-bottom: 25px;

    padding: 22px 25px;

    display: grid;

    grid-template-columns: 1fr auto;

    gap: 15px;

    border:
        1px solid
        rgba(0,120,255,.25);

    border-radius: 16px;

    background:
        linear-gradient(
            110deg,
            rgba(0,91,212,.13),
            rgba(229,9,32,.08)
        );

    overflow: hidden;
}

.current-program::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 3px;

    background:
        linear-gradient(
            180deg,
            #0878ff,
            #ff3048
        );
}

.current-program-live {
    grid-column: 1 / -1;

    display: flex;
    align-items: center;

    gap: 7px;

    color: #ff4057;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1.5px;
}

.current-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #ff3048;

    box-shadow:
        0 0 10px
        rgba(255,48,72,.8);

    animation:
        currentPulse 1.4s infinite;
}

@keyframes currentPulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: .35;
    }

    100% {
        opacity: 1;
    }
}

.current-program-info {
    display: flex;

    align-items: center;

    gap: 15px;
}

.current-program-icon {
    width: 55px;
    height: 55px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #0878ff,
            #304fff
        );

    font-size: 22px;
}

.current-program-info > div:last-child > span {
    color: #6e7d92;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1.5px;
}

.current-program-info h3 {
    margin-top: 2px;

    font-size: 19px;
}

.current-program-info p {
    margin-top: 2px;

    color: #7e8ca0;

    font-size: 11px;
}

.current-program-time {
    min-width: 75px;

    display: flex;
    flex-direction: column;

    align-items: flex-end;
    justify-content: center;
}

.current-program-time strong {
    font-size: 20px;
}

.current-program-time span {
    margin-top: 2px;

    color: #ff4057;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 1px;
}


/* =========================================================
   CARDS DE PROGRAMAÇÃO
========================================================= */

.program-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;
}

.program-card {
    min-height: 135px;

    padding: 20px;

    display: grid;

    grid-template-columns:
        30px 50px 1fr auto;

    align-items: center;

    gap: 15px;

    background:
        rgba(255,255,255,.025);

    border:
        1px solid
        rgba(255,255,255,.07);

    border-radius: 14px;

    transition:
        transform .25s ease,
        border-color .25s ease;
}

.program-card:hover {
    transform: translateY(-3px);

    border-color:
        rgba(0,120,255,.3);
}

.program-number {
    color: #3d4b60;

    font-size: 11px;
    font-weight: 900;
}

.program-icon {
    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background:
        rgba(255,255,255,.05);

    font-size: 19px;
}

.program-icon.red {
    background: rgba(230,0,45,.12);
}

.program-icon.blue {
    background: rgba(0,120,255,.12);
}

.program-icon.gradient {
    background:
        linear-gradient(
            135deg,
            rgba(0,120,255,.13),
            rgba(230,0,45,.13)
        );
}

.program-content span {
    color: #6d7b90;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1.5px;
}

.program-content h3 {
    margin-top: 2px;

    font-size: 15px;
}

.program-content p {
    color: #738095;

    font-size: 11px;
}

.program-time {
    color: #ffffff;

    font-size: 14px;
}


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

.noticia-destaque {
    margin-bottom: 25px;

    display: grid;

    grid-template-columns:
        300px 1fr;

    min-height: 230px;

    overflow: hidden;

    border:
        1px solid
        rgba(255,255,255,.08);

    border-radius: 16px;

    background:
        linear-gradient(
            120deg,
            #0d1c31,
            #09111f
        );

    transition:
        transform .25s ease,
        border-color .25s ease;
}

.noticia-destaque:hover {
    transform: translateY(-3px);

    border-color:
        rgba(0,120,255,.3);
}

.destaque-visual {
    min-height: 230px;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #075bd4,
            #263cff,
            #d90032
        );
}

.destaque-icone {
    width: 95px;
    height: 95px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 20px;

    background:
        rgba(255,255,255,.12);

    border:
        1px solid
        rgba(255,255,255,.25);

    font-size: 45px;

    backdrop-filter: blur(10px);
}

.destaque-conteudo {
    padding: 30px;

    display: flex;
    flex-direction: column;

    justify-content: center;
}

.destaque-categoria {
    color: #348eff;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 2px;
}

.destaque-titulo {
    max-width: 650px;

    margin-top: 8px;

    font-size: 28px;

    line-height: 1.15;
}

.destaque-texto {
    max-width: 600px;

    margin-top: 10px;

    color: #7d8ca1;

    font-size: 13px;
}

.destaque-footer {
    margin-top: 20px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.destaque-data {
    color: #536176;

    font-size: 9px;
}

.destaque-footer a {
    color: #ffffff;

    font-size: 10px;
    font-weight: 800;
}


/* =========================================================
   LEITOR DE NOTÍCIAS
========================================================= */

.leitor-noticias {
    margin-bottom: 30px;

    padding: 25px;

    border:
        1px solid
        rgba(255,255,255,.08);

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            #0d1b2d,
            #070e19
        );
}

.leitor-cabecalho {
    margin-bottom: 25px;
}

.leitor-voltar {
    padding: 10px 15px;

    border:
        1px solid
        rgba(255,255,255,.12);

    border-radius: 8px;

    background:
        rgba(255,255,255,.04);

    color: #ffffff;

    font-size: 11px;
    font-weight: 800;
}

.leitor-voltar:hover {
    background: #0878ff;
}

.noticia-completa {
    max-width: 850px;

    margin: 0 auto;
}

.noticia-completa-categoria {
    color: #348eff;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 2px;
}

.noticia-completa h2 {
    margin-top: 8px;

    font-size: 38px;

    line-height: 1.15;
}

.noticia-completa-data {
    margin-top: 10px;

    color: #64748b;

    font-size: 10px;
}

.noticia-completa-imagem {
    height: 260px;

    margin: 25px 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #075bd4,
            #263cff,
            #d90032
        );

    font-size: 65px;
}

.noticia-completa #noticiaTexto {
    color: #9aa7b9;

    font-size: 15px;

    line-height: 1.9;
}


/* =========================================================
   CARDS DE NOTÍCIAS
========================================================= */

.news-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}

.news-card {
    overflow: hidden;

    background: #0a1220;

    border:
        1px solid
        rgba(255,255,255,.07);

    border-radius: 14px;

    transition:
        transform .25s ease,
        border-color .25s ease;
}

.news-card:hover {
    transform: translateY(-4px);

    border-color:
        rgba(0,120,255,.30);
}

.news-image {
    height: 150px;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 40px;
}

.red-gradient {
    background:
        linear-gradient(
            135deg,
            #8e001f,
            #e5092d
        );
}

.blue-gradient {
    background:
        linear-gradient(
            135deg,
            #06499c,
            #0878ff
        );
}

.full-gradient {
    background:
        linear-gradient(
            135deg,
            #064c9e,
            #8d174f,
            #d9002e
        );
}

.news-body {
    padding: 20px;
}

.news-body > span {
    color: #348eff;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1.5px;
}

.news-body h3 {
    margin-top: 5px;

    font-size: 17px;
}

.news-body p {
    margin: 8px 0 15px;

    color: #748196;

    font-size: 12px;
}

.news-body a {
    color: #ffffff;

    font-size: 11px;
    font-weight: 800;
}


/* =========================================================
   SOBRE
========================================================= */

.about-grid {
    display: grid;

    grid-template-columns:
        380px 1fr;

    gap: 80px;

    align-items: center;
}

.about-logo-box {
    min-height: 350px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(255,255,255,.08);

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            #111e31,
            #070e19
        );
}

.about-logo-box img {
    width: 230px;
    height: 230px;

    object-fit: contain;
}

.about-content > span {
    color: #348eff;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 2px;
}

.about-content h2 {
    margin: 8px 0 18px;

    font-size: 40px;

    line-height: 1.1;
}

.about-content p {
    margin-bottom: 13px;

    color: #8a97aa;

    font-size: 14px;
}

.about-items {
    display: flex;

    gap: 12px;

    margin-top: 25px;
}

.about-items div {
    min-width: 110px;

    padding: 12px;

    display: flex;
    flex-direction: column;

    gap: 4px;

    border:
        1px solid
        rgba(255,255,255,.07);

    border-radius: 10px;

    background:
        rgba(255,255,255,.025);
}

.about-items strong {
    font-size: 18px;
}

.about-items span {
    color: #7a879b;

    font-size: 10px;
}


/* =========================================================
   REDES SOCIAIS
========================================================= */

.social-section {
    min-height: 200px;
}

#redes-sociais {
    width: 100%;
}


/* =========================================================
   ENVIE SUA NOTÍCIA
========================================================= */

.news-submit {
    margin-bottom: 40px;

    padding: 30px;

    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 45px;

    border:
        1px solid
        rgba(0,120,255,.20);

    border-radius: 18px;

    background:
        linear-gradient(
            120deg,
            rgba(0,91,212,.10),
            rgba(229,9,32,.06)
        );
}

.news-submit-content {
    display: flex;

    flex-direction: column;

    justify-content: center;
}

.news-submit-content > span {
    color: #348eff;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 2px;
}

.news-submit-content h2 {
    margin-top: 7px;

    font-size: 30px;

    line-height: 1.15;
}

.news-submit-content p {
    max-width: 430px;

    margin-top: 10px;

    color: #7d8ca1;

    font-size: 13px;
}

.news-submit-form {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.news-submit-form input,
.news-submit-form textarea {
    width: 100%;

    padding: 13px 14px;

    border:
        1px solid
        rgba(255,255,255,.10);

    border-radius: 9px;

    outline: none;

    background:
        rgba(0,0,0,.20);

    color: #ffffff;

    font-size: 12px;

    resize: vertical;

    transition:
        border-color .2s ease,
        background .2s ease;
}

.news-submit-form input::placeholder,
.news-submit-form textarea::placeholder {
    color: #66758b;
}

.news-submit-form input:focus,
.news-submit-form textarea:focus {
    border-color: #0878ff;

    background:
        rgba(0,100,220,.06);
}

.news-submit-form button {
    border: none;

    align-self: flex-start;
}


/* =========================================================
   CONTATO
========================================================= */

.contact-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}

.contact-card {
    padding: 28px;

    background:
        rgba(255,255,255,.025);

    border:
        1px solid
        rgba(255,255,255,.07);

    border-radius: 15px;

    transition:
        transform .25s ease,
        border-color .25s ease;
}

.contact-card:hover {
    transform: translateY(-4px);

    border-color:
        rgba(0,120,255,.35);
}

.contact-icon {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 15px;

    border-radius: 12px;

    background:
        rgba(0,120,255,.12);

    font-size: 20px;
}

.contact-card h3 {
    font-size: 18px;
}

.contact-card p {
    margin: 6px 0 15px;

    color: #748196;

    font-size: 12px;
}

.contact-card strong {
    color: #348eff;

    font-size: 11px;
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    padding: 55px 0;

    background:
        linear-gradient(
            100deg,
            #075bd4,
            #2b4fff,
            #d60032
        );
}

.cta-content {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.cta-content > div > span {
    font-size: 10px;
    font-weight: 900;

    letter-spacing: 2px;
}

.cta-content h2 {
    margin-top: 5px;

    font-size: 30px;
}

.cta-content p {
    margin-top: 4px;

    color: rgba(255,255,255,.8);

    font-size: 13px;
}

.button-white {
    background: #ffffff;

    color: #07101f;
}


/* =========================================================
   RODAPÉ
========================================================= */

.site-footer {
    padding-top: 60px;

    background: #030711;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        2fr 1fr 1fr 1.5fr;

    gap: 50px;

    padding-bottom: 45px;
}

.footer-logo {
    width: 150px;
    height: 70px;

    display: block;
}

.footer-logo img {
    width: 150px;
    height: 70px;

    object-fit: contain;
}

.footer-brand p {
    max-width: 260px;

    margin-top: 15px;

    color: #68768b;

    font-size: 12px;
}

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 9px;
}

.footer-column h3 {
    margin-bottom: 8px;

    font-size: 13px;
}

.footer-column a,
.footer-column span {
    color: #68768b;

    font-size: 11px;

    transition:
        color .2s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    min-height: 60px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    border-top:
        1px solid
        rgba(255,255,255,.06);

    color: #4e5b6e;

    font-size: 9px;
}


/* =========================================================
   WHATSAPP
========================================================= */

.whatsapp-float {
    position: fixed;

    right: 25px;
    bottom: 20px;

    z-index: 200;

    width: 56px;
    height: 56px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #20d66b;

    color: #ffffff;

    font-size: 23px;

    box-shadow:
        0 10px 30px
        rgba(0,0,0,.35);

    transition:
        transform .25s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .main-nav {
        gap: 18px;
    }

    .hero-content {
        grid-template-columns: 1fr;

        gap: 45px;

        padding:
            55px 0 70px;
    }

    .hero-section {
        min-height: auto;
    }

    .hero-content {
        min-height: auto;
    }

    .hero-text {
        text-align: center;
    }

    .live-label {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-text > p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .radio-player {
        margin: 0 auto;

        max-width: 430px;
    }

    .shortcut-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .about-logo-box {
        width: 100%;
        max-width: 400px;

        margin: 0 auto;
    }

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


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

    .container {
        width:
            calc(100% - 28px);
    }

    .header-content {
        width:
            calc(100% - 28px);

        gap: 15px;
    }

    .main-nav {
        position: fixed;

        top: 110px;
        left: 0;
        right: 0;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding:
            10px 20px 20px;

        background:
            #060b15;

        border-bottom:
            1px solid
            rgba(255,255,255,.08);

        box-shadow:
            0 20px 30px
            rgba(0,0,0,.35);
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        padding: 13px 5px;
    }

    .main-nav a::after {
        display: none;
    }

    .menu-button {
        display: flex;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 35px;
    }

    .noticia-destaque {
        grid-template-columns: 1fr;
    }

    .destaque-visual {
        min-height: 160px;
    }

    .destaque-conteudo {
        padding: 22px;
    }

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

    .news-submit {
        grid-template-columns: 1fr;

        gap: 25px;

        padding: 22px;
    }
}


/* =========================================================
   CELULAR PEQUENO
========================================================= */

@media (max-width: 600px) {

    .top-bar-content {
        width:
            calc(100% - 28px);

        justify-content: center;
    }

    .top-bar-content > span:nth-child(2) {
        display: none;
    }

    .site-logo {
        width: 115px;
        height: 60px;
    }

    .site-logo img {
        width: 115px;
        height: 60px;
    }

    .hero-content {
        padding:
            50px 0 60px;
    }

    .hero-text h1 {
        font-size: 48px;

        letter-spacing: -2px;
    }

    .hero-text > p {
        font-size: 14px;
    }

    .hero-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .button {
        width: 100%;
    }

    .hero-stats {
        gap: 20px;
    }

    .radio-player {
        padding: 20px;

        min-height: 480px;

        border-radius: 18px;
    }

    .player-logo-area {
        height: 185px;
    }

    .player-ring {
        width: 160px;
        height: 160px;
    }

    .player-logo {
        width: 68px;
        height: 68px;
    }

    .player-volume {
        gap: 5px;
    }

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

    #volumeValue {
        width: 30px;
    }

    .shortcut-grid {
        grid-template-columns: 1fr;
    }

    .program-grid {
        grid-template-columns: 1fr;
    }

    .program-card {
        grid-template-columns:
            25px 45px 1fr auto;

        gap: 10px;

        padding: 15px;
    }

    .program-content p {
        display: none;
    }

    .program-time {
        font-size: 12px;
    }

    .program-section,
    .news-section,
    .about-section,
    .social-section,
    .contact-section {
        padding: 65px 0;
    }

    .section-title h2 {
        font-size: 31px;
    }

    .about-logo-box {
        min-height: 280px;
    }

    .about-logo-box img {
        width: 190px;
        height: 190px;
    }

    .about-content h2 {
        font-size: 32px;
    }

    .about-items {
        flex-wrap: wrap;
    }

    .cta-content {
        flex-direction: column;

        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        padding: 18px 0;

        flex-direction: column;

        align-items: flex-start;

        gap: 5px;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;

        width: 52px;
        height: 52px;
    }

    .current-program {
        padding: 18px;

        grid-template-columns: 1fr;
    }

    .current-program-time {
        align-items: flex-start;
    }

    .current-program-info h3 {
        font-size: 17px;
    }

    .noticia-completa h2 {
        font-size: 28px;
    }

    .noticia-completa-imagem {
        height: 190px;
    }

    .news-submit-content h2 {
        font-size: 26px;
    }

    .news-submit-form button {
        width: 100%;
    }
}


/* =========================================================
   AJUSTES FINAIS DE SEGURANÇA
========================================================= */

/* Evita qualquer elemento criando rolagem horizontal */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Mantém imagens dentro dos seus blocos */
img {
    max-width: 100%;
}

/* Evita textos estourando os cards */
h1,
h2,
h3,
p,
span {
    overflow-wrap: break-word;
}

/* Mantém o conteúdo abaixo do cabeçalho fixo */
main {
    position: relative;
    z-index: 1;
}

/* Player nunca ultrapassa sua coluna */
.radio-player {
    min-width: 0;
}

/* Formulários não ultrapassam os cards */
.news-submit-form {
    min-width: 0;
}

/* =========================================================
   CORREÇÃO DO HERO - PIEDADE FM
========================================================= */

.hero-section {
    position: relative !important;
    min-height: 650px !important;
    overflow: hidden !important;
}

.hero-content {
    position: relative !important;

    z-index: 10 !important;

    width: min(1180px, calc(100% - 40px)) !important;

    min-height: 650px !important;

    margin: 0 auto !important;

    display: grid !important;

    grid-template-columns:
        minmax(0, 1fr) 430px !important;

    gap: 60px !important;

    align-items: center !important;
}

.hero-text {
    position: relative !important;

    z-index: 20 !important;

    display: block !important;

    visibility: visible !important;

    opacity: 1 !important;

    width: 100% !important;

    color: #ffffff !important;

    text-align: left !important;
}

.hero-text h1 {
    display: block !important;

    visibility: visible !important;

    opacity: 1 !important;

    color: #ffffff !important;

    font-size: clamp(50px, 5.5vw, 76px) !important;

    line-height: .98 !important;

    margin: 0 0 22px 0 !important;
}

.hero-text h1 span {
    display: block !important;

    visibility: visible !important;

    opacity: 1 !important;

    background:
        linear-gradient(
            90deg,
            #0878ff,
            #6366ff,
            #e52b91
        ) !important;

    -webkit-background-clip: text !important;
    background-clip: text !important;

    -webkit-text-fill-color: transparent !important;
}

.hero-text > p {
    display: block !important;

    visibility: visible !important;

    opacity: 1 !important;

    max-width: 620px !important;

    color: #aab5c5 !important;

    font-size: 15px !important;

    margin: 0 0 28px 0 !important;
}

.hero-actions {
    display: flex !important;

    visibility: visible !important;

    opacity: 1 !important;

    justify-content: flex-start !important;

    flex-direction: row !important;

    gap: 10px !important;

    margin-bottom: 35px !important;
}

.hero-stats {
    display: flex !important;

    visibility: visible !important;

    opacity: 1 !important;

    justify-content: flex-start !important;

    gap: 35px !important;
}

.radio-player {
    position: relative !important;

    z-index: 20 !important;

    width: 100% !important;

    max-width: 430px !important;

    margin: 0 0 0 auto !important;
}


/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 1051px) {

    .hero-content {
        grid-template-columns:
            minmax(0, 1fr) 430px !important;

        align-items: center !important;
    }

}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 1050px) {

    .hero-content {
        grid-template-columns: 1fr !important;

        min-height: auto !important;

        padding: 60px 0 !important;

        gap: 45px !important;
    }

    .hero-text {
        text-align: center !important;
    }

    .hero-actions {
        justify-content: center !important;
    }

    .hero-stats {
        justify-content: center !important;
    }

    .radio-player {
        margin: 0 auto !important;
    }

}

/* =========================================================
   REDES SOCIAIS
========================================================= */

.redes-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

    width: 100%;
}

.rede-card {
    min-height: 150px;

    padding: 22px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    border:
        1px solid
        rgba(255,255,255,.08);

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.015)
        );

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.rede-card:hover {
    transform: translateY(-4px);

    border-color:
        rgba(255,255,255,.18);

    box-shadow:
        0 15px 35px
        rgba(0,0,0,.25);
}

.rede-icone {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background:
        rgba(255,255,255,.08);

    color: #ffffff;

    font-size: 21px;
    font-weight: 900;
}

.rede-info {
    display: flex;

    flex-direction: column;

    margin-top: 15px;
}

.rede-info strong {
    color: #ffffff;

    font-size: 16px;
}

.rede-info span {
    margin-top: 3px;

    color: #718096;

    font-size: 10px;
}

.rede-botao {
    width: 100%;

    margin-top: 15px;

    min-height: 34px;

    border:
        1px solid
        rgba(255,255,255,.08);

    border-radius: 8px;

    background:
        rgba(255,255,255,.035);

    color: #66758b;

    font-size: 9px;
    font-weight: 800;

    cursor: default;
}


/* INSTAGRAM */

.rede-instagram .rede-icone {
    background:
        linear-gradient(
            135deg,
            #6b2cff,
            #e52d8a,
            #ff9b32
        );
}


/* FACEBOOK */

.rede-facebook .rede-icone {
    background:
        #1877f2;
}


/* YOUTUBE */

.rede-youtube .rede-icone {
    background:
        #ff0033;
}


/* WHATSAPP */

.rede-whatsapp .rede-icone {
    background:
        #20d66b;
}


/* CELULAR */

@media (max-width: 900px) {

    .redes-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}

@media (max-width: 550px) {

    .redes-grid {
        grid-template-columns: 1fr;
    }

}

/* =========================================================
   CONTATO — PIEDADE FM
========================================================= */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.contact-card {
    position: relative;

    min-height: 190px;

    padding: 25px;

    display: flex;
    flex-direction: column;

    justify-content: flex-start;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.015)
        );

    overflow: hidden;

    transition:
        transform .25s ease,
        border-color .25s ease;
}

.contact-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            #0878ff,
            #e50932
        );
}

.contact-card:hover {
    transform: translateY(-4px);

    border-color:
        rgba(0,120,255,.28);
}

.contact-icon {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border-radius: 12px;

    background:
        rgba(0,120,255,.12);

    color: #3b94ff;

    font-size: 21px;
}

.contact-card h3 {
    color: #ffffff;

    font-size: 18px;

    line-height: 1.2;
}

.contact-card p {
    margin-top: 7px;

    color: #7d8ca1;

    font-size: 12px;

    line-height: 1.6;
}

.contact-card strong {
    display: block;

    margin-top: auto;
    padding-top: 18px;

    color: #3b94ff;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* CORES DOS ÍCONES */

.contact-card:nth-child(1) .contact-icon {
    background:
        rgba(0,120,255,.13);

    color: #3b94ff;
}

.contact-card:nth-child(2) .contact-icon {
    background:
        rgba(229,9,50,.12);

    color: #ff4057;
}

.contact-card:nth-child(3) .contact-icon {
    background:
        rgba(32,214,107,.12);

    color: #20d66b;
}


/* CELULAR */

@media (max-width: 800px) {

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        min-height: 170px;
    }

}

/* =========================================================
   RODAPÉ PROFISSIONAL — PIEDADE FM 89,3
========================================================= */

.site-footer {
    position: relative;

    padding-top: 65px;

    background:
        linear-gradient(
            180deg,
            #050b16 0%,
            #02050b 100%
        );

    border-top:
        1px solid
        rgba(255,255,255,.08);

    overflow: hidden;
}

.site-footer::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            #0878ff 0%,
            #385cff 45%,
            #e50932 100%
        );
}


/* =========================================================
   CONTEÚDO
========================================================= */

.footer-grid {
    position: relative;

    display: grid;

    grid-template-columns:
        2fr 1fr 1fr 1.5fr;

    gap: 45px;

    padding-bottom: 50px;
}


/* =========================================================
   MARCA
========================================================= */

.footer-brand {
    min-width: 0;
}

.footer-logo {
    width: 150px;
    height: 70px;

    display: flex;

    align-items: center;
}

.footer-logo img {
    width: 150px;
    height: 70px;

    object-fit: contain;
}

.footer-brand p {
    max-width: 280px;

    margin-top: 16px;

    color: #68768b;

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   COLUNAS
========================================================= */

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.footer-column h3 {
    position: relative;

    margin-bottom: 8px;

    color: #ffffff;

    font-size: 14px;
}

.footer-column h3::after {
    content: "";

    display: block;

    width: 28px;
    height: 2px;

    margin-top: 8px;

    border-radius: 5px;

    background:
        linear-gradient(
            90deg,
            #0878ff,
            #e50932
        );
}

.footer-column a,
.footer-column span {
    color: #68768b;

    font-size: 11px;

    transition:
        color .2s ease,
        transform .2s ease;
}

.footer-column a:hover {
    color: #ffffff;

    transform: translateX(3px);
}


/* =========================================================
   RODAPÉ INFERIOR
========================================================= */

.footer-bottom {
    min-height: 65px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    border-top:
        1px solid
        rgba(255,255,255,.06);

    color: #4e5b6e;

    font-size: 9px;
}


/* =========================================================
   DESTAQUE 89,3
========================================================= */

.footer-bottom span:last-child {
    color: #68768b;

    font-weight: 700;
}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 800px) {

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

    .footer-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 35px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

}


/* =========================================================
   CELULAR PEQUENO
========================================================= */

@media (max-width: 550px) {

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        min-height: auto;

        padding: 20px 0;

        flex-direction: column;

        align-items: flex-start;

        gap: 7px;

        line-height: 1.5;
    }

}

/* =========================================================
   CONTROLES PLAY / PAUSE
========================================================= */

.player-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 18px 0;
}

.play-button,
.pause-button {
    width: 64px;
    height: 64px;

    border: 0;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #0878ff,
            #e50932
        );

    color: #ffffff;

    font-size: 22px;
    font-weight: 900;

    cursor: pointer;

    box-shadow:
        0 10px 30px
        rgba(8,120,255,.25);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.play-button:hover,
.pause-button:hover {
    transform: scale(1.06);

    box-shadow:
        0 14px 35px
        rgba(8,120,255,.35);
}

.pause-button {
    background:
        linear-gradient(
            135deg,
            #e50932,
            #0878ff
        );
}

.news-date {
    margin-top: 7px;
    margin-bottom: 8px;

    color: #68778b;

    font-size: 8px;

    font-weight: 600;
}

/* ==================================================
   CORREÇÃO DO TEXTO DAS NOTÍCIAS
================================================== */

.news-card {
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
}

.news-body {
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
}

.news-body p {
    display: block !important;

    height: auto !important;
    max-height: none !important;

    overflow: visible !important;

    margin: 8px 0 15px !important;

    color: #748196 !important;

    font-size: 12px !important;

    line-height: 1.6 !important;

    white-space: normal !important;
}

/* =========================================
   AJUSTE DO BLOCO "NOTÍCIAS DA COMUNIDADE"
========================================= */

.noticias-destaque {
    transform: translateY(-15px);
    position: relative;
    z-index: 2;
}

/* =========================================================
   RÁDIO PIEDADE WEB
   PLAYER — ACABAMENTO PROFISSIONAL
========================================================= */

.radio-player {
    position: relative;

    border-color:
        rgba(255,255,255,.13);

    box-shadow:
        0 25px 70px rgba(0,0,0,.50),
        0 0 35px rgba(0,100,255,.08);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


/* Brilho discreto quando o mouse passa */

.radio-player:hover {
    transform: translateY(-3px);

    border-color:
        rgba(0,120,255,.28);

    box-shadow:
        0 30px 80px rgba(0,0,0,.55),
        0 0 45px rgba(0,100,255,.12);
}


/* =========================================================
   INDICADOR AO VIVO
========================================================= */

.player-live {
    padding:
        6px 10px;

    border:
        1px solid
        rgba(255,23,60,.20);

    border-radius:
        50px;

    background:
        rgba(255,23,60,.06);

    box-shadow:
        0 0 18px
        rgba(255,23,60,.06);
}


.player-live i {
    animation:
        playerLivePulse 1.4s
        ease-in-out
        infinite;
}


@keyframes playerLivePulse {

    0% {
        opacity: 1;
        transform: scale(1);
        box-shadow:
            0 0 5px
            rgba(255,23,60,.5);
    }

    50% {
        opacity: .45;
        transform: scale(.75);
        box-shadow:
            0 0 15px
            rgba(255,23,60,1);
    }

    100% {
        opacity: 1;
        transform: scale(1);
        box-shadow:
            0 0 5px
            rgba(255,23,60,.5);
    }

}


/* =========================================================
   LOGO DO PLAYER
========================================================= */

.player-ring {
    transition:
        transform .4s ease,
        box-shadow .4s ease;
}


.radio-playing .player-ring {
    box-shadow:
        0 0 0 8px
        rgba(0,110,255,.04),

        0 0 0 16px
        rgba(255,48,72,.025),

        0 20px 55px
        rgba(0,0,0,.50);
}


/* =========================================================
   BOTÃO PLAY
========================================================= */

.play-button {
    position: relative;

    width: 64px;
    height: 64px;

    box-shadow:
        0 12px 30px
        rgba(225,0,35,.35);
}


.play-button::before {
    content: "";

    position: absolute;

    inset: -7px;

    border-radius: 50%;

    border:
        1px solid
        rgba(255,48,72,.25);

    opacity: 0;

    transform: scale(.85);
}


.radio-playing .play-button::before {

    opacity: 1;

    animation:
        playPulse 1.7s
        ease-out
        infinite;

}


@keyframes playPulse {

    0% {
        opacity: .8;
        transform: scale(.85);
    }

    70% {
        opacity: 0;
        transform: scale(1.25);
    }

    100% {
        opacity: 0;
        transform: scale(1.25);
    }

}


.play-button:hover {
    transform:
        scale(1.08);
}


/* =========================================================
   VISUALIZADOR DE ÁUDIO
========================================================= */

.audio-visualizer {
    height: 38px;

    margin-top: 14px;

    gap: 4px;
}


.audio-visualizer span {
    width: 3px;

    min-height: 6px;

    border-radius:
        10px;

    transform-origin:
        center;

    opacity: .75;
}


.radio-playing
.audio-visualizer
span {
    opacity: 1;
}


/* =========================================================
   CONTROLE DE VOLUME
========================================================= */

.player-volume {
    padding:
        8px 10px;

    border:
        1px solid
        rgba(255,255,255,.06);

    border-radius:
        10px;

    background:
        rgba(255,255,255,.025);
}


.volume-button {
    transition:
        background .2s ease,
        transform .2s ease,
        border-color .2s ease;
}


.volume-button:hover {
    border-color:
        rgba(0,120,255,.35);

    background:
        rgba(0,120,255,.12);

    transform:
        scale(1.05);
}


/* =========================================================
   STATUS DA TRANSMISSÃO
========================================================= */

.player-status {
    margin-top: 15px;

    padding-top: 13px;
}


.radio-playing .player-status {
    color: #8ea1bb;
}


.radio-playing .player-status::before {
    content: "●";

    margin-right: 5px;

    color: #ff3048;

    text-shadow:
        0 0 8px
        rgba(255,48,72,.8);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .radio-player {
        box-shadow:
            0 20px 50px
            rgba(0,0,0,.45);
    }

    .play-button {
        width: 62px;
        height: 62px;
    }

}

/* =========================================================
   RÁDIO PIEDADE WEB
   PLAYER PROFISSIONAL
   LOGOMARCA PNG TRANSPARENTE
========================================================= */


/* =========================================================
   PLAYER PRINCIPAL
========================================================= */

.radio-player {
    position: relative !important;

    width: 100% !important;
    max-width: 430px !important;

    min-height: 500px !important;

    margin-left: auto !important;

    padding: 25px !important;

    display: flex !important;
    flex-direction: column !important;

    background:
        linear-gradient(
            145deg,
            #0d1e33 0%,
            #091525 48%,
            #050b15 100%
        ) !important;

    border:
        1px solid
        rgba(90,145,255,.25) !important;

    border-radius: 22px !important;

    box-shadow:
        0 25px 70px rgba(0,0,0,.55),
        0 0 35px rgba(0,100,255,.08) !important;

    overflow: hidden !important;
}


/* brilho interno */

.radio-player::before {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    border-radius: 22px;

    background:
        radial-gradient(
            circle at 50% 30%,
            rgba(0,120,255,.08),
            transparent 35%
        );

    z-index: 0;
}


/* =========================================================
   CABEÇALHO
========================================================= */

.player-header {
    position: relative;

    z-index: 10;

    display: flex !important;

    align-items: center !important;

    justify-content: space-between !important;

    color: #aab5c5 !important;

    font-size: 11px !important;

    font-weight: 800 !important;
}


.player-live {
    display: flex !important;

    align-items: center !important;

    gap: 6px !important;

    padding: 5px 10px !important;

    border:
        1px solid
        rgba(255,40,65,.30) !important;

    border-radius: 30px !important;

    background:
        rgba(255,40,65,.05) !important;

    color: #ff4057 !important;
}


.player-live i {
    width: 6px !important;
    height: 6px !important;

    flex-shrink: 0;

    border-radius: 50% !important;

    background: #ff173c !important;

    box-shadow:
        0 0 10px
        rgba(255,23,60,.85) !important;

    animation:
        piedade-live 1.4s infinite ease-in-out !important;
}


@keyframes piedade-live {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .35;
        transform: scale(.7);
    }

}


/* =========================================================
   ÁREA DA LOGOMARCA
========================================================= */

.player-logo-area {
    position: relative !important;

    z-index: 5 !important;

    width: 100% !important;

    height: 205px !important;

    margin: 0 !important;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;
}


/* =========================================================
   CÍRCULO ATRÁS DA LOGOMARCA
========================================================= */

.player-ring {
    position: relative !important;

    width: 180px !important;
    height: 180px !important;

    flex-shrink: 0 !important;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    border-radius: 50% !important;

    background:
        radial-gradient(
            circle,
            #12243c 0%,
            #091526 58%,
            #050b15 100%
        ) !important;

    border:
        1px solid
        rgba(255,255,255,.12) !important;

    box-shadow:
        0 0 0 8px
        rgba(0,110,255,.025),

        0 18px 50px
        rgba(0,0,0,.50) !important;
}


/* =========================================================
   ANEL AZUL / ROXO / VERMELHO
========================================================= */

.player-ring::before {
    content: "";

    position: absolute;

    inset: -4px;

    border-radius: 50%;

    background:
        conic-gradient(
            from 210deg,
            #0878ff 0deg,
            #0878ff 100deg,
            #633ed1 165deg,
            #ff3048 240deg,
            #ff3048 300deg,
            #0878ff 360deg
        );

    z-index: -1;

    opacity: .90;
}


/* segundo brilho */

.player-ring::after {
    content: "";

    position: absolute;

    inset: -11px;

    border-radius: 50%;

    border:
        1px solid
        rgba(0,120,255,.12);

    box-shadow:
        0 0 25px
        rgba(0,100,255,.08);

    pointer-events: none;
}


/* =========================================================
   LOGOMARCA PNG
   IMPORTANTE:
   SEM FUNDO BRANCO
   SEM CORTE
========================================================= */

.player-logo {
    position: relative !important;

    z-index: 20 !important;

    width: 132px !important;

    height: 132px !important;

    flex-shrink: 0 !important;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    overflow: visible !important;

    border: none !important;

    border-radius: 0 !important;

    background:
        transparent !important;

    box-shadow:
        none !important;

    padding: 0 !important;
}


/* imagem PNG */

.player-logo img {
    display: block !important;

    width: 132px !important;

    height: 132px !important;

    max-width: none !important;

    max-height: none !important;

    object-fit: contain !important;

    object-position: center !important;

    background:
        transparent !important;

    border: none !important;

    border-radius: 0 !important;

    box-shadow: none !important;

    padding: 0 !important;
}


/* =========================================================
   PROTEÇÃO CONTRA CORTES
========================================================= */

.player-logo,
.player-logo img {
    clip-path: none !important;

    -webkit-clip-path: none !important;
}


/* =========================================================
   INFORMAÇÕES
========================================================= */

.player-info {
    position: relative !important;

    z-index: 10 !important;

    text-align: center !important;
}


.player-info > span {
    color: #ff3048 !important;

    font-size: 10px !important;

    font-weight: 900 !important;

    letter-spacing: 1.8px !important;

    text-shadow:
        0 0 10px
        rgba(255,48,72,.35);
}


.player-info h2 {
    margin-top: 3px !important;

    color: #ffffff !important;

    font-size: 23px !important;

    line-height: 1.2 !important;

    font-weight: 900 !important;
}


.player-info p {
    margin-top: 3px !important;

    color: #7d8ca1 !important;

    font-size: 11px !important;
}


/* =========================================================
   PLAY
========================================================= */

.player-main-button {
    position: relative;

    z-index: 10;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    margin-top: 17px !important;
}


.play-button {
    width: 60px !important;

    height: 60px !important;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    border: none !important;

    border-radius: 50% !important;

    background:
        linear-gradient(
            135deg,
            #0878ff,
            #663ed1 50%,
            #e50938
        ) !important;

    color: #ffffff !important;

    font-size: 20px !important;

    box-shadow:
        0 12px 30px
        rgba(0,0,0,.40),

        0 0 25px
        rgba(0,110,255,.15) !important;

    transition:
        transform .25s ease,
        box-shadow .25s ease !important;
}


.play-button:hover {
    transform: scale(1.06) !important;

    box-shadow:
        0 15px 35px
        rgba(0,0,0,.50),

        0 0 35px
        rgba(0,110,255,.25) !important;
}


/* =========================================================
   VISUALIZADOR
========================================================= */

.audio-visualizer {
    position: relative;

    z-index: 10;

    height: 34px !important;

    margin-top: 13px !important;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    gap: 4px !important;
}


.audio-visualizer span {
    width: 3px !important;

    height: 8px;

    border-radius: 10px;

    background:
        linear-gradient(
            180deg,
            #0878ff,
            #ff3048
        ) !important;
}


/* =========================================================
   CONTROLE DE VOLUME
========================================================= */

.player-volume {
    position: relative;

    z-index: 10;

    margin-top: 10px !important;

    padding: 8px !important;

    border:
        1px solid
        rgba(255,255,255,.07) !important;

    border-radius: 10px !important;

    background:
        rgba(255,255,255,.025) !important;
}


.volume-button {
    border:
        1px solid
        rgba(255,255,255,.08) !important;

    background:
        rgba(255,255,255,.04) !important;

    border-radius: 8px !important;
}


.volume-button:hover {
    background:
        linear-gradient(
            135deg,
            #0878ff,
            #e50938
        ) !important;

    border-color: transparent !important;
}


/* =========================================================
   STATUS
========================================================= */

.player-status {
    position: relative;

    z-index: 10;

    margin-top: 13px !important;

    padding-top: 12px !important;

    border-top:
        1px solid
        rgba(255,255,255,.06) !important;

    color: #718198 !important;

    font-size: 9px !important;
}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 600px) {

    .radio-player {
        max-width: 430px !important;

        min-height: 480px !important;

        padding: 20px !important;
    }

    .player-logo-area {
        height: 195px !important;
    }

    .player-ring {
        width: 170px !important;

        height: 170px !important;
    }

    .player-logo {
        width: 120px !important;

        height: 120px !important;
    }

    .player-logo img {
        width: 120px !important;

        height: 120px !important;
    }

}

/* =========================================================
   REMOVER TODOS OS PONTOS DO RODAPÉ DO PLAYER
========================================================= */

.radio-playing .player-status::before,
.radio-playing .player-status::after,
.player-status::before,
.player-status::after,
.player-status > span::before,
.player-status > span::after {
    content: none !important;
    display: none !important;
}

/* =========================================================
   WHATSAPP OFICIAL — BOTÃO FLUTUANTE
========================================================= */

.whatsapp-flutuante {
    position: fixed;

    right: 24px;
    bottom: 24px;

    width: 54px;
    height: 54px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #25D366;

    border-radius: 50%;

    text-decoration: none;

    z-index: 9999;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .30),
        0 0 20px rgba(37, 211, 102, .22);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


/* ÍCONE */

.whatsapp-flutuante svg {
    width: 31px;
    height: 31px;

    display: block;
}


/* HOVER */

.whatsapp-flutuante:hover {
    transform: scale(1.08);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .35),
        0 0 30px rgba(37, 211, 102, .40);
}


/* PULSO */

.whatsapp-flutuante::before {
    content: "";

    position: absolute;

    inset: -5px;

    border-radius: 50%;

    border:
        1px solid
        rgba(37, 211, 102, .45);

    animation:
        whatsapp-pulse
        2s
        ease-out
        infinite;
}


@keyframes whatsapp-pulse {

    0% {
        opacity: .8;
        transform: scale(.9);
    }

    70% {
        opacity: 0;
        transform: scale(1.35);
    }

    100% {
        opacity: 0;
        transform: scale(1.35);
    }

}


/* CELULAR */

@media (max-width: 600px) {

    .whatsapp-flutuante {
        right: 18px;
        bottom: 18px;

        width: 52px;
        height: 52px;
    }

    .whatsapp-flutuante svg {
        width: 29px;
        height: 29px;
    }

}

/* =========================================================
   WHATSAPP OFICIAL — BOTÃO FLUTUANTE
========================================================= */

.whatsapp-flutuante {
    position: fixed;

    right: 24px;
    bottom: 24px;

    width: 54px;
    height: 54px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #25D366;

    border-radius: 50%;

    text-decoration: none;

    z-index: 9999;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .30),
        0 0 20px rgba(37, 211, 102, .22);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


/* ÍCONE */

.whatsapp-flutuante svg {
    width: 31px;
    height: 31px;

    display: block;
}


/* HOVER */

.whatsapp-flutuante:hover {
    transform: scale(1.08);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .35),
        0 0 30px rgba(37, 211, 102, .40);
}


/* PULSO */

.whatsapp-flutuante::before {
    content: "";

    position: absolute;

    inset: -5px;

    border-radius: 50%;

    border:
        1px solid
        rgba(37, 211, 102, .45);

    animation:
        whatsapp-pulse
        2s
        ease-out
        infinite;
}


@keyframes whatsapp-pulse {

    0% {
        opacity: .8;
        transform: scale(.9);
    }

    70% {
        opacity: 0;
        transform: scale(1.35);
    }

    100% {
        opacity: 0;
        transform: scale(1.35);
    }

}


/* CELULAR */

@media (max-width: 600px) {

    .whatsapp-flutuante {
        right: 18px;
        bottom: 18px;

        width: 52px;
        height: 52px;
    }

    .whatsapp-flutuante svg {
        width: 29px;
        height: 29px;
    }

}

/* =========================================================
   WHATSAPP 3D — RÁDIO PIEDADE WEB
========================================================= */

.whatsapp-flutuante {
    position: fixed !important;

    right: 25px !important;
    bottom: 20px !important;

    width: 58px !important;
    height: 58px !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    background: transparent !important;

    border: none !important;
    border-radius: 50% !important;

    text-decoration: none !important;

    z-index: 99999 !important;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, .35);

    transition:
        transform .25s ease,
        filter .25s ease;
}


/* LOGOMARCA 3D */

.whatsapp-flutuante img {
    width: 58px !important;
    height: 58px !important;

    display: block !important;

    object-fit: contain !important;

    background: transparent !important;

    border: none !important;

    filter:
        drop-shadow(
            0 7px 10px
            rgba(0, 0, 0, .35)
        );

    transition:
        transform .25s ease,
        filter .25s ease;
}


/* HALO VERDE */

.whatsapp-flutuante::before {
    content: "";

    position: absolute;

    width: 58px;
    height: 58px;

    border-radius: 50%;

    border:
        2px solid
        rgba(37, 211, 102, .35);

    animation:
        whatsapp3dPulse
        2.2s
        ease-out
        infinite;

    pointer-events: none;
}


/* BRILHO */

.whatsapp-flutuante::after {
    content: "";

    position: absolute;

    width: 20px;
    height: 20px;

    top: 6px;
    left: 8px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,.35),
            transparent 70%
        );

    filter: blur(3px);

    opacity: .65;

    pointer-events: none;
}


/* ANIMAÇÃO DO HALO */

@keyframes whatsapp3dPulse {

    0% {
        opacity: .7;

        transform:
            scale(.92);
    }

    70% {
        opacity: 0;

        transform:
            scale(1.35);
    }

    100% {
        opacity: 0;

        transform:
            scale(1.35);
    }

}


/* PASSOU O MOUSE */

.whatsapp-flutuante:hover {
    transform:
        scale(1.08);
}


.whatsapp-flutuante:hover img {
    filter:
        drop-shadow(
            0 9px 15px
            rgba(0, 0, 0, .45)
        )
        drop-shadow(
            0 0 12px
            rgba(37, 211, 102, .35)
        );
}


/* CELULAR */

@media (max-width: 800px) {

    .whatsapp-flutuante {
        right: 16px !important;
        bottom: 16px !important;

        width: 54px !important;
        height: 54px !important;
    }

    .whatsapp-flutuante img {
        width: 54px !important;
        height: 54px !important;
    }

    .whatsapp-flutuante::before {
        width: 54px;
        height: 54px;
    }

}
/* =========================================================
   WHATSAPP 3D — SOMENTE A LOGOMARCA
   SEM BOLA / SEM FUNDO ATRÁS
========================================================= */

.whatsapp-flutuante,
.whatsapp-float {
    position: fixed !important;

    right: 24px !important;
    bottom: 20px !important;

    width: 64px !important;
    height: 64px !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    background: transparent !important;

    border: none !important;

    border-radius: 0 !important;

    box-shadow: none !important;

    padding: 0 !important;

    overflow: visible !important;

    z-index: 99999 !important;

    text-decoration: none !important;
}


/* REMOVE QUALQUER EFEITO DE CÍRCULO ANTIGO */

.whatsapp-flutuante::before,
.whatsapp-flutuante::after,
.whatsapp-float::before,
.whatsapp-float::after {
    content: none !important;

    display: none !important;

    background: transparent !important;

    border: none !important;

    box-shadow: none !important;

    animation: none !important;
}


/* =========================================================
   LOGOMARCA 3D
========================================================= */

.whatsapp-flutuante img,
.whatsapp-float img {
    display: block !important;

    width: 64px !important;
    height: 64px !important;

    max-width: none !important;
    max-height: none !important;

    object-fit: contain !important;

    background: transparent !important;

    border: none !important;

    border-radius: 0 !important;

    padding: 0 !important;

    box-shadow: none !important;

    filter:
        drop-shadow(
            0 7px 10px
            rgba(0, 0, 0, .35)
        );

    transition:
        transform .25s ease,
        filter .25s ease !important;
}


/* =========================================================
   EFEITO 3D AO PASSAR O MOUSE
========================================================= */

.whatsapp-flutuante:hover img,
.whatsapp-float:hover img {
    transform: scale(1.08);

    filter:
        drop-shadow(
            0 9px 14px
            rgba(0, 0, 0, .45)
        )
        drop-shadow(
            0 0 12px
            rgba(37, 211, 102, .30)
        );
}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 600px) {

    .whatsapp-flutuante,
    .whatsapp-float {
        right: 16px !important;

        bottom: 16px !important;

        width: 58px !important;

        height: 58px !important;
    }

    .whatsapp-flutuante img,
    .whatsapp-float img {
        width: 58px !important;

        height: 58px !important;
    }

}

/* =========================================================
   RÁDIO PIEDADE WEB
   PROGRAMAÇÃO - ESTILO PROFISSIONAL
   NÃO ALTERA O TAMANHO GERAL DA SEÇÃO
========================================================= */

.program-section {
    position: relative;
    background: #050b15;
}


/* TÍTULO */

.program-section .section-title {
    position: relative;
    z-index: 2;
}

.program-section .section-title > span {
    color: #ff4057;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.program-section .section-title h2 {
    color: #ffffff;
}

.program-section .section-title p {
    color: #7e8ca0;
}


/* =========================================================
   PROGRAMA ATUAL
========================================================= */

.current-program {
    position: relative;

    margin-bottom: 18px;

    padding: 20px;

    display: grid;

    grid-template-columns: 1fr auto;

    gap: 15px;

    background:
        linear-gradient(
            135deg,
            rgba(8,120,255,.08),
            rgba(255,48,72,.045)
        );

    border: 1px solid
        rgba(255,255,255,.08);

    border-radius: 14px;

    box-shadow:
        0 12px 35px
        rgba(0,0,0,.22);

    overflow: hidden;
}


/* linha luminosa lateral */

.current-program::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 3px;

    background:
        linear-gradient(
            180deg,
            #0878ff,
            #633ed1,
            #ff3048
        );
}


/* =========================================================
   INDICADOR AO VIVO
========================================================= */

.current-program-live {
    grid-column: 1 / -1;

    display: flex;

    align-items: center;

    gap: 7px;

    color: #ff4057;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1.4px;
}

.current-dot {
    width: 7px;
    height: 7px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #ff3048;

    box-shadow:
        0 0 8px
        rgba(255,48,72,.8);

    animation:
        programLivePulse
        1.4s
        ease-in-out
        infinite;
}

@keyframes programLivePulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .35;
        transform: scale(.7);
    }
}


/* =========================================================
   INFORMAÇÕES DO PROGRAMA ATUAL
========================================================= */

.current-program-info {
    display: flex;

    align-items: center;

    gap: 15px;

    min-width: 0;
}


.current-program-icon {
    width: 55px;
    height: 55px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #0878ff,
            #304fff
        );

    font-size: 22px;

    box-shadow:
        0 8px 20px
        rgba(8,120,255,.15);
}


.current-program-info > div:last-child {
    min-width: 0;
}


.current-program-info > div:last-child > span {
    color: #6e7d92;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1.5px;
}


.current-program-info h3 {
    margin-top: 2px;

    color: #ffffff;

    font-size: 19px;
}


.current-program-info p {
    margin-top: 2px;

    color: #7e8ca0;

    font-size: 11px;
}


/* =========================================================
   HORÁRIO ATUAL
========================================================= */

.current-program-time {
    min-width: 75px;

    display: flex;

    flex-direction: column;

    align-items: flex-end;

    justify-content: center;
}


.current-program-time strong {
    color: #ffffff;

    font-size: 20px;

    font-weight: 900;
}


.current-program-time span {
    margin-top: 2px;

    color: #ff4057;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1px;
}


/* =========================================================
   CARDS DOS PROGRAMAS
========================================================= */

.program-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;
}


.program-card {
    position: relative;

    min-height: 135px;

    padding: 20px;

    display: grid;

    grid-template-columns:
        30px 50px 1fr auto;

    align-items: center;

    gap: 15px;

    background:
        rgba(255,255,255,.025);

    border:
        1px solid
        rgba(255,255,255,.07);

    border-radius: 14px;

    transition:
        transform .25s ease,
        border-color .25s ease,
        background .25s ease,
        box-shadow .25s ease;

    overflow: hidden;
}


.program-card:hover {
    transform:
        translateY(-3px);

    border-color:
        rgba(8,120,255,.28);

    background:
        rgba(8,120,255,.035);

    box-shadow:
        0 14px 30px
        rgba(0,0,0,.20);
}


/* número */

.program-number {
    color: #4c5d72;

    font-size: 11px;

    font-weight: 900;
}


/* ícone */

.program-icon {
    width: 50px;
    height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    font-size: 20px;

    box-shadow:
        0 8px 20px
        rgba(0,0,0,.20);
}


.program-icon.blue {
    background:
        linear-gradient(
            135deg,
            #0878ff,
            #304fff
        );
}


.program-icon.red {
    background:
        linear-gradient(
            135deg,
            #ff3048,
            #c91032
        );
}


.program-icon.gradient {
    background:
        linear-gradient(
            135deg,
            #0878ff,
            #7b3fd1,
            #ff3048
        );
}


/* conteúdo */

.program-content {
    min-width: 0;
}


.program-content > span {
    color: #66768b;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1.2px;
}


.program-content h3 {
    margin-top: 3px;

    color: #ffffff;

    font-size: 15px;

    font-weight: 850;
}


.program-content p {
    margin-top: 4px;

    color: #718096;

    font-size: 10px;

    line-height: 1.5;
}


/* horário do card */

.program-time {
    color: #ffffff;

    font-size: 15px;

    font-weight: 900;

    white-space: nowrap;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

    .program-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {

    .current-program {
        grid-template-columns: 1fr;
    }

    .current-program-time {
        align-items: flex-start;
    }

    .program-card {
        grid-template-columns:
            25px 45px 1fr auto;

        gap: 10px;

        padding: 15px;
    }

    .program-icon {
        width: 45px;
        height: 45px;

        font-size: 18px;
    }

    .program-content h3 {
        font-size: 14px;
    }

    .program-content p {
        font-size: 9px;
    }

}

/* =========================================================
   RELÓGIO DIGITAL — RÁDIO PIEDADE WEB
========================================================= */

.relogio-digital {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 22px;

    min-width: 145px;
    height: 52px;

    padding: 0 18px;

    border: 1px solid rgba(255, 255, 255, 0.10);

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.015)
        );

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 8px 25px rgba(0, 0, 0, 0.20);

    color: #ffffff;

    font-family:
        "Courier New",
        monospace;

    font-size: 25px;

    font-weight: 700;

    letter-spacing: 2px;

    line-height: 1;

    white-space: nowrap;

    position: relative;

    overflow: hidden;
}


/* brilho azul/roxo */

.relogio-digital::before {
    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 100%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(40, 120, 255, 0.10),
            rgba(150, 60, 255, 0.10),
            transparent
        );

    animation:
        brilhoRelogio
        4s
        ease-in-out
        infinite;
}


@keyframes brilhoRelogio {

    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }

}


/* ponto indicador */

.relogio-digital::after {
    content: "";

    position: absolute;

    width: 5px;
    height: 5px;

    left: 9px;
    top: 9px;

    border-radius: 50%;

    background: #ff3048;

    box-shadow:
        0 0 8px #ff3048;

    animation:
        relogioStatus
        1.5s
        ease-in-out
        infinite;
}


@keyframes relogioStatus {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .35;
    }

}


/* horário */

.relogio-digital span {
    position: relative;

    z-index: 2;

    text-shadow:
        0 0 8px rgba(255,255,255,.18);
}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 600px) {

    .relogio-digital {
        min-width: 130px;

        height: 48px;

        padding: 0 15px;

        font-size: 22px;

        margin-top: 18px;
    }

}

/* PUXAR NOTÍCIAS MAIS PARA CIMA */

.news-section {
    padding-top: 0 !important;
    margin-top: -30px !important;
}

/* =========================================================
   IMAGENS DAS NOTÍCIAS — NÃO CORTAR
========================================================= */

.news-image {
    width: 100%;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #091423;
}

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

/* =========================================
   MOVER ÁREA DE CONTATO PARA CIMA
========================================= */

.contact-section {
    margin-top: -50px !important;
}

.contact-section {
    margin-top: -80px !important;
}

/* =========================================================
   REMOVER REDES SOCIAIS E ÁREA DE CONTATO
========================================================= */

.social-section,
.contact-section {
    display: none !important;
}

/* =========================================================
   REMOVER TODA A ÁREA DE PROGRAMAÇÃO
========================================================= */

.programacao-section {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
    height: 0 !important;
    min-height: 0 !important;
}

/* =========================================
   REMOVER TODA A ÁREA DE PROGRAMAÇÃO
========================================= */

.program-section {
    display: none !important;
}

/* =========================================================
   OCULTAR ITENS DO MENU SUPERIOR
   Programação + Redes Sociais + Contato
========================================================= */

.main-nav a[href="#programacao"],
.main-nav a[href="#redes"],
.main-nav a[href="#contato"] {
    display: none !important;
}

/* =========================================================
   REMOVER ÁREA INFERIOR DO HERO
   RELÓGIO + BOTÕES + ESTATÍSTICAS
========================================================= */

.relogio-digital,
.hero-actions,
.hero-stats {
    display: none !important;
}

/* =========================================================
   REMOVER CABEÇALHO DA ÁREA DE NOTÍCIAS
========================================================= */

.news-section .section-title {
    display: none !important;
}

/* =====================================================
   LOGO PIEDADE WEB NO HERO
===================================================== */

.hero-section {
    position: relative !important;
    overflow: hidden !important;
}

.hero-section::after {
    content: "" !important;

    position: absolute !important;

    right: 700px !important;
    top: -150px !important;

    width: 1000px !important;
    height: 1000px !important;

    background-image: url("redsete.png") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;

    opacity: 0.10 !important;

    pointer-events: none !important;

    z-index: 1 !important;
}

.hero-content {
    position: relative !important;
    z-index: 2 !important;
}

.hero-text {
    position: relative !important;
    z-index: 3 !important;
}

/* =========================================================
   REMOVER TODA A ÁREA DE ATALHOS
========================================================= */

.shortcut-section {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
    height: 0 !important;
    min-height: 0 !important;
}

/* =========================================================
   ESPAÇAMENTO ENTRE AS ÁREAS DO SITE
========================================================= */

/* Espaço geral entre as seções */
section {
    margin-bottom: 70px;
}


/* =========================================================
   ÁREA PRINCIPAL / PLAYER
========================================================= */

.hero,
.hero-section,
.principal,
.inicio {
    margin-bottom: 70px;
}


/* =========================================================
   ÁREA DOS CARDS DE NOTÍCIAS
========================================================= */

.news-grid {
    gap: 28px !important;

    margin-top: 35px !important;
    margin-bottom: 60px !important;
}


/* Cada card fica mais separado */
.news-card {
    margin-bottom: 0 !important;
}


/* =========================================================
   ÁREA "ENVIE SUA NOTÍCIA"
========================================================= */

.envie-noticia,
.enviar-noticia,
.participe,
.news-submit,
.form-noticia {
    margin-top: 45px !important;
}


/* Se a área estiver dentro de um container */
.container > .envie-noticia,
.container > .enviar-noticia,
.container > .participe,
.container > .news-submit {
    margin-top: 50px !important;
}


/* =========================================================
   ESPAÇO ENTRE O GRID E O FORMULÁRIO
========================================================= */

.news-grid + *,
.news-grid ~ .envie-noticia,
.news-grid ~ .enviar-noticia {
    margin-top: 50px !important;
}


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

@media (max-width: 768px) {

    section {
        margin-bottom: 50px;
    }

    .news-grid {
        gap: 20px !important;
        margin-top: 25px !important;
        margin-bottom: 45px !important;
    }

    .envie-noticia,
    .enviar-noticia,
    .participe,
    .news-submit,
    .form-noticia {
        margin-top: 35px !important;
    }
}

/* =========================================================
   DIMINUIR O ZOOM DO SITE
========================================================= */

body {
    zoom: 99%;
}

/* =========================================================
   BOTÃO PLAY / PAUSE — DESIGN 3D PROFISSIONAL
========================================================= */

#playButton {
    width: 64px !important;
    height: 64px !important;

    min-width: 64px !important;
    min-height: 64px !important;

    padding: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border: 2px solid rgba(255, 255, 255, 0.18) !important;

    border-radius: 50% !important;

    background:
        radial-gradient(
            circle at 35% 28%,
            #ffffff 0%,
            #7c8cff 3%,
            #315cff 22%,
            #172d8f 55%,
            #080f35 100%
        ) !important;

    color: #ffffff !important;

    font-size: 22px !important;
    font-weight: 900 !important;

    cursor: pointer !important;

    box-shadow:
        0 8px 0 #070b20,
        0 12px 22px rgba(0, 0, 0, 0.45),
        0 0 20px rgba(50, 100, 255, 0.45),
        inset 0 2px 4px rgba(255, 255, 255, 0.45),
        inset 0 -8px 14px rgba(0, 0, 0, 0.35) !important;

    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.8) !important;

    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        filter 0.18s ease !important;

    position: relative !important;

    overflow: hidden !important;
}


/* BRILHO DO BOTÃO */

#playButton::before {
    content: "";

    position: absolute;

    top: 7px;
    left: 11px;

    width: 42px;
    height: 18px;

    border-radius: 50%;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.42),
            rgba(255,255,255,0)
        );

    transform: rotate(-12deg);

    pointer-events: none;
}


/* BORDA INTERNA */

#playButton::after {
    content: "";

    position: absolute;

    inset: 5px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,0.16);

    pointer-events: none;
}


/* AO PASSAR O MOUSE */

#playButton:hover {
    transform: translateY(-3px) scale(1.04) !important;

    filter: brightness(1.15);

    box-shadow:
        0 11px 0 #070b20,
        0 18px 30px rgba(0, 0, 0, 0.50),
        0 0 30px rgba(55, 110, 255, 0.65),
        inset 0 2px 5px rgba(255,255,255,0.5),
        inset 0 -8px 14px rgba(0,0,0,0.35) !important;
}


/* QUANDO CLICAR */

#playButton:active {
    transform: translateY(5px) scale(0.97) !important;

    box-shadow:
        0 3px 0 #070b20,
        0 7px 14px rgba(0,0,0,0.4),
        0 0 15px rgba(55,110,255,0.4),
        inset 0 3px 7px rgba(0,0,0,0.35) !important;
}


/* QUANDO A RÁDIO ESTIVER TOCANDO */

.radio-playing #playButton {
    background:
        radial-gradient(
            circle at 35% 28%,
            #ffffff 0%,
            #ff7aa0 4%,
            #ff3157 25%,
            #b9003d 60%,
            #42001e 100%
        ) !important;

    box-shadow:
        0 8px 0 #27000f,
        0 12px 25px rgba(0,0,0,0.45),
        0 0 28px rgba(255,30,90,0.60),
        inset 0 2px 4px rgba(255,255,255,0.45),
        inset 0 -8px 14px rgba(0,0,0,0.35) !important;
}


/* CELULAR */

@media (max-width: 600px) {

    #playButton {
        width: 58px !important;
        height: 58px !important;

        min-width: 58px !important;
        min-height: 58px !important;

        font-size: 20px !important;
    }

}

/* =========================================================
   EFEITO 3D PROFISSIONAL NA BOLA DA LOGO
========================================================= */

.player-ring {
    position: relative !important;

    width: 170px !important;
    height: 170px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 50% !important;

    background:
        radial-gradient(
            circle at 35% 30%,
            rgba(255,255,255,0.14),
            rgba(20,35,75,0.45) 35%,
            rgba(2,8,22,0.95) 72%,
            #02050d 100%
        ) !important;

    box-shadow:
        inset 0 8px 18px rgba(255,255,255,0.08),
        inset 0 -15px 25px rgba(0,0,0,0.75),
        0 0 25px rgba(0,110,255,0.35),
        0 0 55px rgba(130,0,255,0.20);

    isolation: isolate;
}


/* =========================================================
   ANEL DE LUZ EXTERNO
========================================================= */

.player-ring::before {

    content: "";

    position: absolute;

    inset: -6px;

    border-radius: 50%;

    background:
        conic-gradient(
            from 0deg,
            #0878ff,
            #00c8ff,
            #704cff,
            #d52cff,
            #ff1744,
            #0878ff
        );

    z-index: -2;

    animation:
        girarAnel 5s linear infinite;

    filter:
        blur(0.5px);

}


/* =========================================================
   SEGUNDO ANEL — BRILHO
========================================================= */

.player-ring::after {

    content: "";

    position: absolute;

    inset: -12px;

    border-radius: 50%;

    border: 1px solid
        rgba(40,140,255,0.35);

    box-shadow:
        0 0 12px rgba(0,110,255,0.5),
        0 0 30px rgba(130,0,255,0.25);

    z-index: -3;

    animation:
        pulsarAnel 2.8s ease-in-out infinite;

}


/* =========================================================
   LOGO
========================================================= */

.player-logo {

    position: relative !important;

    width: 135px !important;
    height: 135px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 50% !important;

    background:
        radial-gradient(
            circle,
            rgba(10,20,40,0.85),
            rgba(2,7,18,0.98)
        );

    box-shadow:
        inset 0 0 20px rgba(0,0,0,0.8),
        0 0 20px rgba(0,120,255,0.20);

    overflow: hidden;
}


/* LOGO PNG */

.player-logo img {

    width: 90% !important;
    height: 90% !important;

    object-fit: contain !important;

    filter:
        drop-shadow(0 5px 8px rgba(0,0,0,0.8))
        drop-shadow(0 0 8px rgba(255,255,255,0.10));

    animation:
        flutuarLogo 3s ease-in-out infinite;

}


/* =========================================================
   REFLEXO 3D
========================================================= */

.player-logo::before {

    content: "";

    position: absolute;

    top: 8px;
    left: 20px;

    width: 70px;
    height: 30px;

    border-radius: 50%;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.22),
            rgba(255,255,255,0)
        );

    transform:
        rotate(-20deg);

    pointer-events: none;

}


/* =========================================================
   ANIMAÇÕES
========================================================= */

@keyframes girarAnel {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


@keyframes pulsarAnel {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.55;
    }

    50% {
        transform: scale(1.06);
        opacity: 1;
    }

}


@keyframes flutuarLogo {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }

}

/* =========================================================
   ONDA SONORA LIMPA — SEM BARRA
========================================================= */

.live-label {
    position: relative !important;

    width: 230px !important;
    height: 55px !important;

    margin: 0 !important;
    padding: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;

    font-size: 0 !important;

    overflow: visible !important;
}


/* Remove todos os elementos anteriores */

.live-label i,
.live-label span {
    display: none !important;
}


/* =========================================================
   ONDA SONORA
========================================================= */

.live-label::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 230px;
    height: 55px;

    transform: translateY(-50%);

    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 230 55'%3E%3Cpath d='M0 27 C5 27 7 27 11 27 C15 27 16 18 20 18 C24 18 25 37 29 37 C33 37 34 10 38 10 C42 10 43 30 47 30 C51 30 52 22 56 22 C60 22 61 42 65 42 C69 42 70 7 74 7 C78 7 79 34 83 34 C87 34 88 17 92 17 C96 17 97 29 101 29 C105 29 106 12 110 12 C114 12 115 40 119 40 C123 40 124 20 128 20 C132 20 133 31 137 31 C141 31 142 8 146 8 C150 8 151 36 155 36 C159 36 160 16 164 16 C168 16 169 28 173 28 C177 28 178 13 182 13 C186 13 187 39 191 39 C195 39 196 21 200 21 C204 21 205 30 209 30 C213 30 214 17 218 17 C222 17 224 27 230 27' fill='none' stroke='%237ca7ff' stroke-width='2'/%3E%3C/svg%3E")
        center / 100% 100% no-repeat;

    filter:
        drop-shadow(0 0 4px rgba(70,130,255,0.9))
        drop-shadow(0 0 9px rgba(150,60,255,0.7))
        drop-shadow(0 0 14px rgba(255,30,90,0.35));

    animation: ondaReal 1.2s ease-in-out infinite alternate;

    pointer-events: none;
}


/* =========================================================
   SEGUNDA ONDA — BRILHO
========================================================= */

.live-label::after {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 230px;
    height: 55px;

    transform: translateY(-50%);

    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 230 55'%3E%3Cpath d='M0 27 C5 27 7 27 11 27 C15 27 16 18 20 18 C24 18 25 37 29 37 C33 37 34 10 38 10 C42 10 43 30 47 30 C51 30 52 22 56 22 C60 22 61 42 65 42 C69 42 70 7 74 7 C78 7 79 34 83 34 C87 34 88 17 92 17 C96 17 97 29 101 29 C105 29 106 12 110 12 C114 12 115 40 119 40 C123 40 124 20 128 20 C132 20 133 31 137 31 C141 31 142 8 146 8 C150 8 151 36 155 36 C159 36 160 16 164 16 C168 16 169 28 173 28 C177 28 178 13 182 13 C186 13 187 39 191 39 C195 39 196 21 200 21 C204 21 205 30 209 30 C213 30 214 17 218 17 C222 17 224 27 230 27' fill='none' stroke='%23ff3b78' stroke-width='1' opacity='.55'/%3E%3C/svg%3E")
        center / 100% 100% no-repeat;

    filter:
        blur(1px)
        drop-shadow(0 0 8px rgba(255,40,110,0.7));

    opacity: 0.6;

    animation: ondaBrilhoReal 0.9s ease-in-out infinite alternate;

    pointer-events: none;
}


/* =========================================================
   MOVIMENTO
========================================================= */

@keyframes ondaReal {

    0% {
        transform:
            translateY(-50%)
            scaleY(0.65)
            scaleX(0.96);

        opacity: 0.65;
    }

    50% {
        transform:
            translateY(-50%)
            scaleY(1.15)
            scaleX(1.02);

        opacity: 1;
    }

    100% {
        transform:
            translateY(-50%)
            scaleY(0.78)
            scaleX(0.98);

        opacity: 0.75;
    }
}


@keyframes ondaBrilhoReal {

    0% {
        transform:
            translateY(-50%)
            scaleY(0.75);

        opacity: 0.25;
    }

    100% {
        transform:
            translateY(-50%)
            scaleY(1.15);

        opacity: 0.7;
    }
}


/* =========================================================
   QUANDO A RÁDIO ESTIVER TOCANDO
========================================================= */

.radio-playing .live-label::before {
    filter:
        drop-shadow(0 0 5px rgba(50,130,255,1))
        drop-shadow(0 0 12px rgba(130,60,255,0.9))
        drop-shadow(0 0 18px rgba(255,30,90,0.55));
}

/* =========================================================
   DIMINUIR TODO O SITE
========================================================= */

html {
    zoom: 80%;
}

body {
    margin: 0;
    width: 100%;
}

/* =========================================================
   MOVER O PLAYER PARA BAIXO
========================================================= */

.radio-player {
    position: relative !important;

    top: 60px !important;

    margin-bottom: 60px !important;
}

/* =========================================================
   CONTROLE DE VOLUME — DESIGN PREMIUM 3D
========================================================= */

.player-volume {
    width: 100% !important;
    height: 54px !important;

    padding: 8px 10px !important;
    box-sizing: border-box !important;

    display: flex !important;
    align-items: center !important;
    gap: 7px !important;

    border-radius: 14px !important;

    background:
        linear-gradient(
            145deg,
            rgba(19, 32, 52, 0.95),
            rgba(6, 13, 25, 0.98)
        ) !important;

    border: 1px solid rgba(90, 130, 190, 0.18) !important;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.06),
        0 8px 20px rgba(0,0,0,0.25) !important;
}


/* =========================================================
   BOTÕES
========================================================= */

.player-volume .volume-button {
    width: 34px !important;
    height: 34px !important;

    min-width: 34px !important;
    min-height: 34px !important;

    padding: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 9px !important;

    border: 1px solid rgba(120,150,200,0.18) !important;

    background:
        linear-gradient(
            145deg,
            #17243a,
            #080f1d
        ) !important;

    color: #dbe7ff !important;

    font-size: 14px !important;
    font-weight: 800 !important;

    box-shadow:
        inset 0 1px 1px rgba(255,255,255,0.08),
        0 3px 7px rgba(0,0,0,0.35) !important;

    cursor: pointer !important;

    transition:
        transform .15s ease,
        box-shadow .15s ease,
        border-color .15s ease !important;
}


/* HOVER */

.player-volume .volume-button:hover {
    transform: translateY(-2px) !important;

    border-color:
        rgba(70,140,255,0.55) !important;

    color: #ffffff !important;

    box-shadow:
        0 5px 12px rgba(0,0,0,0.4),
        0 0 12px rgba(50,120,255,0.22) !important;
}


/* CLIQUE */

.player-volume .volume-button:active {
    transform: translateY(1px) !important;

    box-shadow:
        inset 0 2px 5px rgba(0,0,0,0.4) !important;
}


/* =========================================================
   BARRA DE VOLUME
========================================================= */

#volumeSlider {
    flex: 1 !important;

    width: auto !important;
    height: 5px !important;

    margin: 0 5px !important;

    appearance: none !important;
    -webkit-appearance: none !important;

    border-radius: 10px !important;

    outline: none !important;

    background:
        linear-gradient(
            90deg,
            #1685ff 0%,
            #684cff 50%,
            #ff1744 100%
        ) !important;

    cursor: pointer !important;
}


/* =========================================================
   PONTO DA BARRA
========================================================= */

#volumeSlider::-webkit-slider-thumb {
    appearance: none !important;
    -webkit-appearance: none !important;

    width: 14px !important;
    height: 14px !important;

    border-radius: 50% !important;

    border: 2px solid #ffffff !important;

    background:
        radial-gradient(
            circle at 35% 30%,
            #ffffff,
            #4f91ff 45%,
            #542cff 100%
        ) !important;

    box-shadow:
        0 0 8px rgba(60,130,255,0.8),
        0 0 16px rgba(120,50,255,0.4) !important;

    transition:
        transform .15s ease !important;
}


#volumeSlider::-webkit-slider-thumb:hover {
    transform: scale(1.2) !important;
}


/* FIREFOX */

#volumeSlider::-moz-range-thumb {
    width: 14px !important;
    height: 14px !important;

    border-radius: 50% !important;

    border: 2px solid #ffffff !important;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #4f91ff,
            #542cff
        ) !important;

    box-shadow:
        0 0 10px rgba(60,130,255,0.7) !important;
}


/* =========================================================
   PORCENTAGEM
========================================================= */

#volumeValue {
    min-width: 34px !important;

    text-align: center !important;

    color: #8ea4c7 !important;

    font-size: 9px !important;

    font-weight: 700 !important;

    letter-spacing: 0.4px !important;
}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 600px) {

    .player-volume {
        height: 50px !important;

        padding: 7px !important;

        gap: 5px !important;
    }

    .player-volume .volume-button {
        width: 31px !important;
        height: 31px !important;

        min-width: 31px !important;
        min-height: 31px !important;
    }

    #volumeValue {
        min-width: 30px !important;
    }
}

/* =========================================================
   POSIÇÃO DEFINITIVA DO PLAYER
========================================================= */

.radio-player {
    position: relative !important;

    top: 0 !important;

    margin-top: 120px !important;
    margin-bottom: 40px !important;
}

/* =========================================================
   SUBIR O PLAYER
========================================================= */

.radio-player {
    position: relative !important;
    top: -80px !important;
}

.hero-background {
    transform: translateY(128px) !important;
}

.hero-background {
    transform: translateY(40px) !important;
}

.hero-background {
    transform: translateY(220px) !important;
}

/* =========================================================
   IMAGEM DA NOTÍCIA — NÃO CORTAR
========================================================= */

.noticia-completa-imagem {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: transparent !important;

    overflow: visible !important;
}

.noticia-completa-imagem img {
    display: block !important;

    width: 100% !important;
    height: auto !important;

    max-width: 100% !important;
    max-height: none !important;

    object-fit: contain !important;

    border-radius: 0 !important;
}

/* =========================================================
   BOTÃO PERSONALIZADO — TODAS AS NOTÍCIAS
========================================================= */

.todas-noticias-area {
    display: flex;
    justify-content: center;
    align-items: center;

    margin: 35px 0 20px;
}

/* BOTÃO */

.botao-todas-noticias {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-width: 220px;
    height: 50px;

    padding: 0 24px;

    border: 1px solid rgba(70, 145, 255, .45);
    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #0878ff 0%,
            #4d5cff 45%,
            #b32fc5 100%
        );

    color: #fff;

    font-family: inherit;
    font-size: 12px;
    font-weight: 900;

    letter-spacing: .4px;

    cursor: pointer;

    overflow: hidden;

    box-shadow:
        0 8px 25px rgba(8, 120, 255, .22),
        0 0 25px rgba(140, 50, 220, .12),
        inset 0 1px 0 rgba(255,255,255,.25);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}


/* BRILHO PASSANDO PELO BOTÃO */

.botao-todas-noticias::before {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.25),
            transparent
        );

    transform: skewX(-20deg);

    transition: left .6s ease;

    pointer-events: none;
}


/* ÍCONE */

.botao-todas-noticias::after {
    content: "→";

    display: flex;
    align-items: center;
    justify-content: center;

    width: 24px;
    height: 24px;

    border-radius: 50%;

    background: rgba(255,255,255,.16);

    border: 1px solid rgba(255,255,255,.22);

    font-size: 14px;
    font-weight: 900;

    transition:
        transform .25s ease,
        background .25s ease;
}


/* HOVER */

.botao-todas-noticias:hover {
    transform: translateY(-4px);

    border-color:
        rgba(100,180,255,.75);

    box-shadow:
        0 14px 35px rgba(8,120,255,.32),
        0 0 30px rgba(180,40,210,.20),
        inset 0 1px 0 rgba(255,255,255,.3);
}

.botao-todas-noticias:hover::before {
    left: 150%;
}

.botao-todas-noticias:hover::after {
    transform: translateX(4px);

    background:
        rgba(255,255,255,.25);
}


/* CLIQUE */

.botao-todas-noticias:active {
    transform: translateY(-1px) scale(.98);
}


/* FOCO */

.botao-todas-noticias:focus-visible {
    outline: none;

    box-shadow:
        0 0 0 3px rgba(8,120,255,.25),
        0 10px 30px rgba(8,120,255,.25);
}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 600px) {

    .todas-noticias-area {
        margin-top: 28px;
    }

    .botao-todas-noticias {
        width: 100%;
        max-width: 300px;

        height: 48px;

        border-radius: 12px;
    }

}

/* =========================================================
   TODAS AS NOTÍCIAS — ÁREA GRANDE
========================================================= */

.todas-noticias-lista {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    width: 100%;
    margin-top: 25px;
}


/* ITEM */

.noticia-lista-item {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 20px;

    padding: 16px;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            rgba(12,28,48,.95),
            rgba(7,15,28,.98)
        );

    transition:
        transform .2s ease,
        border-color .2s ease;
}

.noticia-lista-item:hover {
    transform: translateY(-2px);

    border-color:
        rgba(40,130,255,.45);
}


/* IMAGEM */

.noticia-lista-imagem {
    width: 180px;
    height: 120px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 10px;

    background: #101b2c;

    color: #ffffff;
}

.noticia-lista-imagem img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}


/* CONTEÚDO */

.noticia-lista-conteudo span {
    color: #348cff;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1px;
}

.noticia-lista-conteudo h3 {
    margin: 7px 0;

    color: #ffffff;

    font-size: 18px;
}

.noticia-lista-conteudo p {
    margin: 0 0 12px;

    color: #8c9aae;

    font-size: 12px;
    line-height: 1.5;
}


/* BOTÃO */

.noticia-lista-ler {
    padding: 8px 13px;

    border: 1px solid
        rgba(40,130,255,.35);

    border-radius: 8px;

    background:
        rgba(20,100,255,.10);

    color: #4b9aff;

    font-size: 10px;
    font-weight: 800;

    cursor: pointer;

    transition: .2s ease;
}

.noticia-lista-ler:hover {
    background:
        rgba(40,130,255,.20);

    transform: translateX(3px);
}

/* Ajuste fino do destaque inicial no computador. */
@media (min-width: 1051px) {
    /* Aproxima o player da lateral onde fica o WhatsApp. */
    .radio-player {
        transform: translateX(60px) !important;
    }

    /* Centraliza melhor a marca d'água atrás do texto do destaque. */
    .hero-section::after {
        right: 640px !important;
    }
}


/* CELULAR */

@media (max-width: 650px) {

    .noticia-lista-item {
        grid-template-columns: 1fr;
    }

    .noticia-lista-imagem {
        width: 100%;
        height: 180px;
    }

}
