/* Variáveis CSS */
:root {
  --verde-principal: #4CAF50;
  --verde-escuro: #2E7D32;
  --verde-claro: #81C784;
  --verde-muito-claro: #C8E6C9;
  --amarelo-destaque: #66BB6A; /* Mudado para verde mais claro */
  --branco: #FFFFFF;
  --cinza-escuro: #333333;
  --azul-accent: #2196F3;
  --cinza-claro: #f5f5f5;
  --sombra: rgba(0, 0, 0, 0.1);
}

/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: var(--cinza-escuro);
  background-color: var(--branco);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: linear-gradient(135deg, var(--branco), var(--verde-muito-claro));
  color: var(--cinza-escuro);
  padding: 1.5rem 0;
  box-shadow: 0 2px 15px rgba(76, 175, 80, 0.1);
  position: relative;
  border-bottom: 1px solid rgba(76, 175, 80, 0.1);
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%234CAF50" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="%234CAF50" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.logo-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-image {
  height: 120px;
  width: auto;
  max-width: 400px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(76, 175, 80, 0.15));
  transition: transform 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.02);
}

.radio-info {
  display: flex;
  align-items: center;
}

.radio-info .frequency {
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--verde-principal), var(--verde-claro));
  color: var(--branco);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.2);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.radio-info .frequency:hover {
  background: linear-gradient(135deg, var(--verde-claro), var(--verde-principal));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--verde-claro), var(--verde-principal));
  padding: 5rem 0;
  text-align: center;
  color: var(--branco);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h2 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  letter-spacing: 2px;
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 3.5rem;
  opacity: 0.95;
  font-weight: 400;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.2s both;
}

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

/* Player Principal */
.radio-player {
  background: var(--branco);
  border-radius: 25px;
  padding: 2.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(0, 0, 0, 0.1);
  max-width: 650px;
  margin: 0 auto;
  color: var(--cinza-escuro);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  animation: fadeInUp 1s ease-out 0.4s both;
  position: relative;
}

.radio-player::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border-radius: 25px;
  pointer-events: none;
}

.player-info {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.player-info h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--verde-escuro);
  margin-bottom: 0.8rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.player-info .frequency {
  color: var(--verde-principal);
  font-weight: 600;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.now-playing {
  font-style: italic;
  color: var(--cinza-escuro);
  opacity: 0.8;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 15px;
  display: inline-block;
}

.player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.play-pause-btn {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--verde-principal), var(--verde-escuro));
  color: var(--branco);
  font-size: 2.2rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4), 0 3px 10px rgba(76, 175, 80, 0.2);
  position: relative;
  overflow: hidden;
}

.play-pause-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.play-pause-btn:hover::before {
  opacity: 1;
}

.play-pause-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 35px rgba(76, 175, 80, 0.5), 0 5px 15px rgba(76, 175, 80, 0.3);
}

.play-pause-btn:active {
  transform: scale(0.98);
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(76, 175, 80, 0.1);
  padding: 1rem 1.5rem;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.volume-control:hover {
  background: rgba(76, 175, 80, 0.15);
}

.volume-control i {
  color: var(--verde-principal);
  font-size: 1.3rem;
}

.volume-slider {
  width: 120px;
  height: 6px;
  border-radius: 6px;
  background: linear-gradient(to right, var(--verde-principal) 0%, var(--verde-principal) 70%, var(--cinza-claro) 70%, var(--cinza-claro) 100%);
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.volume-slider:hover {
  height: 8px;
}

.volume-slider::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--verde-principal), var(--verde-escuro));
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.4);
  transition: all 0.3s ease;
}

.volume-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.6);
}

.volume-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--verde-principal), var(--verde-escuro));
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.4);
}

.player-status {
  text-align: center;
  position: relative;
  z-index: 1;
}

.status-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: rgba(76, 175, 80, 0.1);
  padding: 1rem 2rem;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cinza-escuro);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.status-dot.live {
  background: #ff4444;
  animation: pulse 2s infinite;
  box-shadow: 0 0 15px rgba(255, 68, 68, 0.6);
}

