* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

html {
    height: 100%;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    background: #f7fafc;
    padding-bottom: 0;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 0;
    }
}

@media (max-width: 480px) {
    body {
        padding-bottom: 0;
    }
}

main {
    flex: 1;
    width: 100%;
    background: white;
    padding-bottom: 0;
}

@media (max-width: 768px) {
    main {
        padding-bottom: 155px;
    }
}

@media (max-width: 480px) {
    main {
        padding-bottom: 115px;
    }
}

.page-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 250px 1fr 300px;
    gap: 20px;
    padding: 20px;
    background: transparent;
}

.sidebar-left {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.main-content {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    min-height: 600px;
}

.sidebar-right {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

@media (max-width: 1200px) {
    .page-wrapper {
        grid-template-columns: 1fr 300px;
    }
    
    .sidebar-left {
        display: none;
    }
}

@media (max-width: 768px) {
    .page-wrapper {
        grid-template-columns: 1fr;
        padding: 10px;
    }
    
    .sidebar-left,
    .sidebar-right {
        display: none;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: #001f3f;
    color: white;
    padding: 8px 0;
    font-size: 0.9rem;
    text-align: center;
}

@media (max-width: 768px) {
    .top-bar {
        font-size: 0.8rem;
        padding: 8px 0;
    }
    
    .top-bar span {
        display: inline-flex;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .top-bar {
        font-size: 0.7rem;
        padding: 6px 0;
    }
    
    .top-bar .container {
        padding: 0 10px;
    }
}

/* ============================================
   ATUALIZAÇÃO: Header configurado para ROLAR
   Data: <?php echo date('Y-m-d H:i:s'); ?>
   ============================================ */

/* Header - Atualizado para rolar com a página */
header {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: static !important;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

/* Removido - queremos mostrar o header dentro do iframe
.in-iframe .top-bar,
.in-iframe header {
    display: none;
}
*/

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    flex-wrap: nowrap;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #001f3f;
}

.logo img {
    height: 100px;
    margin-right: 10px;
    object-fit: contain;
}

.logo-text {
    font-size: 0.85rem;
    line-height: 1.1;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
}

.logo-text strong {
    font-size: 1.7rem;
    color: #ff6600;
    font-weight: 800;
    letter-spacing: -0.02em;
    display: block;
}

.header-info {
    display: flex;
    gap: 1.2rem;
    flex-wrap: nowrap;
    align-items: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 7px;
    transition: all 0.3s ease;
}

.info-item.on-air-info {
    gap: 0;
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
    min-width: 260px;
    width: 260px;
}

.on-air-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
}

.on-air-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    background: rgba(255,0,0,0.08);
    border: 1px solid rgba(255,0,0,0.2);
    padding: 2px 8px 2px 5px;
    border-radius: 20px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    border: 2px solid white;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.6);
    animation: live-dot-pulse 1.8s ease-in-out infinite;
}

.live-dot::before,
.live-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.4);
    animation: live-ripple 1.8s ease-out infinite;
}

.live-dot::after {
    animation-delay: 0.6s;
}

@keyframes live-dot-pulse {
    0%, 100% { box-shadow: 0 0 6px rgba(34, 197, 94, 0.6); }
    50% { box-shadow: 0 0 14px rgba(34, 197, 94, 0.9); }
}

@keyframes live-ripple {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(3.5); opacity: 0; }
}

.on-air-badge strong {
    color: #001f3f;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.on-air-badge strong::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,102,0,0.35), transparent);
    animation: shimmer 2.5s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    50%, 100% { left: 150%; }
}

.on-air-details {
    display: flex;
    align-items: center;
    gap: 0;
    min-width: 0;
    height: 46px;
}

.on-air-photo {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #ff8800;
    overflow: visible;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.on-air-photo > img:first-child {
    border-radius: 50%;
    overflow: hidden;
}

.on-air-photo img:first-child {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.on-air-photo img#onAirPhoto2 {
    position: absolute;
    bottom: -4px;
    right: -10px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 1px 4px rgba(0,0,0,0.35);
}

.on-air-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
    flex: 1;
    overflow: hidden;
}

.on-air-program {
    color: #001f3f;
    font-weight: 700;
    font-size: 0.88rem;
    line-height: 1.3;
    overflow: visible;
    position: relative;
    display: block;
    white-space: normal;
    word-wrap: break-word;
    letter-spacing: -0.01em;
}

.on-air-locutor {
    color: #888;
    font-size: 0.75rem;
    font-style: italic;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    line-height: 1.3;
    letter-spacing: 0.01em;
}

.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: transparent;
    border-radius: 0;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
}

.info-item:hover .info-icon {
    transform: scale(1.15);
    box-shadow: none;
}

.info-icon svg {
    width: 28px;
    height: 28px;
}

.info-icon i.bi-whatsapp {
    font-size: 28px;
    line-height: 1;
    color: #25D366;
}

.info-text {
    display: flex;
    flex-direction: column;
    font-size: 0.85rem;
    min-width: 0;
}

.info-text strong {
    color: #001f3f;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 2px;
    white-space: nowrap;
}

.info-text span {
    color: #444;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.social-icons {
    display: flex;
    gap: 5px;
    align-items: center;
    flex-shrink: 0;
}

.footer-social {
    margin-top: 0.75rem;
    justify-content: flex-start;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
    box-shadow: none;
}

.social-icons a:hover {
    transform: translateY(-3px);
    filter: none;
}

.social-icons a svg {
    width: 34px;
    height: 34px;
    transition: transform 0.3s ease;
}

.social-icons a:hover svg {
    transform: scale(1.1);
}

/* Logo da rádio no centro do menu mobile - oculto por padrão */
.mobile-logo-center {
    display: none !important;
}

