:root {
    --primary-color: #00C851;
    --primary-dark: #00963d;
    --secondary-color: #FFD700;
    --accent-orange: #f37021;
    --bg-color: #0a0a0a;
    --panel-bg: #1a1a1a;
    --text-color: #f0f0f0;
    --news-bar-bg: #111;
    --glass-border: rgba(255, 255, 255, 0.08);
    --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --popup-accent: #ff6b2c;
    --popup-accent-light: #ffb347
}

html { scroll-behavior: smooth }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    -webkit-tap-highlight-color: transparent
}

body {
    background-color: var(--bg-color);
    background-image: radial-gradient(circle at 20% 50%, rgba(0, 200, 81, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(243, 112, 33, 0.1) 0%, transparent 50%), url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    padding-top: 80px;
    padding-bottom: 70px;
    overflow-x: hidden
}

.top-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 20px;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all .3s ease;
    border-bottom: 1px solid var(--glass-border)
}

.top-header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    padding: 10px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5)
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #fff 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.header-logo img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--primary-color)
}

.header-live {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 59, 48, 0.15);
    border: 1px solid rgba(255, 59, 48, 0.3);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 700;
    color: #ff6b6b;
    text-transform: uppercase;
    letter-spacing: 1px
}

.header-live-dot {
    width: 8px;
    height: 8px;
    background: #ff3b30;
    border-radius: 50%;
    animation: pulseRed 1.5s infinite;
    box-shadow: 0 0 10px #ff3b30
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px) }
    to { opacity: 1; transform: translateY(0) }
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.9) }
    to { opacity: 1; transform: scale(1) }
}

@keyframes pulseRed {
    0%, 100% { transform: scale(1); opacity: 1 }
    50% { transform: scale(1.05); opacity: .8 }
}

@keyframes rippleEffect {
    0% { transform: scale(0); opacity: 1 }
    100% { transform: scale(2); opacity: 0 }
}

.visualizer-container {
    width: 100%;
    max-width: 500px;
    height: 120px;
    position: relative;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-end;
    justify-content: center
}

#visualizer-canvas {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1
}

.viz-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 10, 1) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none
}

.social-bar {
    width: 100%;
    max-width: 400px;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    z-index: 10;
    animation: fadeInUp 1.2s ease-out .4s backwards
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.4rem;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    overflow: hidden
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width .6s, height .6s
}

.social-btn:hover::before {
    width: 100%;
    height: 100%
}

.social-btn:hover {
    transform: translateY(-5px) scale(1.1)
}

.social-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4)
}

.social-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.4)
}

.social-facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0d5aa0 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4)
}

.social-youtube {
    background: linear-gradient(135deg, #FF0000 0%, #cc0000 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4)
}

.radio-container {
    width: 100%;
    max-width: 400px;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    box-shadow: var(--shadow-soft), 0 0 0 1px var(--glass-border);
    overflow: hidden;
    position: relative;
    z-index: 10;
    border: 1px solid var(--glass-border);
    margin-bottom: 30px;
    animation: fadeInUp .8s ease-out;
    transition: all .3s ease
}

.radio-body {
    padding: 30px 25px 35px 25px;
    text-align: center
}

#fixedPlayer {
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    z-index: 998;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transition: transform .35s cubic-bezier(.4, 0, .2, 1), opacity .35s ease;
    pointer-events: none;
    max-width: 600px;
    width: 94%;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.6);
    visibility: hidden
}

#fixedPlayer.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible
}

#fixedPlayer .fixedPlayer-info {
    flex: 1;
    min-width: 0
}

#fixedPlayer .fixedPlayer-title {
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

#fixedPlayer .fixedPlayer-artist {
    font-size: .75rem;
    color: var(--primary-color);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

#fixedPlayer .fixedPlayer-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0
}

#fixedPlayer .fixedPlayer-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ddd;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease;
    outline: none;
    font-size: .9rem
}

#fixedPlayer .fixedPlayer-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    transform: scale(1.1)
}

#fixedPlayer .fixedPlayer-play {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #000;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 200, 81, 0.4);
    border: none
}

.tech-radio-name {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #fff 0%, var(--primary-color) 50%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
    text-transform: uppercase
}

.tech-frequency {
    font-family: 'Courier New', monospace;
    font-size: .9rem;
    font-weight: 700;
    color: var(--secondary-color);
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 6px 15px;
    border-radius: 20px;
    display: inline-block;
    letter-spacing: 2px;
    text-transform: uppercase
}

.song-info {
    margin-bottom: 25px;
    min-height: 60px
}

.song-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: .5px
}

.song-artist {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px
}

.controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px
}

.btn-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ddd;
    cursor: pointer;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    outline: none;
    font-size: 1.1rem
}

.btn-control:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.3)
}

.btn-control:active {
    transform: scale(.95)
}