@keyframes pulse {
  0% { 
    opacity: 1; 
    transform: scale(1);
  }
  50% { 
    opacity: 0.7; 
    transform: scale(1.1);
  }
  100% { 
    opacity: 1; 
    transform: scale(1);
  }
}

.status-text {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Seção Sobre */
.sobre {
  padding: 4rem 0;
  background: var(--cinza-claro);
}

.sobre-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.sobre-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--verde-escuro);
  margin-bottom: 1.5rem;
}

.sobre-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.radio-specs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.spec {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--branco);
  border-radius: 10px;
  box-shadow: 0 2px 10px var(--sombra);
}

.spec i {
  font-size: 1.5rem;
  color: var(--verde-principal);
  width: 40px;
  text-align: center;
}

.spec h4 {
  font-weight: 600;
  color: var(--verde-escuro);
  margin-bottom: 0.2rem;
}

.spec p {
  margin: 0;
  font-weight: 500;
}

.sobre-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.radio-illustration {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--verde-principal), var(--verde-escuro));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
}

.radio-illustration i {
  font-size: 4rem;
  color: var(--amarelo-destaque);
}

/* Seção Anuncie Aqui */
.anuncie-aqui {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--verde-muito-claro), var(--branco));
  text-align: center;
  color: var(--cinza-escuro);
  border-top: 3px solid var(--verde-claro);
  border-bottom: 3px solid var(--verde-claro);
}

.anuncie-aqui h2 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--verde-escuro);
  text-shadow: 1px 1px 3px rgba(76, 175, 80, 0.2);
}

.anuncie-aqui .subtitle {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  font-weight: 500;
  color: var(--verde-principal);
}

.beneficios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.beneficio {
  background: var(--branco);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.beneficio:hover {
  transform: translateY(-5px);
}

.beneficio i {
  font-size: 2.5rem;
  color: var(--verde-principal);
  margin-bottom: 1rem;
}

.beneficio h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--verde-escuro);
  margin-bottom: 0.5rem;
}

.beneficio p {
  color: var(--cinza-escuro);
  line-height: 1.6;
}

.cta-section {
  margin-top: 2rem;
}

.btn-anunciar {
  background: linear-gradient(135deg, var(--verde-principal), var(--verde-escuro));
  color: var(--branco);
  border: none;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
  margin-bottom: 1rem;
}

.btn-anunciar:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.6);
  background: linear-gradient(135deg, var(--verde-claro), var(--verde-principal));
}

.btn-anunciar i {
  margin-right: 0.5rem;
}

.contato-comercial,
.email-comercial {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0.5rem 0;
}

.contato-comercial a,
.email-comercial a {
  color: var(--verde-escuro);
  text-decoration: none;
  font-weight: 700;
}