/* Navbar */
.navbar {
    background: linear-gradient(135deg, #ff6600 0%, #ff8833 50%, #ffaa00 100%);
    padding: 0;
    position: relative;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.navbar .container {
    position: relative;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
    flex-wrap: nowrap;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    padding: 0.95rem 0.9rem;
    display: block;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover::after {
    width: 80%;
}

.nav-menu a:hover,
.nav-menu a.admin-link {
    background: rgba(255,255,255,0.15);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: all 0.3s ease;
    width: 48px;
    height: 48px;
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;
    position: relative;
}

.hamburger-icon .line {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    position: absolute;
}

.hamburger-icon .line:nth-child(1) {
    top: 4px;
}

.hamburger-icon .line:nth-child(2) {
    top: 12.5px;
}

.hamburger-icon .line:nth-child(3) {
    top: 21px;
}

.mobile-menu-toggle.active .hamburger-icon .line:nth-child(1) {
    top: 12.5px;
    transform: rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-icon .line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-icon .line:nth-child(3) {
    top: 12.5px;
    transform: rotate(-45deg);
}

.mobile-home-button {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 48px;
    height: 48px;
}

.mobile-home-button svg {
    width: 32px;
    height: 32px;
}

.mobile-home-button:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .mobile-home-button {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
}

/* Player Section */
.player-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

@media (max-width: 768px) {
    .player-section {
        padding: 1rem 0;
    }
}

.radio-player {
    margin: 2rem auto;
    max-width: 600px;
}

@media (max-width: 768px) {
    .radio-player {
        margin: 1rem auto;
    }
}

#radioStream {
    width: 100%;
    margin-bottom: 1rem;
}

.now-playing {
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* Sections */
section {
    padding: 3rem 0;
}

h2 {
    margin-bottom: 2rem;
    color: #2c3e50;
}

/* Programação */
.programacao-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.programa-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.programa-card h3 {
    color: #667eea;
    margin-bottom: 0.5rem;
}

.horario {
    display: block;
    margin-top: 1rem;
    color: #666;
    font-weight: bold;
}

/* Notícias */
.noticias-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.noticia-item {
    background: #fff;
    padding: 1.5rem;
    border-left: 4px solid #667eea;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.noticia-item h3 a {
    color: #2c3e50;
    text-decoration: none;
}

.noticia-item h3 a:hover {
    color: #667eea;
}

.data {
    color: #999;
    font-size: 0.9rem;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

button {
    background: #667eea;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

button:hover {
    background: #5568d3;
}

.sucesso {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.erro {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

/* Sections */
section {
    padding: 3rem 0;
}

h2 {
    margin-bottom: 2rem;
    color: #001f3f;
    font-size: 2rem;
}

/* Banner Section */
.banner-section {
    background: linear-gradient(135deg, #ff6600 0%, #ff8800 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.banner-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-slider {
    position: relative;
    width: 100%;
    background: #000;
    padding: 0;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.35);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    z-index: 3;
    transition: background 0.2s;
    outline: none;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.hero-arrow:hover {
    background: rgba(0,0,0,0.55);
    color: white;
}

.hero-arrow:focus {
    outline: none;
    background: rgba(0,0,0,0.35);
}

.hero-arrow.prev {
    left: 10px;
    text-align: center;
    padding: 0;
}

.hero-arrow.next {
    right: 10px;
    text-align: center;
    padding: 0;
}

@media (max-width: 768px) {
    .hero-arrow {
        display: flex;
        width: 38px;
        height: 38px;
        font-size: 1.5rem;
    }
}

.hero-slides {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.hero-slide.is-active {
    opacity: 1;
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-slide a {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0) 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: white;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    text-shadow: 0 6px 24px rgba(0,0,0,0.4);
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0.92;
    max-width: 720px;
    text-shadow: 0 4px 16px rgba(0,0,0,0.35);
    text-align: center;
}

.hero-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 16px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 2px solid rgba(255,255,255,0.9);
    background: transparent;
    cursor: pointer;
    padding: 0;
    display: block;
}

.hero-dot.is-active {
    background: #ff6600;
    border-color: #ff6600;
}

@media (max-width: 768px) {
    .hero-slides {
        height: 260px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 1.7rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .hero-dots {
        display: none;
    }
    
    .banner-section {
        padding: 2.5rem 0;
    }
    
    .banner-section h1 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .banner-section p {
        font-size: 0.95rem;
    }
}

/* Programação */
.programacao-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.programa-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-left: 4px solid #ff6600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.programa-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,102,0,0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.programa-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255,102,0,0.15);
}

.programa-card:hover::before {
    opacity: 1;
}

.programa-card h3 {
    color: #ff6600;
    margin-bottom: 0.5rem;
}

.horario {
    display: block;
    margin-top: 1rem;
    color: #666;
    font-weight: bold;
}

/* Notícias */
.noticias-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.noticia-item {
    background: white;
    padding: 1.5rem;
    border-left: 4px solid #ff6600;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.noticia-item:hover {
    transform: translateX(5px);
}

.noticia-item h3 a {
    color: #001f3f;
    text-decoration: none;
}

.noticia-item h3 a:hover {
    color: #ff6600;
}

.data {
    color: #999;
    font-size: 0.9rem;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #001f3f;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff6600;
}

button, .btn {
    background: #ff6600;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.3s;
}

button:hover, .btn:hover {
    background: #ff8800;
}

.sucesso {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    border-left: 4px solid #28a745;
}

.erro {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    border-left: 4px solid #dc3545;
}

/* Footer - Sempre no fundo da página */
footer {
    background: #001f3f;
    color: white;
    padding: 2rem 0 1rem;
    margin-top: auto;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #ff6600;
    margin-bottom: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #003366;
}

@media (max-width: 768px) {
    footer {
        padding: 1.5rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 0.6rem 0;
        min-height: 160px;
    }
    
    .logo {
        display: none;
    }
    
    .header-info {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
        min-height: 120px;
    }
    
    .info-item {
        justify-content: center;
        padding: 0;
        background: transparent;
        border-radius: 0;
        flex: 0 1 auto;
        min-width: 0;
    }
    
    .info-icon {
        width: 22px;
        height: 22px;
    }
    
    .info-icon svg {
        width: 14px;
        height: 14px;
    }

    .info-icon i.bi-whatsapp {
        font-size: 14px;
    }
    
    .info-text strong {
        font-size: 0.65rem;
    }
    
    .info-text span {
        font-size: 0.6rem;
    }
    
    /* NO AR AGORA - Compacto */
    .info-item.on-air-info {
        flex: 1 1 100%;
        background: transparent;
        border: none;
        padding: 0.4rem 0;
        margin-bottom: 0;
        order: -1;
        min-height: 85px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }
    
    .on-air-content {
        width: 100%;
        align-items: center;
        gap: 0.3rem;
        display: flex;
        flex-direction: column;
        min-height: 75px;
        justify-content: flex-start;
        padding-top: 5px;
    }

    .on-air-badge {
        margin-bottom: 0.2rem;
        justify-content: center;
        width: fit-content;
        align-self: center;
    }

    .on-air-badge strong {
        font-size: 0.6rem;
        color: #cc0000;
        font-weight: 800;
    }

    .live-dot {
        width: 5px;
        height: 5px;
    }

    .on-air-details {
        justify-content: center;
        width: 100%;
        flex-direction: row !important;
        gap: 0.7rem;
        display: flex !important;
        align-items: flex-start !important;
        padding-top: 5px;
        padding-left: 2.5rem;
        padding-right: 1rem;
        height: 60px !important;
    }

    .on-air-photo {
        width: 44px !important;
        height: 44px !important;
        border-radius: 50%;
        border-width: 2px;
        flex-shrink: 0 !important;
        margin-right: 0 !important;
        align-self: flex-start !important;
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: visible !important;
        min-width: 44px !important;
    }
    
    .on-air-photo img:first-child {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        border-radius: 50% !important;
    }
    
    .on-air-photo img:nth-child(2) {
        position: absolute !important;
        bottom: -4px !important;
        right: -10px !important;
        width: 24px !important;
        height: 24px !important;
        border: 2px solid white !important;
        box-shadow: 0 1px 4px rgba(0,0,0,0.35) !important;
        border-radius: 50% !important;
        object-fit: cover !important;
    }
    
    .on-air-text {
        align-items: flex-start;
        text-align: left;
        flex: 1 !important;
        min-width: 0 !important;
        gap: 3px;
        display: flex !important;
        flex-direction: column !important;
        overflow: visible !important;
        max-width: none;
        justify-content: flex-start;
        padding-top: 3px;
        height: 55px;
    }
    
    .on-air-program,
    #onAirShow {
        font-size: 0.88rem;
        text-align: left;
        white-space: nowrap;
        overflow: visible !important;
        text-overflow: clip !important;
        font-weight: 700;
        line-height: 1.3;
        display: block;
        color: #001f3f !important;
    }
    
    .on-air-program.marquee {
        text-overflow: clip;
    }
    
    .on-air-locutor,
    #onAirLocutor {
        font-size: 0.75rem;
        text-align: left;
        white-space: pre-line;
        overflow: visible;
        font-style: italic;
        line-height: 1.35;
        display: block;
        color: #666 !important;
        word-wrap: break-word;
    }
    
    /* WhatsApp e Siga-nos lado a lado */
    .info-item:not(.on-air-info) {
        flex: 0 0 auto;
        display: flex;
        flex-direction: row;
        gap: 0.3rem;
        align-items: center;
        justify-content: center;
        width: auto;
    }
    
    .social-icons {
        justify-content: center;
        gap: 4px;
        margin-top: 0.3rem;
        order: 10;
        width: 100%;
    }
    
    .social-icons a {
        width: 34px;
        height: 34px;
    }
    
    .social-icons a svg {
        width: 26px;
        height: 26px;
    }
    
    /* Menu Mobile */
    .navbar .container {
        position: relative;
    }
    
    /* Logo da rádio no centro do menu mobile */
    .mobile-logo-center {
        display: block !important;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) !important;
        z-index: 2;
        width: 45px;
        height: 45px;
        border-radius: 0;
        overflow: visible;
        background: transparent;
        padding: 0;
        -webkit-tap-highlight-color: transparent;
        user-select: none;
        -webkit-user-drag: none;
        -webkit-touch-callout: none;
        touch-action: manipulation;
        transition: none !important;
        animation: none !important;
    }
    
    .mobile-logo-center:active,
    .mobile-logo-center:focus {
        transform: translate(-50%, -50%) !important;
        outline: none;
    }
    
    .mobile-logo-center img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 0;
        -webkit-user-drag: none;
        user-select: none;
        pointer-events: none;
    }
    
    .nav-menu {
        display: flex;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: linear-gradient(135deg, #ff6600 0%, #ff8833 50%, #ffaa00 100%);
        box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        z-index: 1000;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: none;
    }
    
    .nav-menu.active {
        max-height: 600px;
        opacity: 1;
    }
    
    .nav-menu li {
        width: 100%;
        opacity: 1;
        transform: none;
        transition: none;
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: none;
    }
    
    .nav-menu a {
        padding: 1.1rem 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        text-align: center;
        font-size: 1rem;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    /* Ocultar o link INÍCIO no menu mobile já que tem o botão home */
    .nav-menu li:first-child {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
        transition: none !important;
        -webkit-tap-highlight-color: transparent;
    }
    
    .mobile-home-button {
        display: flex !important;
        align-items: center;
        justify-content: center;
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
        transition: none !important;
        -webkit-tap-highlight-color: transparent;
    }
    
    .mobile-menu-toggle:active,
    .mobile-menu-toggle:hover,
    .mobile-menu-toggle:focus {
        transform: translateY(-50%) !important;
    }
    
    .mobile-home-button:active,
    .mobile-home-button:hover,
    .mobile-home-button:focus {
        transform: translateY(-50%) !important;
    }
    
    .player-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .volume-slider {
        width: 200px;
    }
    
    /* Grid de notícias responsivo */
    .noticias-grid {
        grid-template-columns: 1fr;
    }
    
    .noticia-completa h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .noticia-subtitulo {
        font-size: 1rem;
    }
    
    .noticia-texto {
        font-size: 1rem;
        line-height: 1.75;
    }
    
    .noticia-completa {
        padding: 1rem;
    }
    
    .compartilhar-botoes {
        flex-direction: column;
    }
    
    .btn-compartilhar {
        width: 100%;
        justify-content: center;
    }
    
    /* Hero slider mobile */
    .hero-slides {
        height: 260px;
    }
    
    .hero-content h1 {
        font-size: 1.7rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
}

/* Locutores Grid */
.locutores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.locutor-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.locutor-card:hover {
    transform: translateY(-5px);
}

.locutor-avatar {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.locutor-card h3 {
    color: #001f3f;
    margin-bottom: 0.5rem;
}

/* Fotos Grid */
.fotos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.foto-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.foto-item:hover {
    transform: scale(1.05);
}

.foto-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.foto-info {
    padding: 1rem;
}

.foto-info h3 {
    color: #001f3f;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Content Box */
.content-box {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    line-height: 1.8;
}

.content-box h3 {
    color: #ff6600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Noticia Meta */
.noticia-meta {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.noticia-img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.autor {
    color: #666;
}

/* Admin Card */
.admin-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.admin-card h2 {
    color: #001f3f;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.admin-card small {
    display: block;
    color: #666;
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

/* Layout com Sidebar */
.content-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 24px;
    margin-top: 2rem;
    align-items: start;
    padding: 0 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.main-content {
    min-width: 0;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    height: fit-content;
}

/* Banners Laterais */
.banner-lateral-publicidade {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.65rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    margin-bottom: 6px;
}
.banner-lateral-publicidade::before,
.banner-lateral-publicidade::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e0e0e0;
}

.banner-lateral {
    margin-bottom: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 12px;
    overflow: hidden;
}

.banner-lateral img {
    width: 100%;
    display: block;
}

.enquete-card {
    background: transparent;
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: none;
    border: none;
}

.enquete-card h3 {
    color: #001f3f;
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.enquete-pergunta {
    color: #1f2937;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.35;
}

.enquete-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.enquete-opcao {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: #334155;
    cursor: pointer;
    padding: 0.5rem 0.6rem;
    border-radius: 8px;
    background: transparent;
    border: none;
    transition: all 0.2s ease;
}

.enquete-opcao input {
    accent-color: #ff6600;
}

.enquete-opcao:hover {
    box-shadow: none;
    transform: translateY(-1px);
}

.btn-enquete {
    margin-top: 0.5rem;
    background: linear-gradient(135deg, #ff6600 0%, #ff8800 100%);
    color: white;
    border: none;
    padding: 0.7rem 1rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(255,102,0,0.25);
}

.btn-enquete:hover {
    background: linear-gradient(135deg, #ff7a1a 0%, #ffaa00 100%);
}

.enquete-resultados {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.enquete-resultado-texto {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #374151;
}

.enquete-bar {
    height: 10px;
    background: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
}

.enquete-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #ff6600 0%, #ff9a3c 100%);
}

.enquete-total {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.25rem;
    text-align: right;
}

/* Ouvintes Online */
.ouvintes-online {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    margin-top: 1rem;
    font-size: 1.1rem;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: #ff0000;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

/* Notícias em Destaque */
.noticias-destaque {
    margin-bottom: 3rem;
}

.destaque-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.noticia-destaque-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.noticia-destaque-item:hover {
    transform: translateY(-5px);
}

.noticia-destaque-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.noticia-destaque-content {
    padding: 1.5rem;
}

.noticia-destaque-content h3 {
    margin-bottom: 0.5rem;
}

.noticia-destaque-content h3 a {
    color: #001f3f;
    text-decoration: none;
}

.noticia-destaque-content h3 a:hover {
    color: #ff6600;
}

/* Notícias Lista */
.noticia-img-thumb {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 1rem;
    float: left;
}

.noticia-content {
    overflow: hidden;
}

/* TOP Músicas */
.top-musicas-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem;
    border-radius: 12px;
    margin: 3rem 0;
    color: white;
}

.top-musicas-section h2 {
    color: white;
    margin-bottom: 2rem;
}

.top-musicas-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.top-musica-item {
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.top-musica-item:hover {
    background: rgba(255,255,255,0.2);
}

.top-musica-item .posicao {
    font-size: 2rem;
    font-weight: bold;
    color: var(--cor-botao-texto, #ffd700);
    min-width: 50px;
    text-align: center;
}

.top-musica-item .musica-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.top-musica-item .musica-info strong {
    font-size: 1.1rem;
}

.top-musica-item .musica-info span {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Botões */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff6600 0%, #ff8833 100%);
    color: white;
    padding: 0.875rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background: linear-gradient(135deg, #ff8833 0%, #ffaa00 100%);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.btn-play {
    background: #ff6600;
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-play:hover {
    background: #ff8800;
    transform: scale(1.05);
}

/* Seções da Home */
.noticias-section {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 2rem;
}

.noticias-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 2rem;
}

/* Grid de Notícias na Home */
.noticias-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 2rem;
    justify-items: stretch;
    justify-content: stretch;
}

@media (min-width: 1024px) {
    .content-with-sidebar .noticias-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}


.noticia-card {
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
    width: 100%;
}

.noticia-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.noticia-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.noticia-imagem {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #1a1a1a;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
}

.noticia-imagem::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: inherit;
    filter: blur(12px) brightness(0.5);
    z-index: 0;
}

.noticia-imagem img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.15);
    transition: transform 0.4s ease;
}

.noticia-card:hover .noticia-imagem img {
    transform: scale(1.22);
}

.noticia-imagem .categoria-badge,
.noticia-imagem .noticia-titulo {
    z-index: 2;
}

.noticia-sem-imagem {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6600 0%, #ff8800 100%);
}

.placeholder-imagem {
    font-size: 4rem;
    opacity: 0.3;
}

.noticia-imagem .categoria-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--cat-color, #ff6600);
    color: white;
    padding: 0.2rem 0.55rem;
    border-radius: 20px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.noticia-titulo {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2rem 0.85rem 0.75rem;
    color: white;
    font-weight: 700;
    font-size: 0.75rem;
    line-height: 1.3;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.82) 100%);
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    border-radius: 0 0 12px 12px;
}

.noticia-conteudo {
    padding: 1.5rem;
}

.noticia-conteudo h3 {
    color: #001f3f;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.noticia-conteudo p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.noticia-conteudo .noticia-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: #999;
}

.programacao-section {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.programacao-section h2 {
    color: #001f3f;
    margin-bottom: 1rem;
}

.programacao-section p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Modal YouTube */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    color: #000;
}

#youtubePlayer {
    width: 100%;
    height: 450px;
    margin-top: 1rem;
}

/* Parceiros */
.parceiros-section {
    background: transparent;
    padding: 2rem 0;
    margin-top: 3rem;
}

.parceiros-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
}

.parceiros-carousel {
    overflow: hidden;
    position: relative;
}

.parceiros-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.parceiro-item {
    width: 100%;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    cursor: zoom-in;
}
.parceiro-item:hover {
    transform: translateY(-2px);
}

.parceiro-logo-wrap {
    position: relative;
    display: inline-flex;
    border-radius: 8px;
    overflow: hidden;
}
.parceiro-logo-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    opacity: 0;
    transition: opacity 0.2s ease, background-color 0.2s ease;
    pointer-events: none;
}
.parceiro-item:hover .parceiro-logo-wrap::after {
    background-color: rgba(0,0,0,0.45);
    opacity: 1;
}
.parceiro-zoom-icon svg {
    width: 16px;
    height: 16px;
    fill: #fff;
}

.parceiro-logo {
    width: auto;
    height: auto;
    max-width: 200px;
    max-height: 120px;
    display: block;
    transition: transform 0.2s ease;
    border-radius: 8px;
}
.parceiro-item:hover .parceiro-logo {
    transform: scale(1.04);
}



/* Responsive */
@media (max-width: 1024px) {
    .content-with-sidebar {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        position: static;
    }
    
    .noticias-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .destaque-grid {
        grid-template-columns: 1fr;
    }
    
    #youtubePlayer {
        height: 300px;
    }
    
    .parceiros-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .parceiro-logo {
        max-width: 160px;
        max-height: 90px;
    }
    
    .noticias-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .noticia-card {
        border-radius: 12px;
    }
    
    .noticia-imagem {
        aspect-ratio: 16 / 9;
    }
    
    .noticia-titulo {
        font-size: 0.85rem;
        padding: 0.6rem 0.75rem;
        -webkit-line-clamp: 2;
    }
    
    .programacao-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .programa-card {
        padding: 1.25rem;
    }
    
    .top-musicas-section {
        margin-top: 2rem;
    }
    
    .top-musica-item {
        padding: 0.85rem 1rem;
    }
    
    .content-with-sidebar {
        padding: 0 12px;
        gap: 20px;
    }
    
    .sidebar {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .page-wrapper {
        padding: 8px;
        gap: 12px;
    }
    
    section {
        padding: 1.5rem 0;
    }
    
    h2 {
        font-size: 1.4rem;
        margin-bottom: 1.25rem;
    }
    
    .header-content {
        gap: 0.3rem;
        padding: 0.5rem 0;
    }
    
    .logo img {
        height: 50px;
    }
    
    .logo-text {
        display: none;
    }
    
    .header-info {
        gap: 0.4rem;
    }
    
    .info-item {
        padding: 0;
        background: transparent;
    }
    
    .info-icon {
        width: 24px;
        height: 24px;
    }
    
    .info-icon svg {
        width: 15px;
        height: 15px;
    }
    
    .info-text strong {
        font-size: 0.65rem;
    }
    
    .info-text span {
        font-size: 0.6rem;
    }
    
    .on-air-content {
        align-items: center;
        gap: 0.25rem;
    }
    
    .on-air-badge {
        margin-bottom: 0.15rem;
    }
    
    .on-air-badge strong {
        font-size: 0.6rem;
    }
    
    .live-dot {
        width: 4px;
        height: 4px;
    }
    
    .on-air-details {
        gap: 0.4rem;
    }
    
    .on-air-photo {
        width: 35px;
        height: 35px;
    }
    
    .on-air-text {
        max-width: 180px;
    }
    
    .on-air-program {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .on-air-locutor {
        font-size: 0.65rem;
        line-height: 1.2;
    }
    
    .social-icons {
        gap: 3px;
        margin-top: 0.25rem;
    }
    
    .social-icons a {
        width: 32px;
        height: 32px;
    }
    
    .social-icons a svg {
        width: 24px;
        height: 24px;
    }
    
    .hero-slides {
        height: 240px;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
        margin-bottom: 0.4rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .hero-dots {
        bottom: 8px;
        gap: 2px;
    }
    
    .hero-dot {
        width: 3px;
        height: 3px;
        border-width: 1px;
    }
    
    .banner-section {
        padding: 2rem 0;
    }
    
    .banner-section h1 {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }
    
    .banner-section p {
        font-size: 0.85rem;
    }
    
    .noticias-grid {
        gap: 12px;
    }
    
    .noticia-titulo {
        font-size: 0.75rem;
        -webkit-line-clamp: 2;
        padding: 0.5rem 0.65rem;
    }
    
    .categoria-badge {
        font-size: 0.55rem;
        padding: 0.15rem 0.4rem;
    }
    
    .content-with-sidebar {
        padding: 0 10px;
    }
}

/* Categoria Badge */
.categoria-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--cat-color, #ff6600);
    color: white;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.categoria-badge.categoria-agronegocio { --cat-color: #2E7D32; }
.categoria-badge.categoria-brasil { --cat-color: #FFB300; }
.categoria-badge.categoria-nacional { --cat-color: #009739; }
.categoria-badge.categoria-internacional { --cat-color: #1565C0; }
.categoria-badge.categoria-regiao { --cat-color: #E65100; }
.categoria-badge.categoria-cidade { --cat-color: #EF6C00; }
.categoria-badge.categoria-cidades { --cat-color: #EF6C00; }
.categoria-badge.categoria-ciencia { --cat-color: #039BE5; }
.categoria-badge.categoria-clima { --cat-color: #4FC3F7; }
.categoria-badge.categoria-cultura { --cat-color: #8E24AA; }
.categoria-badge.categoria-economia { --cat-color: #558B2F; }
.categoria-badge.categoria-educacao { --cat-color: #1E88E5; }
.categoria-badge.categoria-empreendedorismo { --cat-color: #00796B; }
.categoria-badge.categoria-entretenimento { --cat-color: #D81B60; }
.categoria-badge.categoria-esportes { --cat-color: #7CB342; }
.categoria-badge.categoria-famosos { --cat-color: #EC407A; }
.categoria-badge.categoria-games { --cat-color: #5E35B1; }
.categoria-badge.categoria-gastronomia { --cat-color: #6D4C41; }
.categoria-badge.categoria-meio-ambiente { --cat-color: #388E3C; }
.categoria-badge.categoria-moda { --cat-color: #F06292; }
.categoria-badge.categoria-mundo { --cat-color: #01579B; }
.categoria-badge.categoria-musica { --cat-color: #7B1FA2; }
.categoria-badge.categoria-negocios { --cat-color: #1B5E20; }
.categoria-badge.categoria-opiniao { --cat-color: #424242; }
.categoria-badge.categoria-policial { --cat-color: #C62828; }
.categoria-badge.categoria-politica { --cat-color: #0D47A1; }
.categoria-badge.categoria-religiao { --cat-color: #C9A227; }
.categoria-badge.categoria-saude { --cat-color: #1976D2; }
.categoria-badge.categoria-seguranca { --cat-color: #283593; }
.categoria-badge.categoria-tecnologia { --cat-color: #2962FF; }
.categoria-badge.categoria-transito { --cat-color: #F9A825; }
.categoria-badge.categoria-turismo { --cat-color: #00ACC1; }
.categoria-badge.categoria-ltima-hora { --cat-color: #FF6F00; }
.categoria-badge.categoria-geral { --cat-color: #4527A0; }
.categoria-badge.categoria-fama { --cat-color: #455A64; }

/* Notícia Completa */
.noticia-completa {
    background: transparent;
    padding: 2rem;
    border-radius: 0;
    box-shadow: none;
    max-width: 860px;
    margin: 0 auto;
}

.noticia-completa h1 {
    color: #001f3f;
    margin-bottom: 0.75rem;
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.noticia-subtitulo {
    font-size: 1.2rem;
    color: #444;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    font-weight: 400;
    border-left: 4px solid #ff6600;
    padding-left: 1rem;
    font-style: normal;
}

.noticia-img-full {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.noticia-imagem-container {
    margin: 1.5rem 0;
    border-radius: 10px;
    overflow: hidden;
}

.creditos-imagem {
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
    margin-top: 0.4rem;
    padding: 0.3rem 0.6rem;
    background: transparent;
    border-left: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Imagens dentro do conteúdo da notícia */
.noticia-texto img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.5rem auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.noticia-texto {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.noticia-texto p {
    margin-bottom: 1.2rem;
}

.noticia-texto a {
    color: #ff6600;
    text-decoration: underline;
}

.noticia-texto a:hover {
    color: #cc5200;
}

.creditos-imagem svg {
    opacity: 0.6;
    flex-shrink: 0;
}

.noticia-texto {
    font-size: 1.1rem;
    line-height: 1.85;
    color: #2c2c2c;
    margin: 1.5rem 0;
    font-family: Georgia, 'Times New Roman', serif;
}

.noticia-texto p {
    margin-bottom: 1.4rem;
}

.noticia-texto p:last-child {
    margin-bottom: 0;
}

.noticia-texto h2,
.noticia-texto h3,
.noticia-texto h4 {
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #001f3f;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
}

.noticia-texto h2 { font-size: 1.5rem; }
.noticia-texto h3 { font-size: 1.25rem; }
.noticia-texto h4 { font-size: 1.1rem; }

.noticia-texto ul,
.noticia-texto ol {
    margin: 1rem 0 1.4rem 1.5rem;
}

.noticia-texto li {
    margin-bottom: 0.5rem;
}

.noticia-texto blockquote {
    border-left: 4px solid #ff6600;
    margin: 2rem 0;
    padding: 1rem 1.5rem;
    background: #fff8f5;
    font-style: italic;
    color: #555;
    border-radius: 0 6px 6px 0;
}

.noticia-texto hr {
    border: none;
    border-top: 2px solid #e9ecef;
    margin: 2rem 0;
}

.noticia-texto strong {
    color: #001f3f;
    font-weight: 700;
}

.noticia-texto a {
    color: #ff6600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.noticia-texto a:hover {
    color: #cc5200;
}

/* Compartilhamento */
.compartilhar-section {
    background: transparent;
    padding: 2rem 0;
    border-radius: 0;
    margin: 2rem 0;
    border: none;
    box-shadow: none;
    border-top: 2px solid #e9ecef;
    border-bottom: 2px solid #e9ecef;
}

.compartilhar-section h3 {
    color: #001f3f;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.compartilhar-botoes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.btn-compartilhar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.btn-compartilhar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-compartilhar:hover::before {
    left: 100%;
}

.btn-compartilhar:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.btn-compartilhar svg {
    width: 16px;
    height: 16px;
}

.btn-facebook {
    background: #1877f2;
}

.btn-twitter {
    background: #1da1f2;
}

.btn-whatsapp {
    background: #25d366;
}

.btn-telegram {
    background: #0088cc;
}

.btn-copiar {
    background: #6c757d;
}

.btn-compartilhar-geral {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

@media (max-width: 768px) {
    .noticia-completa h1 {
        font-size: 1.5rem;
        line-height: 1.25;
    }

    .noticia-subtitulo {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .compartilhar-section {
        padding: 1.5rem 0;
        margin: 1.5rem 0;
    }
    
    .compartilhar-section h3 {
        font-size: 1.1rem;
    }
    
    .compartilhar-botoes {
        gap: 0.5rem;
    }
    
    .btn-compartilhar {
        padding: 0.5rem 0.9rem;
        font-size: 0.8rem;
        flex: 1 1 calc(50% - 0.25rem);
        min-width: 120px;
    }
    
    .btn-compartilhar svg {
        width: 14px;
        height: 14px;
    }
}

/* Melhorias para touch em mobile */
@media (max-width: 768px) {
    /* Aumentar área de toque dos botões */
    button, .btn, a {
        -webkit-tap-highlight-color: transparent;
        min-height: 44px;
    }
    
    /* Desabilitar scroll suave no mobile para navegação mais rápida */
    html {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: auto;
    }
    
    /* Prevenir zoom em inputs */
    input, select, textarea {
        font-size: 16px !important;
    }
    
    /* Garantir que links e botões tenham tamanho adequado para toque */
    .nav-menu a,
    .btn,
    button,
    .social-icons a {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Melhorar espaçamento entre elementos clicáveis */
    .header-info {
        gap: 1.5rem;
    }
    
    .social-icons {
        gap: 10px;
    }
}

.btn-compartilhar svg {
    width: 20px;
    height: 20px;
}

.btn-facebook {
    background: #1877f2;
}

.btn-twitter {
    background: #1da1f2;
}

.btn-whatsapp {
    background: #25d366;
}

.btn-telegram {
    background: #0088cc;
}

.btn-copiar {
    background: #6c757d;
}

/* TOP Músicas Section */
.top-musicas-section {
    background: transparent;
    padding: 0;
    margin-top: 3rem;
}

.top-musicas-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.top-musicas-list {
    background: white;
    border-radius: 12px;
    overflow: visible;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.top-musica-item {
    display: flex;
    align-items: flex-start;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
    position: relative;
    overflow: visible !important;
}

.top-musica-item:last-child {
    border-bottom: none;
}

.top-musica-item:hover {
    background: #f8f9fa;
}

.top-musica-posicao {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--cor-botao-texto, #ff6600);
    min-width: 50px;
    text-align: center;
    padding-top: 0.2rem;
}

.top-musica-capa {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: visible;
    margin-left: 0.15rem;
    flex-shrink: 0;
    align-self: center;
    position: relative;
}

/* Badge de preview na capa - FORÇAR VISIBILIDADE */
.top-musica-capa .preview-badge,
.top-musica-capa > .preview-badge,
div.top-musica-capa span.preview-badge {
    position: absolute !important;
    bottom: -8px !important;
    right: -8px !important;
    left: auto !important;
    transform: none !important;
    background: #ffc107 !important;
    color: #000 !important;
    font-size: 0.65rem !important;
    font-weight: 700 !important;
    padding: 3px 6px !important;
    border-radius: 4px !important;
    z-index: 100 !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3) !important;
    pointer-events: none !important;
    white-space: nowrap !important;
}

.top-musica-capa img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.top-musica-info {
    flex: 1;
    margin-left: 1rem;
    min-width: 0;
    overflow: hidden;
    position: relative;
}

.top-musica-nome {
    font-weight: 600;
    color: #001f3f;
    margin-bottom: 0.25rem;
    line-height: 1.4;
    word-break: break-word;
    white-space: normal;
    overflow: visible;
}

.top-musica-artista {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

.preview-message {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
    align-self: center;
    margin-left: 0.75rem;
}

.preview-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.preview-label {
    color: #999;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.preview-buttons {
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
}

.btn-pedir-site,
.btn-pedir-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem;
    border-radius: 50%;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 600;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    min-width: 40px;
    height: 40px;
}

.btn-pedir-site svg,
.btn-pedir-whatsapp svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.btn-pedir-site {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.25);
}

.btn-pedir-site:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn-pedir-site:active {
    transform: translateY(0) scale(1);
}

.btn-pedir-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.25);
}

.btn-pedir-whatsapp:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.btn-pedir-whatsapp:active {
    transform: translateY(0) scale(1);
}


@media (max-width: 768px) {
    .top-musica-item {
        padding: 0.85rem;
        flex-wrap: wrap;
        align-items: center;
    }
    
    .top-musica-posicao {
        font-size: 1.1rem;
        min-width: 35px;
        order: 1;
    }
    
    .top-musica-capa {
        width: 55px;
        height: 55px;
        position: relative;
        order: 2;
    }
    
    .top-musica-capa .preview-badge {
        font-size: 0.45rem !important;
        padding: 2px 4px !important;
        bottom: -6px !important;
        right: -6px !important;
    }
    
    .top-musica-info {
        flex: 1;
        min-width: 0;
        order: 3;
    }
    
    .top-musica-play {
        order: 4;
        align-self: center;
    }

    .preview-message {
        order: 5;
        margin-left: 0;
        margin-top: 0.5rem;
        width: 100%;
        flex-basis: 100%;
        justify-content: center;
        align-self: auto;
    }
    
    .top-musica-nome {
        font-size: 0.9rem;
        line-height: 1.3;
        word-break: break-word;
        white-space: normal;
        overflow: visible;
    }
    
    .top-musica-artista {
        font-size: 0.8rem;
        margin-bottom: 0;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
    }
    
    .preview-info {
        flex-direction: column;
        align-items: center;
        gap: 0.65rem;
    }
    
    .preview-label {
        font-size: 0.65rem;
        color: #999;
        font-weight: 700;
    }
    
    .preview-buttons {
        gap: 0.85rem;
    }
    
    .btn-pedir-site,
    .btn-pedir-whatsapp {
        padding: 0.5rem;
        min-width: 44px;
        max-width: 44px;
        width: 44px;
        height: 44px;
        min-height: 44px;
        max-height: 44px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    }
    
    .btn-pedir-site svg,
    .btn-pedir-whatsapp svg {
        width: 20px;
        height: 20px;
    }
}

/* Mobile pequeno - Ajustes adicionais */
@media (max-width: 480px) {
    .top-musica-item {
        padding: 0.75rem;
    }
    
    .top-musica-posicao {
        font-size: 1rem;
        min-width: 30px;
    }
    
    .top-musica-capa {
        width: 50px;
        height: 50px;
        position: relative;
    }
    
    .top-musica-capa .preview-badge {
        font-size: 0.42rem !important;
        padding: 1px 3px !important;
        bottom: -5px !important;
        right: -5px !important;
    }
    
    .top-musica-nome {
        font-size: 0.85rem;
        word-break: break-word;
        white-space: normal;
        overflow: visible;
        display: block;
        max-height: none;
    }
    
    .top-musica-artista {
        font-size: 0.75rem;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
    }
    
    .preview-message {
        margin-top: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .preview-label {
        font-size: 0.6rem;
    }
    
    .preview-buttons {
        gap: 0.75rem;
    }
    
    .btn-pedir-site,
    .btn-pedir-whatsapp {
        padding: 0.45rem;
        min-width: 42px;
        max-width: 42px;
        width: 42px;
        height: 42px;
        min-height: 42px;
        max-height: 42px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    }
    
    .btn-pedir-site svg,
    .btn-pedir-whatsapp svg {
        width: 19px;
        height: 19px;
    }
}

/* Modal Player YouTube */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.2s ease;
}

.video-modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 16px;
    padding: 0;
    max-width: 1100px;
    width: 100%;
    max-height: 95vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease;
}

.video-modal-header {
    padding: 1.25rem 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.video-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    border: none;
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 300;
    z-index: 10;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    opacity: 1;
    visibility: visible;
}

.video-modal-close:hover {
    transform: rotate(90deg);
}

.video-modal-title {
    margin: 0;
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    padding-right: 50px;
    line-height: 1.4;
    flex: 1;
}

.video-modal-iframe {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-modal-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 768px) {
    .video-modal {
        padding: 0.5rem;
    }
    
    .video-modal-content {
        border-radius: 12px;
        max-height: 98vh;
    }
    
    .video-modal-header {
        padding: 1rem 1.25rem;
    }
    
    .video-modal-close {
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
        font-size: 1.3rem;
    }
    
    .video-modal-title {
        font-size: 1rem;
        padding-right: 45px;
    }
}

/* Modal Player YouTube (antigo - manter para compatibilidade) */
.youtube-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.youtube-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(4px);
}

.youtube-modal-content {
    position: relative;
    background: #1a1a1a;
    border-radius: 16px;
    padding: 1.5rem;
    max-width: 1000px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.youtube-modal-close {
    position: absolute;
    top: -12px;
    right: -12px;
    background: #ff6600;
    color: white;
    border: 3px solid #1a1a1a;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.youtube-modal-close:hover {
    background: #ff8800;
    transform: scale(1.1);
}

.youtube-modal-close:active {
    transform: scale(0.95);
}

.youtube-modal-header {
    margin-bottom: 1rem;
}

#youtubeModalTitle {
    color: #ffffff;
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    padding-right: 40px;
    line-height: 1.4;
}

.youtube-player-container {
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.youtube-player-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

.youtube-player-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.top-musica-play {
    width: 55px !important;
    height: 55px !important;
    min-width: 55px;
    min-height: 55px;
    max-width: 55px;
    max-height: 55px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    margin-left: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    line-height: 1;
    padding: 0;
    flex-shrink: 0;
    align-self: center;
    position: relative;
    overflow: visible !important;
}

.top-musica-play:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.top-musica-play:active {
    transform: scale(0.98);
}

.top-musica-play svg {
    width: 24px;
    height: 24px;
}

.top-musica-play .preview-badge {
    position: absolute !important;
    top: -8px !important;
    right: -8px !important;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%) !important;
    color: #000 !important;
    padding: 3px 7px !important;
    border-radius: 12px !important;
    font-size: 0.58rem !important;
    font-weight: 700 !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3) !important;
    z-index: 9999 !important;
    letter-spacing: 0.03em !important;
    border: 2px solid white !important;
    pointer-events: none !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Garantir que o badge SEMPRE fique visível, mesmo quando não está tocando */
.top-musica-play .preview-badge,
.top-musica-play.playing .preview-badge {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 9999 !important;
}

.top-musica-play svg {
    flex-shrink: 0;
}

.top-musica-play:hover {
    background: linear-gradient(135deg, #ff8800 0%, #ffaa00 100%);
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.top-musica-play:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .youtube-modal {
        padding: 1rem;
    }
    
    .youtube-modal-content {
        padding: 1.25rem;
        border-radius: 12px;
    }
    
    .youtube-modal-close {
        top: -10px;
        right: -10px;
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
    
    #youtubeModalTitle {
        font-size: 1.1rem;
    }
    
    .youtube-player-container {
        border-radius: 6px;
    }
    
    .top-musica-play {
        width: 42px !important;
        height: 42px !important;
        min-width: 42px;
        min-height: 42px;
        max-width: 42px;
        max-height: 42px;
        font-size: 1rem;
    }
    
    .top-musica-play svg {
        width: 18px;
        height: 20px;
    }
}

/* Player de Áudio Fixo */
.audio-player-bar {
    position: relative;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    padding: 1rem 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    animation: slideUp 0.3s ease;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .audio-player-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        margin: 0;
        border-radius: 0;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.audio-player-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.audio-player-controls {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.volume-control-mobile {
    display: none;
}

.audio-player-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.audio-player-capa {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: #ff6600;
    flex-shrink: 0;
}

.audio-player-text {
    flex: 1;
    min-width: 0;
}

.audio-player-musica {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.audio-player-artista {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.audio-player-controls {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.audio-control-btn {
    width: 44px;
    height: 44px;
    background: #ff6600;
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.audio-control-btn:hover {
    background: #ff8800;
    transform: scale(1.1);
}

.audio-control-btn:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .audio-player-bar {
        padding: 0.75rem 1rem;
        background: linear-gradient(135deg, #003366 0%, #001f3f 100%);
    }
    
    .audio-player-content {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }
    
    /* Linha superior: Play + Info */
    .audio-player-top {
        display: flex;
        gap: 0.75rem;
        align-items: center;
    }
    
    /* Play button grande à esquerda */
    .audio-player-controls {
        order: 1;
        flex-shrink: 0;
    }
    
    .audio-control-btn:first-child {
        width: 56px;
        height: 56px;
        background: linear-gradient(135deg, #ff6600 0%, #ff8800 100%);
        border-radius: 50%;
        box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    }
    
    .audio-control-btn:first-child svg {
        width: 24px;
        height: 24px;
    }
    
    .audio-control-btn:last-child {
        display: none !important;
    }
    
    /* Info no centro */
    .audio-player-info {
        order: 2;
        flex: 1;
        min-width: 0;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .audio-player-capa {
        display: none;
    }
    
    .audio-player-text {
        width: 100%;
    }
    
    .audio-player-musica {
        font-size: 0.95rem;
        font-weight: 600;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.3;
        color: white;
    }
    
    .audio-player-artista {
        font-size: 0.85rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.3;
        color: rgba(255, 255, 255, 0.7);
    }
    
    /* Linha inferior: Volume */
    .volume-control-mobile {
        order: 3;
        display: flex !important;
        align-items: center;
        gap: 0.75rem;
        width: 100%;
    }
    
    .volume-toggle-btn {
        width: 32px;
        height: 32px;
        background: transparent;
        border: none;
        color: white;
        font-size: 1.3rem;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .volume-slider-horizontal {
        flex: 1;
        height: 6px;
        -webkit-appearance: none;
        appearance: none;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 3px;
        outline: none;
        cursor: pointer;
    }
    
    .volume-slider-horizontal::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 18px;
        height: 18px;
        background: #ff6600;
        border-radius: 50%;
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    
    .volume-slider-horizontal::-moz-range-thumb {
        width: 18px;
        height: 18px;
        background: #ff6600;
        border-radius: 50%;
        cursor: pointer;
        border: none;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    
    .volume-value-mobile {
        color: white;
        font-size: 0.85rem;
        font-weight: 600;
        min-width: 42px;
        text-align: right;
    }
    
    .volume-popup {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .audio-player-bar {
        padding: 0.65rem 0.85rem;
    }
    
    .audio-control-btn:first-child {
        width: 52px;
        height: 52px;
    }
    
    .audio-player-musica {
        font-size: 0.9rem;
    }
    
    .audio-player-artista {
        font-size: 0.8rem;
    }
    
    .volume-toggle-btn {
        font-size: 1.2rem;
    }
    
    .volume-value-mobile {
        font-size: 0.8rem;
        min-width: 38px;
    }
}
/* Controle de ícones do player */
.audio-control-btn.playing #playIcon {
    display: none !important;
}

.audio-control-btn.playing #stopIcon {
    display: block !important;
}

.audio-control-btn:not(.playing) #playIcon {
    display: block !important;
}

.audio-control-btn:not(.playing) #stopIcon {
    display: none !important;
}

/* Controle de ícones dos botões do TOP Músicas */
.top-musica-play.playing svg {
    display: none !important;
}

.top-musica-play.playing::after {
    content: "";
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 2px;
    display: block !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* CRÍTICO: Badge deve ficar SEMPRE visível, acima de tudo */
.top-musica-play > .preview-badge,
.top-musica-play.playing > .preview-badge,
button.top-musica-play > span.preview-badge,
button.top-musica-play.playing > span.preview-badge {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: absolute !important;
    z-index: 9999 !important;
    top: -8px !important;
    right: -8px !important;
    pointer-events: none !important;
}

/* Garantir que o badge fique ACIMA do ::after */
.top-musica-play .preview-badge {
    z-index: 101 !important;
}

/* FORÇAR badge sempre visível - regra global mais forte */
button.top-musica-play span.preview-badge,
button.top-musica-play.playing span.preview-badge {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: absolute !important;
    z-index: 9999 !important;
}


/* ========================================
   MELHORIAS DE RESPONSIVIDADE GERAL
   ======================================== */

/* Tablets e dispositivos médios */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
}

/* Mobile - Smartphones */
@media (max-width: 768px) {
    /* Typography */
    body {
        font-size: 0.95rem;
    }
    
    h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    h2 {
        font-size: 1.3rem;
        line-height: 1.3;
    }
    
    h3 {
        font-size: 1.1rem;
    }
    
    /* Spacing */
    section {
        padding: 1.5rem 0;
    }
    
    /* Cards e boxes */
    .card,
    .box,
    .widget {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    /* Botões */
    .btn,
    button {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 100%;
    }
    
    /* Formulários */
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="tel"],
    textarea,
    select {
        font-size: 16px; /* Previne zoom no iOS */
        padding: 0.75rem;
    }
    
    /* Tabelas responsivas */
    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Imagens */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Grid layouts */
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Flex layouts */
    .flex-row {
        flex-direction: column;
    }
    
    /* Modais */
    .modal-content {
        width: 95%;
        margin: 1rem auto;
        max-height: 90vh;
        overflow-y: auto;
    }
}

/* Mobile pequeno */
@media (max-width: 480px) {
    body {
        font-size: 0.9rem;
    }
    
    h1 {
        font-size: 1.3rem;
    }
    
    h2 {
        font-size: 1.15rem;
    }
    
    h3 {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 10px;
    }
    
    section {
        padding: 1rem 0;
    }
    
    .card,
    .box,
    .widget {
        padding: 0.875rem;
    }
    
    .btn,
    button {
        padding: 0.65rem 1rem;
        font-size: 0.9rem;
    }
}

/* Landscape mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-slides,
    .banner {
        height: 200px;
    }
    
    .modal-content {
        max-height: 85vh;
    }
}

/* Touch improvements */
@media (hover: none) and (pointer: coarse) {
    /* Aumentar área de toque */
    a,
    button,
    .btn,
    input[type="submit"],
    input[type="button"] {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Remover hover states em touch devices */
    a:hover,
    button:hover,
    .btn:hover {
        transform: none;
    }
    
    /* Feedback visual ao tocar */
    a:active,
    button:active,
    .btn:active {
        opacity: 0.7;
        transform: scale(0.98);
    }
}

/* Print styles */
@media print {
    .no-print,
    header,
    footer,
    .sidebar,
    .audio-player-bar,
    .mobile-menu-toggle,
    button,
    .btn {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    a {
        text-decoration: underline;
    }
    
    .main-content {
        width: 100%;
        max-width: 100%;
    }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    /* Otimizações para telas retina */
    img {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark mode support (opcional) */
@media (prefers-color-scheme: dark) {
    /* Adicionar estilos dark mode se necessário */
}

/* Acessibilidade - Alto contraste */
@media (prefers-contrast: high) {
    body {
        background: white;
        color: black;
    }
    
    a {
        color: #0000EE;
        text-decoration: underline;
    }
    
    button,
    .btn {
        border: 2px solid black;
    }
}


/* ========================================
   MELHORIAS DE LAYOUT DO SITE
   ======================================== */

/* Header moderno e responsivo */
header {
    background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    position: static !important;
    z-index: 999;
    transition: all 0.3s ease;
}

header.scrolled {
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1rem 0;
}

.logo img {
    max-height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

/* Header right side - Info + Social */
.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* On Air Info melhorado */
.on-air-info {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.on-air-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.on-air-badge strong {
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
}
.live-dot {
    width: 12px;
    height: 12px;
    background: #ff0000;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 8px rgba(255,0,0,0.7);
    animation: live-dot-pulse 1.8s ease-in-out infinite;
}

.live-dot::before,
.live-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.4);
    animation: live-ripple 1.8s ease-out infinite;
}

.live-dot::after {
    animation-delay: 0.6s;
}

.on-air-details {
    display: flex;
    align-items: center;
}

.on-air-photo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.on-air-program {
    font-weight: 600;
    font-size: 1rem;
    color: white;
}

.on-air-locutor {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
}

/* Header Info Cards */
.header-info {
    display: flex;
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    background: transparent;
    padding: 0.875rem 1.25rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: none;
    backdrop-filter: none;
    box-shadow: none;
}

.info-item:hover {
    background: transparent;
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

/* Desabilitar hover no NO AR AGORA */
.info-item.on-air-info:hover {
    background: transparent;
    transform: none;
    box-shadow: none;
    border-color: rgba(255,255,255,0.2);
}

.info-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: transparent;
    border-radius: 0;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.info-item:hover .info-icon {
    background: transparent;
    transform: scale(1.15);
}

.info-icon svg {
    width: 48px;
    height: 48px;
}

.info-icon i.bi-whatsapp {
    font-size: 48px;
    line-height: 1;
    color: #25D366;
}

.info-text {
    flex: 1;
    min-width: 0;
}

.info-text strong {
    display: block;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.35rem;
    font-weight: 600;
}

.info-text span {
    display: block;
    font-size: 1rem;
    color: white;
    font-weight: 500;
    line-height: 1.2;
}
    display: block;
    font-size: 0.95rem;
    color: white;
    font-weight: 500;
}

/* Social Icons melhorados */
.social-icons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: flex-start;
    margin-top: 0.25rem;
}

/* Layout especial para SIGA-NOS */
.info-item-social .info-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.info-item-social .info-text strong {
    margin-bottom: 0.35rem;
}

.info-item-social .social-icons {
    justify-content: center;
}

.whatsapp-info-link {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    color: inherit;
}

.whatsapp-info-link:hover,
.whatsapp-info-link:focus,
.whatsapp-info-link:active {
    text-decoration: none;
    color: inherit;
}

.header-info .info-item:not(.info-item-social) .info-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: transparent;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: none;
}

.social-icons a:hover {
    transform: scale(1.25);
}

.social-icons a svg {
    width: 34px;
    height: 34px;
    transition: none;
}

.social-icons a:hover svg {
    filter: none;
}

/* Top Bar melhorada */
.top-bar {
    background: linear-gradient(90deg, #000d1a 0%, #001f3f 100%);
    color: rgba(255,255,255,0.8);
    padding: 0.5rem 0;
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Cards de Notícias Modernos */
.noticia-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.noticia-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.noticia-card-image {
    position: relative;
    padding-top: 60%;
    overflow: hidden;
    background: #f8f9fa;
}

.noticia-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.noticia-card:hover .noticia-card-image img {
    transform: scale(1.1);
}

.noticia-categoria {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(0,0,0,0.7);
    color: white;
    backdrop-filter: blur(10px);
}

.noticia-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.noticia-card-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.noticia-card-excerpt {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.noticia-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
    font-size: 0.85rem;
    color: #6c757d;
}

.noticia-data {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.noticia-data svg {
    width: 16px;
    height: 16px;
    opacity: 0.6;
}

.btn-ler-mais {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-ler-mais:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Grid de Notícias */
.noticias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

/* Widgets da Sidebar */
.widget {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid #667eea;
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

/* Banners melhorados */
.banner-item {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.banner-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.banner-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Footer moderno */
footer {
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
    color: rgba(255,255,255,0.8);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
    border-top: 4px solid #667eea;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section a:hover {
    color: white;
    padding-left: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.875rem;
}

/* Seções do site */
.section {
    padding: 3rem 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

/* Responsividade do Header */
@media (max-width: 1200px) {
    .header-content {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .header-info {
        order: 3;
        width: 100%;
        justify-content: center;
    }
    
    .social-icons {
        order: 2;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .logo {
        order: 1;
    }
    
    .on-air-info {
        order: 2;
        width: 100%;
    }
    
    .header-right {
        order: 3;
        width: 100%;
        flex-direction: column;
        gap: 1rem;
    }
    
    .header-info {
        width: 100%;
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .logo img {
        max-height: 60px;
    }
    
    .on-air-info {
        padding: 0.875rem 1rem;
    }
    
    .on-air-details {
        flex-direction: row !important;
        text-align: left;
    }
    
    .on-air-photo img {
        width: 100%;
        height: 100%;
    }
    
    .info-item {
        padding: 0.5rem 0.75rem;
    }
    
    .info-icon svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 0.75rem 0;
    }
    
    .logo img {
        max-height: 50px;
    }
    
    .on-air-badge strong {
        font-size: 0.75rem;
    }
    
    .on-air-program {
        font-size: 0.875rem;
    }
    
    .on-air-locutor {
        font-size: 0.75rem;
    }
    
    .social-icons a {
        width: 40px;
        height: 40px;
    }
    
    .social-icons a svg {
        width: 40px;
        height: 40px;
    }
    
    .header-info {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .info-item {
        width: 100%;
        justify-content: center;
    }
}

/* Responsividade das Notícias */
@media (max-width: 768px) {
    .noticias-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .noticia-card-title {
        font-size: 1rem;
    }
    
    .noticia-card-content {
        padding: 1.25rem;
    }
}

/* Responsividade dos Widgets */
@media (max-width: 768px) {
    .widget {
        padding: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .widget-title {
        font-size: 1.1rem;
    }
}

/* Responsividade do Footer */
@media (max-width: 768px) {
    footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

/* Melhorias de Performance */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy-load.loaded {
    opacity: 1;
}

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    background: #ffd500 !important;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease;
    z-index: 998;
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    display: block;
}

.scroll-to-top.visible {
    display: flex;
}

.scroll-to-top:hover {
    transform: translateY(-2px);
}

.whatsapp-float {
    position: fixed;
    left: 1rem;
    right: auto;
    bottom: 2rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
    z-index: 999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float i {
    font-size: 30px;
    line-height: 1;
}

.whatsapp-float:hover,
.whatsapp-float:focus,
.whatsapp-float:active {
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 2.2rem;
        right: 1rem;
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        left: 1rem;
        right: auto;
        bottom: 2.2rem;
    }

    .whatsapp-float i {
        font-size: 27px;
    }
}


/* ========================================
   COMPONENTES JAVASCRIPT
   ======================================== */

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.toast {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    min-width: 250px;
    max-width: 400px;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    border-left: 4px solid;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-success {
    border-left-color: #28a745;
    background: #d4edda;
    color: #155724;
}

.toast-error {
    border-left-color: #dc3545;
    background: #f8d7da;
    color: #721c24;
}

.toast-info {
    border-left-color: #17a2b8;
    background: #d1ecf1;
    color: #0c5460;
}

.toast-warning {
    border-left-color: #ffc107;
    background: #fff3cd;
    color: #856404;
}

@media (max-width: 768px) {
    .toast-container {
        top: 1rem;
        right: 1rem;
        left: 1rem;
    }
    
    .toast {
        min-width: auto;
        max-width: 100%;
    }
}

/* Animações de Scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Form Validation */
input.error,
textarea.error,
select.error {
    border-color: #dc3545 !important;
    background: #fff5f5;
}

.field-error {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Loading States */
.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin: -12px 0 0 -12px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.modal-close {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6c757d;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #f8f9fa;
    color: #2c3e50;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.badge-success {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
}

.badge-danger {
    background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%);
    color: white;
}

.badge-warning {
    background: linear-gradient(135deg, #f7971e 0%, #ffd200 100%);
    color: #333;
}

.badge-info {
    background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
    color: white;
}

/* Tooltips */
[data-tooltip] {
    position: relative;
    cursor: help;
}

[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    padding: 0.5rem 0.75rem;
    background: rgba(0,0,0,0.9);
    color: white;
    font-size: 0.875rem;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    pointer-events: none;
    z-index: 1000;
}

[data-tooltip]::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(0,0,0,0.9);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
}

[data-tooltip]:hover::before,
[data-tooltip]:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

/* Accordion */
.accordion-item {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.accordion-header {
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s ease;
}

.accordion-header:hover {
    background: #e9ecef;
}

.accordion-header::after {
    content: '▼';
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header::after {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
}

.accordion-body {
    padding: 1.5rem;
}

/* Tabs */
.tabs {
    display: flex;
    gap: 0.5rem;
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 1.5rem;
}

.tab {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #6c757d;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.tab:hover {
    color: #2c3e50;
}

.tab.active {
    color: #667eea;
    border-bottom-color: #667eea;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    background: white;
    border: 1px solid #ced4da;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
    margin-top: 0.5rem;
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background 0.2s ease;
    border-bottom: 1px solid #f8f9fa;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: #f8f9fa;
}

/* Pagination */
.pagination {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.pagination a,
.pagination span {
    padding: 0.5rem 1rem;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    text-decoration: none;
    color: #495057;
    transition: all 0.2s ease;
    min-width: 40px;
    text-align: center;
}

.pagination a:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.pagination .active {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.pagination .disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* Dark Mode */
body.dark-mode {
    background: #1a1a1a;
    color: #e0e0e0;
}

body.dark-mode header {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

body.dark-mode .noticia-card,
body.dark-mode .widget,
body.dark-mode .banner-item {
    background: #2a2a2a;
    border-color: #3a3a3a;
}

body.dark-mode .noticia-card-title,
body.dark-mode .widget-title,
body.dark-mode .section-title {
    color: #e0e0e0;
}

body.dark-mode .noticia-card-excerpt {
    color: #b0b0b0;
}

/* Print Styles */
@media print {
    .no-print,
    header,
    footer,
    .sidebar,
    .widget,
    .banner-item,
    .social-icons,
    .scroll-to-top,
    .toast-container,
    button,
    .btn {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .noticia-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}


/* ========================================
   SEÇÃO DE VÍDEOS
   ======================================== */

.videos-section {
    margin: 2rem 0;
    padding: 0;
    background: transparent;
}

.videos-section h2 {
    color: #001f3f;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.video-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    background: #000;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.85;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.video-card:hover .video-play-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.15);
}

.video-info {
    padding: 1.25rem;
    background: white;
}

.video-info h3 {
    font-size: 1.05rem;
    color: #001f3f;
    margin: 0;
    line-height: 1.4;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8rem;
}

.video-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0.5rem 0 0 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Modal de Vídeo */
.video-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.97) 0%, rgba(20,20,40,0.98) 100%);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.4s ease;
}

.video-modal-content {
    position: relative;
    margin: 5% auto;
    width: 75%;
    max-width: 1000px;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.video-modal-close {
    position: absolute;
    top: -55px;
    right: 0;
    color: white;
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.08) 100%);
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    padding: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.video-modal-close:hover {
    transform: rotate(90deg) scale(1.15);
    background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.15) 100%);
    border-color: rgba(255,255,255,0.4);
    box-shadow: 0 6px 30px rgba(255,255,255,0.2);
}

.video-modal-close:active {
    transform: rotate(90deg) scale(1.05);
}

.video-modal-iframe {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 */
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 25px 80px rgba(0,0,0,0.6),
        0 0 0 1px rgba(255,255,255,0.1);
    background: #000;
}

.video-modal-iframe::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, 
        rgba(255,102,0,0.3) 0%, 
        rgba(255,102,0,0.1) 50%, 
        rgba(0,31,63,0.3) 100%);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.5;
}

.video-modal-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-modal-title {
    color: white;
    margin-top: 1.5rem;
    font-size: 1.3rem;
    text-align: center;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
    letter-spacing: 0.3px;
    padding: 0 2rem;
    line-height: 1.5;
}

@keyframes fadeIn {
    from { 
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to { 
        opacity: 1;
        backdrop-filter: blur(8px);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsivo */
@media (max-width: 1200px) {
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .video-modal-content {
        width: 85%;
    }
}

@media (max-width: 768px) {
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .video-modal-content {
        margin: 10% auto;
        width: 92%;
    }
    
    .video-modal-close {
        top: -50px;
        font-size: 24px;
        width: 44px;
        height: 44px;
    }
    
    .video-modal-title {
        font-size: 1.1rem;
        margin-top: 1.2rem;
        padding: 0 1rem;
    }
    
    .video-modal-iframe {
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .videos-section h2 {
        font-size: 1.5rem;
    }
    
    .video-info h3 {
        font-size: 0.95rem;
    }
    
    .video-info p {
        font-size: 0.85rem;
    }
    
    .video-modal-content {
        width: 95%;
        margin: 15% auto;
    }
    
    .video-modal-title {
        font-size: 1rem;
    }
}

/* ========================================
   CRÉDITOS DE IMAGEM NAS NOTÍCIAS
   ======================================== */

.noticia-imagem-container {
    position: relative;
    margin: 2rem 0;
    overflow: hidden;
}

.noticia-img-full {
    width: 100%;
    height: auto;
    display: block;
}

.creditos-imagem {
    position: absolute;
    bottom: 8px;
    right: 8px;
    color: #ffffff;
    padding: 0.4rem 0.85rem;
    font-size: 0.7rem;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0.3px;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.creditos-imagem svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .creditos-imagem {
        font-size: 0.65rem;
        padding: 0.35rem 0.7rem;
        bottom: 6px;
        right: 6px;
    }
}

/* Estilo para fonte da notícia no rodapé */
.noticia-fonte {
    margin-top: 2.5rem;
    padding: 0;
    font-size: 0.9rem;
    color: #6c757d;
}

.noticia-fonte strong {
    color: #495057;
    font-weight: 600;
    margin-right: 0.5rem;
}

.noticia-fonte a {
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.noticia-fonte a:hover {
    text-decoration: none;
}

@media (max-width: 768px) {
    .noticia-fonte {
        font-size: 0.85rem;
    }
}


/* ============================================
   PÁGINA RADIO - ESTILIZAÇÃO MELHORADA
   ============================================ */

.radio-hero {
    background: linear-gradient(135deg, #ff6600 0%, #ff8833 50%, #ffaa00 100%);
    color: white;
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.radio-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.radio-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.radio-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.radio-icon svg {
    width: 45px;
    height: 45px;
    color: white;
}

.radio-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.radio-about {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #f7fafc 0%, white 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff6600, #ffaa00);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255,102,0,0.15);
}

.about-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6600, #ffaa00);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255,102,0,0.3);
}

.card-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.about-card h3 {
    color: #001f3f;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-card p {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1rem;
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 3rem;
    background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,31,63,0.3);
}

.stat-item {
    text-align: center;
    color: white;
    padding: 1rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6600, #ffaa00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.9;
    font-weight: 600;
}

@media (max-width: 768px) {
    .radio-hero {
        padding: 3rem 0 2rem;
    }
    
    .radio-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .radio-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .radio-hero h1 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .radio-about {
        padding: 2.5rem 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .about-card {
        padding: 2rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .card-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .about-card h3 {
        font-size: 1.3rem;
    }
    
    .about-card p {
        font-size: 0.95rem;
    }
    
    .stats-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .radio-hero h1 {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .about-card {
        padding: 1.5rem;
    }
    
    .stats-section {
        padding: 1.5rem 1rem;
    }
}

/* Títulos das seções - Responsivo */
@media (max-width: 768px) {
    .noticias-section h2,
    .top-musicas-section h2,
    .parceiros-title {
        font-size: 1.5rem;
    }
    
    .noticias-section h2::after,
    .top-musicas-section h2::after,
    .parceiros-title::after {
        width: 60px;
        height: 3px;
    }
}

@media (max-width: 480px) {
    .noticias-section h2,
    .top-musicas-section h2,
    .parceiros-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        display: block !important;
        min-height: auto !important;
        height: auto !important;
        justify-content: flex-start !important;
    }
    
    .header-right {
        width: 100% !important;
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .header-info {
        min-height: auto !important;
        height: auto !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        flex-wrap: nowrap !important;
        overflow: visible !important;
        gap: 0.75rem !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin: 0 !important;
        padding: 0 !important;
        text-align: center !important;
    }
    
    .header-info::-webkit-scrollbar {
        display: none;
    }

    .header-info .info-item {
        justify-content: center !important;
        width: auto !important;
        text-align: center !important;
    }
    
    .header-info .info-item .info-text {
        flex: 0 0 auto !important;
        min-width: 0 !important;
    }

    .header-info .info-item .whatsapp-info-link {
        justify-content: center !important;
        width: auto !important;
    }

    .header-info .info-item:not(.info-item-social) .info-text {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .header-info .info-item:not(.info-item-social) .info-text strong {
        display: block !important;
        margin-bottom: 0.2rem !important;
    }

    .info-item-social .info-text {
        align-items: center !important;
        text-align: center !important;
    }

    .info-item-social .social-icons {
        justify-content: center !important;
    }
    
    .info-item.on-air-info {
        min-width: 100% !important;
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        order: 0 !important;
        padding: 0.55rem 0.7rem !important;
        margin: 0 auto !important;
        margin-bottom: 0.5rem !important;
        min-height: auto !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 12px !important;
        background: rgba(255, 255, 255, 0.08) !important;
        border: 1px solid rgba(255, 255, 255, 0.22) !important;
    }
    
    .on-air-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        align-items: center !important;
        width: 100% !important;
        min-height: auto !important;
        padding-top: 0 !important;
    }
    
    .on-air-badge {
        margin-bottom: 0 !important;
        justify-content: center !important;
        width: auto !important;
        align-self: center !important;
    }
    
    .on-air-badge strong {
        color: #001f3f !important;
        font-size: 0.65rem !important;
    }
    
    .on-air-details {
        display: flex !important;
        align-items: center !important;
        gap: 0.35rem !important;
        flex-direction: column !important;
        justify-content: center !important;
        width: 100% !important;
        height: auto !important;
        padding: 0 !important;
        margin-top: 2px !important;
    }
    
    .on-air-photo {
        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important;
        margin-right: 0 !important;
        margin-bottom: 0.1rem !important;
        align-self: center !important;
    }
    
    .on-air-photo img#onAirPhoto2,
    .on-air-photo img:nth-child(2) {
        width: 24px !important;
        height: 24px !important;
        right: -10px !important;
        bottom: -4px !important;
    }
    
    .on-air-text {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 1px !important;
        height: auto !important;
        padding-top: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .on-air-program,
    #onAirShow {
        font-size: 0.88rem !important;
        line-height: 1.3 !important;
        white-space: normal !important;
        overflow: visible !important;
        text-overflow: clip !important;
        text-align: center !important;
    }
    
    .on-air-locutor,
    #onAirLocutor {
        font-size: 0.75rem !important;
        line-height: 1.3 !important;
        white-space: normal !important;
        overflow: visible !important;
        text-overflow: clip !important;
        text-align: center !important;
    }
    
    .top-musica-item {
        padding: 0.85rem !important;
        flex-wrap: wrap !important;
    }
    
    .top-musica-posicao {
        font-size: 1.1rem !important;
        min-width: 35px !important;
        order: 1 !important;
    }
    
    .top-musica-capa {
        width: 55px !important;
        height: 55px !important;
        order: 2 !important;
    }
    
    .top-musica-info {
        margin-left: 1rem !important;
        flex: 1 !important;
        min-width: 0 !important;
        order: 3 !important;
    }
    
    .top-musica-nome {
        font-size: 0.9rem !important;
    }
    
    .top-musica-artista {
        font-size: 0.8rem !important;
        margin-bottom: 0 !important;
    }
    
    .preview-message {
        position: static !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
        margin: 0.5rem 0 0 0 !important;
        width: 100% !important;
        flex-basis: 100% !important;
        order: 5 !important;
        justify-content: center !important;
        align-self: auto !important;
    }
    
    .preview-info {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.5rem !important;
    }
    
    .audio-player-bar {
        position: relative !important;
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
        border-radius: 0 !important;
        padding: 1rem 1.5rem !important;
        background: linear-gradient(135deg, #001f3f 0%, #003366 100%) !important;
    }
    
    .audio-player-content {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 1rem !important;
    }
    
    .audio-player-info {
        flex-direction: row !important;
        gap: 1rem !important;
    }
    
    .audio-player-capa {
        display: block !important;
        width: 50px !important;
        height: 50px !important;
    }
    
    .audio-player-musica {
        font-size: 1rem !important;
    }
    
    .audio-player-artista {
        font-size: 0.9rem !important;
    }
    
    .audio-player-controls {
        order: initial !important;
    }
    
    .audio-control-btn:first-child {
        width: 44px !important;
        height: 44px !important;
        box-shadow: none !important;
    }
    
    .audio-control-btn:last-child {
        display: flex !important;
    }
    
    .volume-control-mobile {
        display: none !important;
    }
}

/* ===== TOP MÚSICAS — LAYOUT MOBILE DEFINITIVO ===== */
@media (max-width: 768px) {
    .top-musica-item {
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        padding: 0.85rem !important;
        overflow: visible !important;
    }

    .top-musica-posicao {
        order: 1 !important;
        font-size: 1.1rem !important;
        min-width: 35px !important;
        flex-shrink: 0 !important;
    }

    .top-musica-capa {
        order: 2 !important;
        width: 55px !important;
        height: 55px !important;
        flex-shrink: 0 !important;
        margin-left: 0.15rem !important;
    }

    .top-musica-info {
        order: 3 !important;
        flex: 1 1 0 !important;
        min-width: 0 !important;
        overflow: hidden !important;
        margin-left: 0.75rem !important;
    }

    .top-musica-nome {
        font-size: 0.9rem !important;
        line-height: 1.3 !important;
        word-break: break-word !important;
        white-space: normal !important;
        overflow: visible !important;
        display: block !important;
        max-height: none !important;
    }

    .top-musica-artista {
        font-size: 0.8rem !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
        margin-bottom: 0 !important;
    }

    .top-musica-play {
        order: 4 !important;
        flex-shrink: 0 !important;
        align-self: center !important;
        margin-left: 0.75rem !important;
        width: 46px !important;
        height: 46px !important;
        min-width: 46px !important;
        min-height: 46px !important;
        max-width: 46px !important;
        max-height: 46px !important;
    }

    .preview-message {
        order: 5 !important;
        position: static !important;
        transform: none !important;
        width: 100% !important;
        flex-basis: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0.6rem 0 0.2rem 0 !important;
        right: auto !important;
        top: auto !important;
    }
}

@media (max-width: 480px) {
    .top-musica-item {
        padding: 0.75rem !important;
    }

    .top-musica-capa {
        width: 48px !important;
        height: 48px !important;
    }

    .top-musica-nome {
        font-size: 0.85rem !important;
    }

    .top-musica-artista {
        font-size: 0.75rem !important;
    }

    .top-musica-play {
        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important;
        min-height: 42px !important;
        max-width: 42px !important;
        max-height: 42px !important;
    }
}

/* ===== TOP MÚSICAS — BOTÃO PLAY IGUAL AO DESKTOP EM MOBILE ===== */
@media (max-width: 768px) {
    .top-musica-play {
        width: 55px !important;
        height: 55px !important;
        min-width: 55px !important;
        min-height: 55px !important;
        max-width: 55px !important;
        max-height: 55px !important;
    }
    .top-musica-play svg {
        width: 24px !important;
        height: 24px !important;
    }
}
@media (max-width: 480px) {
    .top-musica-play {
        width: 55px !important;
        height: 55px !important;
        min-width: 55px !important;
        min-height: 55px !important;
        max-width: 55px !important;
        max-height: 55px !important;
    }
    .top-musica-play svg {
        width: 24px !important;
        height: 24px !important;
    }
}

/* ===== TOP MÚSICAS — PROTEGER COR DO BOTÃO PLAY ===== */
.top-musica-play,
.top-musica-play:hover,
.top-musica-play.playing,
.top-musica-play:focus,
.top-musica-play:active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    outline: none !important;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3) !important;
}

/* ===== CORRIGIR OVERFLOW LATERAL E TÍTULO DOS CARDS ===== */
@media (max-width: 768px) {
    .main-content,
    .content-with-sidebar,
    .noticias-section .container {
        overflow: hidden !important;
        max-width: 100% !important;
    }

    /* Título sobreposto na imagem — limitar linhas */
    .noticia-card-overlay-title,
    .noticia-titulo-overlay,
    .noticia-card-image .noticia-card-title {
        -webkit-line-clamp: 2 !important;
        display: -webkit-box !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }
}


/* ========================================
   PLAYER FIXO NO RODAPÉ MOBILE
   ======================================== */

@media (max-width: 1024px) {
    .fixed-player {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 9999 !important;
        margin: 0 !important;
    }
}

@media (max-width: 768px) {
    .fixed-player {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 9999 !important;
        margin: 0 !important;
    }
}

@media (max-width: 480px) {
    .fixed-player {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 9999 !important;
        margin: 0 !important;
    }
}