.btn-play {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #000;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(0, 200, 81, 0.4);
    border: none;
    position: relative;
    overflow: hidden
}

.btn-play::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all .5s;
    opacity: 0
}

.btn-play:hover::after {
    opacity: 1;
    left: 100%
}

.btn-play::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    opacity: 0
}

.btn-play.ripple::before {
    animation: rippleEffect .8s ease-out
}

.btn-play:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    box-shadow: 0 8px 30px rgba(0, 200, 81, 0.6);
    transform: scale(1.05)
}

.volume-container {
    width: 80%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 12px
}

input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    background: transparent
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    margin-top: -7px;
    box-shadow: 0 0 15px rgba(0, 200, 81, 0.5);
    transition: transform .2s
}

input[type=range]::-webkit-slider-thumb:hover {
    transform: scale(1.2)
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border-radius: 2px
}

.history-section {
    width: 100%;
    max-width: 400px;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid var(--glass-border);
    animation: fadeInUp 1s ease-out .3s backwards
}

.history-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px
}

.history-title i {
    font-size: 1.2rem
}

.history-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.history-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all .3s;
    animation: fadeInScale .4s ease-out
}

.history-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(5px);
    border-color: rgba(0, 200, 81, 0.3)
}

.history-time {
    font-family: 'Courier New', monospace;
    font-size: .75rem;
    color: var(--secondary-color);
    min-width: 50px;
    font-weight: 700
}

.history-info {
    flex: 1;
    overflow: hidden
}

.history-song {
    font-size: .9rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.history-artist {
    font-size: .75rem;
    color: #888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.weather-widget {
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 25px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
    transition: all .3s;
    border: 1px solid rgba(255, 255, 255, 0.05)
}

.weather-widget:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2)
}

#anuncios {
    width: 100%;
    max-width: 400px;
    background: #ffffff;
    border-radius: 20px;
    padding: 15px;
    margin-bottom: 25px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out .2s backwards
}

#anuncios h2 {
    font-size: .85rem;
    color: #888;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px
}

.ads-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.ads-slider-container {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center
}

.ads-slider-item {
    width: 100%;
    opacity: 0;
    transition: opacity .5s ease-in-out, transform .5s ease;
    position: absolute;
    transform: scale(.95);
    pointer-events: none
}

.ads-slider-item.active {
    opacity: 1;
    position: relative;
    transform: scale(1);
    pointer-events: auto
}

.ad-card {
    min-height: 120px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    color: #fff;
    transition: transform .3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .15)
}

.ads-slider-item:hover .ad-card {
    transform: scale(1.02)
}

.ad-badge {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
    border: 2px solid rgba(255, 255, 255, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 800
}

.ad-name {
    font-size: 1.05rem;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .25)
}

.ad-tag {
    font-size: .75rem;
    letter-spacing: .5px;
    text-transform: uppercase;
    opacity: .85
}

.ads-slider-item[data-g="val"] .ad-card {
    background: linear-gradient(135deg, #ff8a00, #e52e71)
}

.ads-slider-item[data-g="sourj"] .ad-card {
    background: linear-gradient(135deg, #00c6ff, #0072ff)
}

.ads-slider-item[data-g="nalin"] .ad-card {
    background: linear-gradient(135deg, #7b2ff7, #f107a3)
}

.ads-slider-item[data-g="globo"] .ad-card {
    background: linear-gradient(135deg, #ff512f, #dd2476)
}

.ads-slider-item[data-g="gipoia"] .ad-card {
    background: linear-gradient(135deg, #136a8a, #185a9d)
}

.slider-btn {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 12px;
    border-radius: 50%;
    color: #555;
    transition: .2s;
    z-index: 5
}

.slider-btn:hover {
    color: var(--primary-color);
    background: #f0f0f0
}

.news-bar-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: var(--news-bar-bg);
    display: flex;
    align-items: center;
    z-index: 2000;
    border-top: 1px solid #333;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5)
}

.news-label {
    background: var(--primary-color);
    color: #000;
    height: 100%;
    display: flex;
    align-items: center;
    font-weight: 800;
    z-index: 2001;
    font-size: .9rem;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.3);
    padding: 0 15px
}

.ticker-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    cursor: pointer
}

.ticker-move {
    display: inline-block;
    white-space: nowrap;
    animation: ticker-scroll 250s linear infinite;
    padding-left: 20px
}

.ticker-wrapper:hover .ticker-move {
    animation-play-state: paused
}

.ticker-item {
    display: inline-block;
    padding: 0 2rem;
    color: #ddd;
    text-decoration: none;
    font-size: .95rem;
    transition: color .2s;
    cursor: pointer
}

.ticker-item:hover {
    color: var(--primary-color);
    text-decoration: underline
}

@keyframes ticker-scroll {
    0% { transform: translateX(0) }
    100% { transform: translateX(-100%) }
}

.modal-overlay {
    display: none;
    position: fixed;
    z-index: 5000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s ease
}

.modal-overlay.open {
    display: flex;
    opacity: 1
}

.modal-content {
    background: #1e1e1e;
    border: 1px solid #333;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    padding: 25px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    transform: translateY(20px);
    transition: transform .3s ease
}

.modal-overlay.open .modal-content {
    transform: translateY(0)
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #888;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: .2s;
    background: none;
    border: none;
    padding: 5px
}

.close-modal:hover {
    color: #fff
}

.modal-news-title {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.3
}

.modal-news-desc {
    font-size: .95rem;
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 20px;
    max-height: 200px;
    overflow-y: auto
}

.btn-read-more {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: #000;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: .2s
}

.btn-read-more:hover {
    opacity: .9
}

.weather-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px
}

.weather-day-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 15px;
    border-radius: 12px
}