.contato-comercial a:hover,
.email-comercial a:hover {
  text-decoration: underline;
  color: var(--verde-principal);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--verde-escuro), var(--cinza-escuro));
  color: var(--branco);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-logo-image {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-logo span {
  font-size: 1.2rem;
  font-weight: 700;
}

.footer-info p {
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.footer-frequency {
  color: var(--verde-claro);
  font-weight: 500;
}

.footer-contact h4,
.footer-social h4 {
  color: var(--verde-claro);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-contact p {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  line-height: 1.5;
}

.footer-contact i {
  color: var(--verde-claro);
  width: 15px;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--verde-principal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--branco);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--verde-claro);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(129, 199, 132, 0.2);
  padding-top: 1rem;
  text-align: center;
  opacity: 0.8;
}

/* Responsividade */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  
  .logo-section {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .logo {
    justify-content: center;
  }
  
  .logo-image {
    height: 80px;
    max-width: 280px;
  }
  
  .radio-info .frequency {
    font-size: 0.9rem;
    padding: 0.7rem 1.2rem;
  }
  
  .hero {
    padding: 3rem 0;
  }
  
  .hero-content h2 {
    font-size: 2.5rem;
  }
  
  .radio-player {
    padding: 2rem;
    margin: 0 1rem;
  }
  
  .player-controls {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .play-pause-btn {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
  
  .volume-control {
    padding: 0.8rem 1.2rem;
  }
  
  .volume-slider {
    width: 100px;
  }
  
  .sobre-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .sobre-text h2 {
    font-size: 2rem;
  }
  
  .anuncie-aqui h2 {
    font-size: 2.5rem;
  }
  
  .beneficios {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-logo-image {
    height: 50px;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 1rem 0;
  }
  
  .logo-section {
    gap: 1rem;
  }
  
  .logo-image {
    height: 80px;
    max-width: 280px;
  }
  
  .radio-info .frequency {
    font-size: 0.8rem;
    padding: 0.6rem 1rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .hero-content h2 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .radio-player {
    padding: 1.5rem;
    border-radius: 20px;
  }
  
  .play-pause-btn {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
  
  .volume-slider {
    width: 80px;
  }
  
  .sobre,
  .anuncie-aqui {
    padding: 2rem 0;
  }
  
  .anuncie-aqui h2 {
    font-size: 2rem;
  }
  
  .footer-logo-image {
    height: 45px;
  }
}
/* Status Indicator acima do player */
.player-status {
    margin: 15px 0 20px 0;
    text-align: center;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.15);
}

/* Player HTML5 Simples e Limpo */
.html5-player-container {
    margin: 0;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.html5-player {
    width: 100%;
    max-width: 500px;
    height: 60px;
    border-radius: 30px;
    outline: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: #ffffff;
    border: 2px solid rgba(76, 175, 80, 0.2);
}

.html5-player:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(76, 175, 80, 0.4);
}

.html5-player:focus {
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.3);
}

/* Remover customizações problemáticas - deixar controles nativos */
.html5-player::-webkit-media-controls-panel {
    background: transparent;
}

/* Ocultar apenas timeline para streams */
.html5-player::-webkit-media-controls-timeline-container,
.html5-player::-webkit-media-controls-timeline,
.html5-player::-webkit-media-controls-current-time-display,
.html5-player::-webkit-media-controls-time-remaining-display {
    display: none;
}



.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 8px;
    background: #999;
    transition: all 0.3s ease;
}

.status-dot.live {
    background: #ff0000;
    animation: live-pulse 2s infinite;
}

.status-text {
    font-size: 12px;
    font-weight: 500;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Player Info Limpo */
.player-info {
    text-align: center;
    margin-bottom: 20px;
}

.player-info h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--verde-principal);
    margin: 0 0 5px 0;
}

.player-info .frequency {
    font-size: 0.9rem;
    color: var(--verde-escuro);
    font-weight: 400;
    margin: 0 0 10px 0;
    opacity: 0.8;
}

.now-playing {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
    margin: 0;
}

/* Animação simples para "ao vivo" */
@keyframes live-pulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
    }
    50% { 
        opacity: 0.6; 
        transform: scale(1.2);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .html5-player {
        max-width: 100%;
        height: 55px;
    }
    
    .player-info h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .html5-player-container {
        padding: 0 15px;
    }
    
    .html5-player {
        height: 50px;
        border-radius: 25px;
    }
    
    .player-info h3 {
        font-size: 1.2rem;
    }
}
/* Banner de Anúncio */
.banner-anuncio {
    margin: 40px 0;
    display: flex;
    justify-content: center;
}

.banner-placeholder {
    width: 100%;
    max-width: 970px;
    height: 250px;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border: 3px dashed rgba(76, 175, 80, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.banner-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.banner-placeholder:hover {
    border-color: rgba(76, 175, 80, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.banner-content {
    text-align: center;
    color: rgba(76, 175, 80, 0.7);
    z-index: 1;
    position: relative;
}

.banner-content i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.6;
}

.banner-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: var(--verde-principal);
}

.banner-content p {
    font-size: 1rem;
    margin: 0 0 10px 0;
    opacity: 0.8;
}

.banner-size {
    font-size: 0.85rem;
    background: rgba(76, 175, 80, 0.1);
    padding: 5px 12px;
    border-radius: 15px;
    color: var(--verde-escuro);
    font-weight: 500;
}

/* Animação de brilho */
@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Responsividade do Banner */
@media (max-width: 1024px) {
    .banner-placeholder {
        max-width: 728px;
        height: 200px;
    }
    
    .banner-content h3 {
        font-size: 1.3rem;
    }
    
    .banner-content i {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .banner-placeholder {
        max-width: 100%;
        height: 150px;
    }
    
    .banner-content h3 {
        font-size: 1.1rem;
    }
    
    .banner-content i {
        font-size: 2rem;
    }
    
    .banner-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .banner-anuncio {
        margin: 30px 0;
    }
    
    .banner-placeholder {
        height: 120px;
        border-radius: 10px;
    }
    
    .banner-content h3 {
        font-size: 1rem;
    }
    
    .banner-content i {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .banner-content p {
        font-size: 0.8rem;
    }
    
    .banner-size {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
}
/* Player Customizado Elegante */
.custom-player {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 25px;
    padding: 20px 30px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 1px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(76, 175, 80, 0.1);
    max-width: 500px;
    margin: 0 auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.custom-player::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--verde-principal), var(--amarelo-destaque), var(--verde-principal));
    opacity: 0.8;
}

.custom-player:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Botão Play/Pause Elegante */
.play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--amarelo-destaque), #FFD54F);
    border: none;
    color: #333;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 15px rgba(255, 193, 7, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    flex-shrink: 0;
}

.play-btn:hover {
    transform: scale(1.05);
    background: linear-gradient(145deg, #FFD54F, #FFEB3B);
    box-shadow: 
        0 6px 20px rgba(255, 193, 7, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.play-btn:active {
    transform: scale(0.98);
    box-shadow: 
        0 2px 10px rgba(255, 193, 7, 0.3),
        inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.play-btn.playing {
    background: linear-gradient(145deg, #81C784, #A5D6A7);
    animation: pulse-play 2s infinite;
}

@keyframes pulse-play {
    0%, 100% { box-shadow: 0 4px 15px rgba(129, 199, 132, 0.3); }
    50% { box-shadow: 0 6px 25px rgba(129, 199, 132, 0.5); }
}

/* Informações da Música */
.player-info-display {
    flex: 1;
    min-width: 0;
}

.track-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.track-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--verde-principal);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.track-artist {
    font-size: 13px;
    color: #666;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Controle de Volume Elegante */
.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.volume-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(76, 175, 80, 0.1);
    border: none;
    color: var(--verde-principal);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.volume-btn:hover {
    background: rgba(76, 175, 80, 0.2);
    transform: scale(1.1);
}

.volume-slider-container {
    width: 80px;
    height: 40px;
    display: flex;
    align-items: center;
}

.volume-slider {
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: rgba(76, 175, 80, 0.2);
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--verde-principal), var(--verde-escuro));
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(76, 175, 80, 0.3);
    transition: all 0.2s ease;
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 3px 10px rgba(76, 175, 80, 0.4);
}

.volume-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--verde-principal), var(--verde-escuro));
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(76, 175, 80, 0.3);
}

/* Estados do Player */
.custom-player.loading .play-btn {
    background: linear-gradient(145deg, #FFC107, #FFD54F);
    animation: loading-spin 1s linear infinite;
}

@keyframes loading-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.custom-player.error .play-btn {
    background: linear-gradient(145deg, #FFAB91, #FFCC80);
    animation: error-shake 0.5s ease-in-out;
}

@keyframes error-shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    75% { transform: translateX(2px); }
}

/* Responsividade do Player Customizado */
@media (max-width: 768px) {
    .custom-player {
        padding: 15px 20px;
        max-width: 100%;
    }
    
    .player-controls {
        gap: 15px;
    }
    
    .play-btn {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .track-title {
        font-size: 14px;
    }
    
    .track-artist {
        font-size: 12px;
    }
    
    .volume-slider-container {
        width: 60px;
    }
}

@media (max-width: 480px) {
    .custom-player {
        padding: 12px 15px;
    }
    
    .player-controls {
        gap: 12px;
    }
    
    .play-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .volume-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .volume-slider-container {
        width: 50px;
    }
}
