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

:root {
    --dark: #1a1a1a;
    --darker: #111111;
    --darkest: #0a0a0a;
    --red: #c41e3a;
    --red-dark: #8b0000;
    --red-light: #ff2d55;
    --beige: #f5ead7;
    --white: #ffffff;
    --gray: #888888;
    --gray-light: #cccccc;
    --gray-dark: #333333;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--darkest);
    color: var(--white);
    overflow-x: hidden;
}

/* Top Info Bar */
.top-bar {
    width: 100%;
    background: var(--darkest);
    border-bottom: 1px solid rgba(196, 30, 58, 0.4);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1100;
}

.top-bar-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 40px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-right {
    display: flex;
    align-items: center;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--gray-light);
}

.top-bar-item i {
    color: var(--red);
    font-size: 13px;
}

.top-bar-divider {
    width: 1px;
    height: 14px;
    background: var(--gray-dark);
}

.whatsapp-info {
    color: #25D366;
}

.whatsapp-info i {
    color: #25D366;
}

/* Header */
.header {
    position: fixed;
    top: 34px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--red);
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 40px;
}

.logo {
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(196, 30, 58, 0.3));
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-radio {
    font-family: var(--font-primary);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 6px;
    color: var(--white);
}

.logo-jovem {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 900;
    color: var(--red);
    letter-spacing: 2px;
}

.logo-rio {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 900;
    color: var(--beige);
    letter-spacing: 2px;
}

/* Header Player */
.header-player {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    max-width: 600px;
    margin: 0 30px;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(196, 30, 58, 0.3);
    border-radius: 50px;
    padding: 6px 18px 6px 6px;
}

.play-btn-header {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: var(--red);
    border: none;
    color: var(--white);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(196, 30, 58, 0.5);
}

.play-btn-header:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.7);
}

.play-btn-header.playing {
    background: var(--white);
    color: var(--red);
}

/* Visualizer Header */
.player-visualizer-header {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 28px;
}

.bar-h {
    width: 3px;
    height: 6px;
    background: var(--red);
    border-radius: 2px;
    transition: height 0.1s ease;
}

.player-visualizer-header.playing .bar-h {
    animation: visualize-h 0.4s ease-in-out infinite alternate;
}

.bar-h:nth-child(1) { animation-delay: 0.0s; }
.bar-h:nth-child(2) { animation-delay: 0.05s; }
.bar-h:nth-child(3) { animation-delay: 0.1s; }
.bar-h:nth-child(4) { animation-delay: 0.15s; }
.bar-h:nth-child(5) { animation-delay: 0.2s; }
.bar-h:nth-child(6) { animation-delay: 0.25s; }
.bar-h:nth-child(7) { animation-delay: 0.3s; }
.bar-h:nth-child(8) { animation-delay: 0.35s; }
.bar-h:nth-child(9) { animation-delay: 0.4s; }
.bar-h:nth-child(10) { animation-delay: 0.45s; }

@keyframes visualize-h {
    0% { height: 4px; }
    50% { height: 22px; }
    100% { height: 8px; }
}

.player-track-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.track-label {
    font-family: var(--font-primary);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--red);
    line-height: 1;
}

.track-title {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.track-artist {
    font-size: 11px;
    color: var(--gray);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.header-volume {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray);
    flex-shrink: 0;
}

.header-volume i {
    font-size: 13px;
}

.volume-slider {
    -webkit-appearance: none;
    width: 70px;
    height: 3px;
    background: var(--gray-dark);
    border-radius: 2px;
    outline: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--red);
    cursor: pointer;
}

/* Navigation */
.nav-menu {
    width: 100%;
    background: rgba(26, 26, 26, 0.5);
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 4px;
    padding: 6px 40px;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-light);
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(196, 30, 58, 0.3);
    color: var(--red-light);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.social-icons-header {
    display: flex;
    gap: 12px;
}

.social-icons-header a {
    color: var(--gray);
    font-size: 16px;
    transition: color 0.3s;
}

.social-icons-header a:hover {
    color: var(--red);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
}