.w-info {
    display: flex;
    flex-direction: column
}

.w-day-name {
    font-weight: 800;
    color: #fff;
    font-size: .95rem
}

.w-date {
    font-size: .75rem;
    color: #888
}

.w-icon {
    width: 40px;
    text-align: center;
    color: var(--secondary-color);
    font-size: 1.2rem
}

.w-temp {
    color: #ccc;
    font-family: 'Courier New', monospace;
    font-weight: bold
}

.w-title-header {
    color: var(--primary-color);
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px
}

#toast {
    visibility: hidden;
    min-width: 280px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    padding: 16px;
    position: fixed;
    z-index: 3000;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid #444;
    font-size: .9rem
}

#toast.show {
    visibility: visible;
    animation: fadein .5s, fadeout .5s 2.5s
}

.news-carousel-section {
    width: 100%;
    max-width: 400px;
    margin-bottom: 25px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    animation: fadeInUp 1s ease-out .3s backwards
}

.news-carousel-header {
    padding: 15px 20px 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.news-carousel-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px
}

.news-carousel-header i {
    font-size: 1.2rem
}

.news-carousel-wrapper {
    position: relative;
    overflow: hidden;
    touch-action: pan-y;
    user-select: none;
    padding-bottom: 10px
}

.news-carousel-track {
    display: flex;
    transition: transform .5s cubic-bezier(.25, .46, .45, .94);
    will-change: transform
}

.news-carousel-slide {
    flex: 0 0 100%;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 180px
}

.news-carousel-slide img {
    width: 100%;
    max-height: 150px;
    object-fit: cover;
    border-radius: 12px;
    background: #222
}

.news-carousel-slide h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin: 0
}

.news-carousel-slide p {
    font-size: .85rem;
    color: #bbb;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.news-carousel-slide .leia-mais {
    color: var(--primary-color);
    font-weight: 600;
    font-size: .85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
    align-self: flex-start;
    transition: .2s
}

.news-carousel-slide .leia-mais:hover {
    color: #fff
}

.news-carousel-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 8px 0 15px 0
}

.news-carousel-controls button {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ddd;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    transition: .2s;
    display: flex;
    align-items: center;
    justify-content: center
}

.news-carousel-controls button:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: scale(1.05)
}

.news-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding-bottom: 12px
}

.news-carousel-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: .3s;
    cursor: pointer
}

.news-carousel-dots span.active {
    background: var(--primary-color);
    width: 18px;
    border-radius: 5px
}

.pharmacy-section {
    width: 100%;
    max-width: 400px;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid var(--glass-border);
    animation: fadeInUp 1s ease-out .3s backwards
}

.pharmacy-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px
}

.pharmacy-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px
}

.pharmacy-header h3 i {
    font-size: 1.2rem
}

.pharmacy-status-geral {
    font-size: .7rem;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase
}

.pharmacy-status-geral.open {
    background: rgba(0, 200, 81, 0.2);
    color: var(--primary-color);
    border: 1px solid rgba(0, 200, 81, 0.3)
}

.pharmacy-status-geral.closed {
    background: rgba(255, 59, 48, 0.15);
    color: #ff6b6b;
    border: 1px solid rgba(255, 59, 48, 0.3)
}

.pharmacy-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px
}

.pharmacy-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all .3s;
    cursor: pointer;
    position: relative
}

.pharmacy-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 200, 81, 0.3);
    transform: translateX(5px)
}

.pharmacy-item .p-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    background: rgba(0, 200, 81, 0.15);
    color: var(--primary-color)
}

.pharmacy-item .p-info {
    flex: 1;
    min-width: 0
}

.pharmacy-item .p-name {
    font-size: .9rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px
}

.pharmacy-item .p-name .p-badge {
    font-size: .6rem;
    padding: 2px 6px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase
}