/* Hero / Player Section */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 140px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--darkest) 0%, var(--dark) 30%, var(--red-dark) 70%, var(--darkest) 100%);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(196,30,58,0.1)" stroke-width="0.5"/></svg>') repeat;
    background-size: 200px;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
}

.hero-text {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 70px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-title span {
    color: var(--red);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray-light);
    margin-bottom: 30px;
}

.hero-btn {
    display: inline-block;
    padding: 14px 40px;
    background: var(--red);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.4);
}

/* ==========================================
   Flash Background Canvas
   ========================================== */
.flash-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ==========================================
   Tocando Agora Section
   ========================================== */
.tocando-agora {
    position: relative;
    z-index: 1;
    padding: 0 40px 40px;
    max-width: 1440px;
    margin: 0 auto;
}

.tocando-container {
    display: flex;
    gap: 24px;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.12) 0%, rgba(10, 10, 10, 0.95) 50%, rgba(196, 30, 58, 0.08) 100%);
    border: 1px solid rgba(196, 30, 58, 0.3);
    border-radius: 16px;
    padding: 28px 32px;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(196, 30, 58, 0.15), inset 0 1px 0 rgba(255,255,255,0.05);
    overflow: hidden;
    position: relative;
}

.tocando-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red), var(--red-light), var(--red), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; transform: scaleX(0.8); }
    50% { opacity: 1; transform: scaleX(1); }
}

.tocando-main {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
    min-width: 0;
}

.tocando-cover {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--red-dark), var(--red));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(196, 30, 58, 0.4);
    animation: pulse-cover 2s ease-in-out infinite;
}

@keyframes pulse-cover {
    0%, 100% { box-shadow: 0 4px 20px rgba(196, 30, 58, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(196, 30, 58, 0.7); }
}

.tocando-cover i {
    font-size: 32px;
    color: var(--white);
}

.tocando-info {
    min-width: 0;
}

.tocando-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--red-light);
    margin-bottom: 6px;
    text-transform: uppercase;
}

.tocando-live-dot {
    width: 8px;
    height: 8px;
    background: var(--red-light);
    border-radius: 50%;
    animation: live-pulse 1.5s ease-in-out infinite;
}

@keyframes live-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.tocando-song {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}

.tocando-artist {
    font-size: 14px;
    color: var(--gray-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tocando-history {
    width: 320px;
    flex-shrink: 0;
    border-left: 1px solid rgba(196, 30, 58, 0.2);
    padding-left: 24px;
}

.tocando-history-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--gray);
    margin-bottom: 14px;
    text-transform: uppercase;
}

.tocando-history-header i {
    color: var(--red);
}

.history-count {
    background: var(--red);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    padding: 1px 7px;
    border-radius: 10px;
    margin-left: auto;
}

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

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

.history-item:hover {
    background: rgba(196, 30, 58, 0.1);
    border-color: rgba(196, 30, 58, 0.2);
}

.history-num {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 800;
    color: var(--red);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.history-details {
    min-width: 0;
    flex: 1;
}

.history-song {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.history-artist {
    font-size: 11px;
    color: var(--gray);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Ads Container */
.ads-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 0;
    background: var(--darkest);
}

.ad-placeholder {
    width: 728px;
    height: 90px;
    background: var(--gray-dark);
    border: 2px dashed var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 14px;
    border-radius: 8px;
}

/* Sections Common */
.section {
    padding: 80px 40px;
    max-width: 1440px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.section-header.light .section-title {
    color: var(--white);
}

.section-number {
    font-family: var(--font-primary);
    font-size: 60px;
    font-weight: 900;
    color: var(--red);
    opacity: 0.4;
    line-height: 1;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 50px;
    font-weight: 900;
    color: var(--white);
}

.section-line {
    flex: 1;
    height: 4px;
    background: linear-gradient(90deg, var(--red), transparent);
    border-radius: 2px;
}

.section-line.red {
    background: linear-gradient(90deg, var(--red), transparent);
}

/* Programming Section */
.programming-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.schedule-card {
    background: var(--dark);
    border: 1px solid var(--gray-dark);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.schedule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gray-dark);
    transition: background 0.3s;
}

.schedule-card.active::before,
.schedule-card:hover::before {
    background: var(--red);
}

.schedule-card.active,
.schedule-card:hover {
    border-color: var(--red);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.2);
}

.schedule-time {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.schedule-show h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 5px;
}

.schedule-show p {
    color: var(--gray);
    font-size: 14px;
}

.schedule-badge {
    display: inline-block;
    margin-top: 10px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.schedule-badge.ao-vivo {
    background: var(--red);
    color: var(--white);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Pedido de Música Section */
.pedido-musica {
    background: linear-gradient(135deg, var(--red-dark) 0%, var(--darkest) 100%);
    max-width: 100%;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.pedido-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="3" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    background-size: 50px;
}

.section-header.light {
    position: relative;
    z-index: 1;
}

.pedido-container {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pedido-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.pedido-text {
    flex: 1;
    min-width: 300px;
}

.pedido-text h3 {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.pedido-text p {
    font-size: 18px;
    color: var(--gray-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: #25D366;
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #20b858;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
    font-size: 22px;
}

.pedido-phone {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: var(--gray-light);
}

.pedido-phone i {
    color: #25D366;
    font-size: 20px;
}

.pedido-visual {
    flex: 0 0 auto;
}

.whatsapp-icon-large {
    width: 200px;
    height: 200px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(37, 211, 102, 0.3);
}

.whatsapp-icon-large i {
    font-size: 80px;
    color: #25D366;
}

/* Equipe Section */
.equipe-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.equipe-card {
    background: var(--dark);
    border: 1px solid var(--gray-dark);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.equipe-card:hover {
    border-color: var(--red);
    transform: translateY(-5px);
}

.equipe-avatar {
    font-size: 60px;
    color: var(--red);
    margin-bottom: 15px;
}

.equipe-card h3 {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.equipe-card p {
    color: var(--gray);
    font-size: 13px;
    margin-bottom: 15px;
}

.equipe-social a {
    color: var(--gray);
    font-size: 20px;
    transition: color 0.3s;
}

.equipe-social a:hover {
    color: var(--red);
}

/* Podcast Section */
.podcast {
    background: linear-gradient(180deg, var(--darkest) 0%, var(--dark) 100%);
    max-width: 100%;
    padding: 80px 40px;
}

.podcast-container {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.podcast-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid var(--gray-dark);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}

.podcast-card:hover {
    border-color: var(--red);
    transform: translateY(-3px);
}

.podcast-thumb {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: var(--red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.podcast-info h3 {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.podcast-info p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 12px;
    line-height: 1.5;
}

.podcast-link {
    color: var(--red);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.podcast-link:hover {
    color: var(--red-light);
}

/* Contato Section */
.contato-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.contato-card {
    background: var(--dark);
    border: 1px solid var(--gray-dark);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.contato-card:hover {
    border-color: var(--red);
    transform: translateY(-5px);
}

.contato-icon {
    font-size: 40px;
    color: var(--red);
    margin-bottom: 20px;
}

.contato-card h3 {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contato-card p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 15px;
}

.contato-card a {
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 18px;
    transition: color 0.3s;
}

.contato-card a:hover {
    color: var(--red);
}

/* Footer */
.footer {
    background: var(--darkest);
    border-top: 2px solid var(--red);
    padding: 60px 40px 20px;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(196, 30, 58, 0.3));
}

.footer-brand p {
    color: var(--gray);
    margin: 15px 0;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid var(--gray-dark);
}

.footer-social a:hover {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links a {
    display: block;
    color: var(--gray);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--red);
}

.footer-contact p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact i {
    color: var(--red);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.footer-bottom hr {
    border: none;
    height: 1px;
    background: var(--gray-dark);
    margin-bottom: 20px;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 13px;
    letter-spacing: 1px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--red);
    z-index: 9999;
    padding: 20px 40px;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    color: var(--gray-light);
    font-size: 14px;
}

.cookie-content a {
    color: var(--red);
    text-decoration: underline;
}

.cookie-btn {
    padding: 10px 30px;
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
}

.cookie-btn:hover {
    background: var(--red-dark);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 30px;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8); }
}

/* Privacy Policy Page */
.privacy-page {
    padding-top: 100px;
    min-height: 100vh;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
}

.privacy-content h1 {
    font-family: var(--font-primary);
    font-size: 40px;
    font-weight: 900;
    color: var(--red);
    margin-bottom: 30px;
}

.privacy-content h2 {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin: 30px 0 15px;
}

.privacy-content p {
    color: var(--gray-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.privacy-content ul {
    color: var(--gray-light);
    margin-left: 20px;
    margin-bottom: 15px;
}

.privacy-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .section-title {
        font-size: 36px;
    }
    
    .section-number {
        font-size: 45px;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    
    .header-player {
        max-width: 400px;
    }
    
    .header-volume {
        display: none;
    }
}

@media (max-width: 768px) {
    /* Top Bar Mobile */
    .top-bar-container {
        padding: 6px 15px;
    }
    
    .top-bar-left {
        gap: 10px;
    }
    
    .top-bar-item {
        font-size: 10px;
    }
    
    .top-bar-divider {
        display: none;
    }
    
    .top-bar-right {
        display: none;
    }
    
    /* Header Mobile */
    .header {
        top: 28px;
    }
    
    .header-container {
        padding: 10px 15px;
    }
    
    .header-player {
        max-width: 200px;
        margin: 0 10px;
        padding: 4px 10px 4px 4px;
        gap: 8px;
    }
    
    .play-btn-header {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 14px;
    }
    
    .player-visualizer-header {
        display: none;
    }
    
    .track-label {
        font-size: 7px;
    }
    
    .track-title {
        font-size: 11px;
    }
    
    .track-artist {
        font-size: 9px;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 100px;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        z-index: 999;
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-container {
        flex-direction: column;
        align-items: center;
        padding: 15px;
        gap: 5px;
    }
    
    .nav-link {
        padding: 12px 20px;
        text-align: center;
        width: 100%;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .social-icons-header {
        display: none;
    }
    
    .hero {
        padding-top: 120px;
        min-height: 50vh;
    }
    
    .hero-title {
        font-size: 45px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .tocando-agora {
        padding: 0 15px 30px;
    }
    
    .tocando-container {
        flex-direction: column;
        padding: 20px;
    }
    
    .tocando-cover {
        width: 60px;
        height: 60px;
    }
    
    .tocando-cover i {
        font-size: 24px;
    }
    
    .tocando-song {
        font-size: 16px;
    }
    
    .tocando-history {
        width: 100%;
        border-left: none;
        border-top: 1px solid rgba(196, 30, 58, 0.2);
        padding-left: 0;
        padding-top: 16px;
    }
    
    .section {
        padding: 50px 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-number {
        font-size: 35px;
    }
    
    .pedido-musica,
    .podcast {
        padding: 50px 20px;
    }
    
    .pedido-content {
        flex-direction: column;
        text-align: center;
    }
    
    .pedido-phone {
        justify-content: center;
    }
    
    .whatsapp-icon-large {
        width: 120px;
        height: 120px;
    }
    
    .whatsapp-icon-large i {
        font-size: 50px;
    }
    
    .pedido-text h3 {
        font-size: 26px;
    }
    
    .podcast-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .footer {
        padding: 40px 20px 20px;
    }
    
    .ad-placeholder {
        width: 320px;
        height: 100px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .section-number {
        font-size: 28px;
    }
    
    .schedule-card {
        padding: 20px 15px;
    }
    
    .equipe-container {
        grid-template-columns: 1fr;
    }
    
    .contato-container {
        grid-template-columns: 1fr;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--darkest);
}

::-webkit-scrollbar-thumb {
    background: var(--red-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--red);
}

/* Netlify Badge - Hidden */
div[data-netlify-badge] {
    display: none !important;
}
.netlify-badge,
a[href*="netlify.com"] {
    display: none !important;
}