.p-badge.p-24h {
    background: rgba(255, 215, 0, 0.2);
    color: var(--secondary-color);
    border: 1px solid rgba(255, 215, 0, 0.3)
}

.p-badge.p-22h {
    background: rgba(243, 112, 33, 0.2);
    color: var(--accent-orange);
    border: 1px solid rgba(243, 112, 33, 0.3)
}

.pharmacy-item .p-address {
    font-size: .75rem;
    color: #888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.pharmacy-item .p-phone {
    font-size: .7rem;
    color: var(--primary-color);
    font-weight: 600
}

.pharmacy-item .p-status {
    font-size: .65rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 8px;
    flex-shrink: 0;
    text-transform: uppercase
}

.p-status.open-now {
    background: rgba(0, 200, 81, 0.2);
    color: var(--primary-color)
}

.p-status.closed-now {
    background: rgba(255, 59, 48, 0.15);
    color: #ff6b6b
}

.pharmacy-map {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    margin-top: 5px
}

.pharmacy-map iframe {
    width: 100%;
    height: 100%;
    border: none
}

.pharmacy-body-open {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease
}

.pharmacy-body-open.expanded {
    max-height: 5000px
}

.pharmacy-footer {
    text-align: center;
    margin-top: 10px;
    font-size: .7rem;
    color: #666
}

.pharmacy-footer a {
    color: var(--primary-color);
    text-decoration: none
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    color: #fff;
    margin-bottom: 8px;
    transition: all .3s
}

.contact-link:hover {
    border-color: rgba(0, 200, 81, 0.2)
}

.contact-link.wa:hover {
    background: rgba(37, 211, 102, 0.1)
}

.contact-link.mail:hover {
    background: rgba(0, 200, 81, 0.1)
}

.sch-tab {
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: .75rem;
    color: #ccc;
    background: rgba(255, 255, 255, 0.1);
    transition: all .2s
}

.sch-tab.active {
    background: var(--primary-color);
    color: #000;
    font-weight: 700
}

tr.sch-now td {
    background: rgba(0, 200, 81, 0.12)
}

tr.sch-now td:first-child {
    border-left: 3px solid var(--primary-color);
    color: var(--primary-color) !important
}

.onair-badge {
    display: inline-block;
    background: rgba(0, 200, 81, 0.15);
    border: 1px solid rgba(0, 200, 81, 0.3);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: .7rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 10px
}

@media (max-width:480px) {
    body {
        padding-top: 70px
    }

    .top-header {
        padding: 10px 15px
    }

    .top-header.scrolled {
        padding: 8px 15px
    }

    .header-logo {
        font-size: .95rem
    }

    .header-logo img {
        width: 30px;
        height: 30px
    }

    .header-live {
        padding: 4px 10px;
        font-size: .7rem
    }

    .tech-radio-name {
        font-size: 1.5rem
    }

    .btn-play {
        width: 70px;
        height: 70px;
        font-size: 1.5rem
    }

    .btn-control {
        width: 48px;
        height: 48px;
        font-size: 1rem
    }

    .controls {
        gap: 15px
    }

    .social-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem
    }

    .social-bar {
        gap: 15px;
        padding: 12px
    }

    .news-label {
        font-size: .75rem;
        padding: 0 10px
    }

    .history-section {
        padding: 15px
    }

    .history-title {
        font-size: .9rem
    }

    .news-carousel-slide {
        min-height: 150px;
        padding: 10px 15px
    }

    .news-carousel-slide img {
        max-height: 120px
    }

    .news-carousel-slide h4 {
        font-size: 1rem
    }

    #fixedPlayer {
        padding: 8px 12px;
        gap: 8px;
        width: 100%;
        max-width: 100%;
        border-radius: 15px 15px 0 0
    }

    #fixedPlayer .fixedPlayer-title {
        font-size: .8rem
    }

    #fixedPlayer .fixedPlayer-artist {
        font-size: .65rem
    }

    #fixedPlayer .fixedPlayer-btn {
        width: 36px;
        height: 36px;
        font-size: .8rem
    }

    #fixedPlayer .fixedPlayer-play {
        width: 42px;
        height: 42px;
        font-size: 1rem
    }

    #fixedPlayer .fixedPlayer-btn:not(.fixedPlayer-play) {
        display: none
    }
}

@keyframes fadein {
    from { bottom: 60px; opacity: 0 }
    to { bottom: 70px; opacity: 1 }
}

@keyframes fadeout {
    from { bottom: 70px; opacity: 1 }
    to { bottom: 60px; opacity: 0 }
}

/* Bloqueia anúncios do AdSense (auto ads) antes ou dentro do player */
#playerWrapper .google-auto-placed,
#playerWrapper .adsbygoogle,
.google-auto-placed:has(~ #playerWrapper),
.adsbygoogle:has(~ #playerWrapper) {
    display: none !important;
}
