/* radio.css — Estilos exclusivos da página de rádio */
/* Extraído de radio.php — carregado só em páginas /radio-* */

/* ═══ Bloco 1 ═══ */
.radio-banner {
    position: relative;
    width: 100%;
    min-height: 300px;
    background-image: url('img/fundo-violao.jpg'); /* COLOQUE SUA IMAGEM AQUI */
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'sans-serif', Arial;
    margin: 20px 0;
}

/* Camada escura para dar contraste ao texto */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    max-width: 800px;
}

.banner-badge {
    background: #d4a373;
    color: #000;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.banner-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.banner-content h2 span {
    color: #d4a373; /* Cor destaque */
}

.banner-content p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 25px;
}

.banner-link {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s, background 0.3s;
}

.banner-link:hover {
    background: #d4a373;
    transform: scale(1.05);
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 768px) {
    .radio-banner {
        min-height: 400px;
    }
    .banner-content h2 {
        font-size: 1.6rem;
    }
    .banner-content p {
        font-size: 0.9rem;
    }
}

/* Container do Banner */
.mcf-radio-banner {
    position: relative;
    width: 100%;
    min-height: 350px;
    background: #000 url('mychordflow.jpg') no-repeat center center;
    background-size: cover;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.mcf-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, .8), rgb(0 0 0 / 0%));
    z-index: 1;
}
.mcf-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 30px;
    color: #ffffff !important;
}

.mcf-banner-content h2 {
    font-family: 'Arial Black', sans-serif;
    font-size: 2rem;
    margin: 15px 0;
    color: #fff !important;
    line-height: 1.1;
}

.mcf-banner-content h2 span {
    color: #d4a373 !important; /* Cor Dourada MCF */
}

/* BOTÃO FORÇADO */
.mcf-btn-forced {
    display: inline-block !important;
    background-color: #d4a373 !important; /* Cor de fundo forçada */
    color: #000000 !important; /* Texto preto para contraste */
    padding: 15px 35px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    font-weight: 900 !important;
    font-size: 1rem !important;
    text-transform: uppercase !important;
    margin-top: 20px !important;
    transition: all 0.3s ease !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(212, 163, 115, 0.4) !important;
}

.mcf-btn-forced:hover {
    background-color: #fff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(212, 163, 115, 0.6) !important;
}

/* Badge (Etiqueta Pequena) */
.mcf-badge {
    background: rgba(255,255,255,0.1);
    border: 1px solid #d4a373;
    color: #d4a373;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    display: inline-block;
}

/* Mobile */
@media (max-width: 600px) {
    .mcf-banner-content h2 { font-size: 1.4rem; }
    .mcf-btn-forced { width: 90%; padding: 12px; }
}

/* ═══ Bloco 2 ═══ */
.app-promo-item {
    position: relative;
    z-index: 1;
}
@media (max-width: 768px) {
    .app-promo-item {
        margin: 10px 0;
        padding: 15px;
    }
}

.app-promo-item {
    flex: 1;
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, .05);
    border-radius: 15px;
    transition: transform .3s ease, box-shadow .3s ease;
    margin: 0 10px;
}

.promo-icon {
    font-size: 2.5rem;
    color: #a855f7;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}
@media (max-width: 768px) {
    .promo-text {
        font-size: 1rem;
    }
}
.promo-text {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
    padding: 0 10px;
}
.promo-text {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .2);
}

.promo-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .3s ease;
    text-decoration: none;
}
@media (max-width: 768px) {
    .promo-button {
        width: 100%;
        padding: 10px 20px;
    }
}


@media (max-width: 768px) {
    .app-promo-item {
        margin: 10px 0;
        padding: 15px;
        margin-top: 69px !important;
    }



img.play-badge {
    border-radius: 8px !important;
    filter: brightness(1) contrast(1) !important;
    width: 194px !important;
}



}

/* ═══ Bloco 3 ═══ */
.share-hero {
      position: relative;
      width: 100%;
      max-width: 800px;
      padding: 60px 40px;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(47, 21, 156, 0.4);
    }

    .fractal-canvas {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }

    .content-wrapper {
      position: relative;
      z-index: 2;
      text-align: center;
    }

    h2 {
      font-size: 3.5em;
      font-weight: 900;
      color: #fff;
      margin-bottom: 15px;
      text-shadow: 0 0 30px rgba(200, 0, 235, 0.8),
                   0 0 60px rgba(200, 0, 235, 0.5);
      letter-spacing: 4px;
      animation: glow 2s ease-in-out infinite alternate;
    }

    @keyframes glow {
      from {
        text-shadow: 0 0 20px rgba(200, 0, 235, 0.6),
                     0 0 40px rgba(200, 0, 235, 0.4);
      }
      to {
        text-shadow: 0 0 40px rgba(200, 0, 235, 1),
                     0 0 80px rgba(200, 0, 235, 0.6);
      }
    }

    p {
      font-size: 1.3em;
      color: #e0e0e0;
      margin-bottom: 35px;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    }

    .share-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .share-btn {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 32px;
      text-decoration: none;
      color: #fff;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border: 2px solid rgba(255, 255, 255, 0.2);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .share-btn::before {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .share-btn:hover::before {
      opacity: 1;
    }

    .share-btn:hover {
      transform: translateY(-10px) scale(1.1);
      box-shadow: 0 15px 40px rgba(200, 0, 235, 0.6);
      border-color: rgba(255, 255, 255, 0.5);
    }

    .whatsapp:hover { background: rgba(37, 211, 102, 0.3); }
    .facebook:hover { background: rgba(24, 119, 242, 0.3); }
    .twitter:hover { background: rgba(29, 161, 242, 0.3); }
    .telegram:hover { background: rgba(0, 136, 204, 0.3); }

    @media (max-width: 600px) {
      .share-hero {
        padding: 40px 20px;
      }
      h2 {
        font-size: 2.5em;
      }
      p {
        font-size: 1.1em;
      }
      .share-btn {
        width: 60px;
        height: 60px;
        font-size: 28px;
      }
    }

/* ═══ Bloco 4 ═══ */
/* ========== CSS MODELO ENERGIA MELHORADO ========== */
.energy-comments-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}


.energy-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.energy-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
}

.energy-header {
  text-align: center;
}

.energy-title {
  font-size: 2.5em;
  font-weight: 900;
  background: linear-gradient(135deg, #ff00ff 0%, #00ffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.energy-subtitle {
  font-size: 1.1em;
  color: rgba(255, 255, 255, 0.7);
}

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

.energy-metric {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 15px;
  text-align: center;
}

.energy-metric-icon {
  font-size: 2em;
  margin-bottom: 8px;
}

.energy-metric-value {
  font-size: 1.8em;
  font-weight: 700;
  background: linear-gradient(135deg, #ff00ff 0%, #00ffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.energy-metric-label {
  font-size: 0.8em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========== SEÇÃO DE SELEÇÃO DE VIBE - MELHORADA ========== */
.current-vibe {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  align-items: center;
}

/* Container do círculo com helper integrado */
.vibe-visual-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.vibe-visual {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #ff00ff 0%, #00ffff 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 50px rgba(255, 0, 255, 0.5);
  position: relative;
  cursor: grab;
  user-select: none;
  transition: all 0.3s ease;
}

.vibe-visual:active {
  cursor: grabbing;
}

.vibe-visual::before {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  border: 2px solid rgba(255, 0, 255, 0.3);
  border-radius: 50%;
  animation: ripple-out 2s ease-out infinite;
}

@keyframes ripple-out {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.2); opacity: 0; }
}

.vibe-emoji {
  font-size: 10em;
  margin-bottom: 0px;
  pointer-events: none;
}

.vibe-emoji.pulse {
  animation: pulse-vibe 0.5s ease-in-out;
}

@keyframes pulse-vibe {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.vibe-percentage {
  font-size: 2.5em;
  font-weight: 700;
  color: #000;
  pointer-events: none;
}

/* Helper integrado embaixo do círculo */
.vibe-slider-helper {
  font-size: 0.85em;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  background: rgba(255, 0, 255, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 0, 255, 0.2);
}

.vibe-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.vibe-current-title {
  font-size: 1.8em;
  font-weight: 900;
  margin-bottom: 5px;
  background: linear-gradient(135deg, #ff00ff 0%, #00ffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vibe-description {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-bottom: 10px;
}

.vibe-options-quick {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.vibe-quick-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 18px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9em;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}

.vibe-quick-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ff00ff;
  transform: translateY(-2px);
}

.vibe-quick-btn.active {
  background: linear-gradient(135deg, rgba(255, 0, 255, 0.3) 0%, rgba(0, 255, 255, 0.3) 100%);
  border-color: #ff00ff;
  box-shadow: 0 4px 15px rgba(255, 0, 255, 0.3);
}

/* ========== FEEDBACK VISUAL - NOVO ========== */
.vibe-feedback {
  background: linear-gradient(135deg, #ff00ff 0%, #00ffff 100%);
  border-radius: 15px;
  padding: 15px 20px;
  margin-top: 15px;
  display: none;
  align-items: center;
  gap: 12px;
  animation: slideDown 0.4s ease;
  box-shadow: 0 8px 25px rgba(255, 0, 255, 0.4);
}

.vibe-feedback.show {
  display: flex;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vibe-feedback-icon {
  font-size: 2em;
}

.vibe-feedback-text {
  flex: 1;
}

.vibe-feedback-title {
  font-size: 1.1em;
  font-weight: 700;
  color: #000;
  margin-bottom: 3px;
}

.vibe-feedback-subtitle {
  font-size: 0.9em;
  color: rgba(0, 0, 0, 0.7);
}

.vibe-feedback-arrow {
  font-size: 2em;
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ========== SEÇÃO DE EXPRESSÃO - MELHORADA ========== */
.express-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 35px;
  margin-bottom: 40px;
  transition: all 0.3s ease;
}

.express-section.highlighted {
  border-color: #ff00ff;
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.3);
  background: linear-gradient(135deg, rgba(255, 0, 255, 0.05) 0%, rgba(0, 255, 255, 0.05) 100%);
}

.express-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.express-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff00ff 0%, #00ffff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.express-title {
  font-size: 1.6em;
  font-weight: 700;
}

.express-subtitle {
  font-size: 0.95em;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 5px;
}

.express-textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
  color: #fff;
  font-size: 1.05em;
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.express-textarea:focus {
  outline: none;
  border-color: #ff00ff;
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 0 4px rgba(255, 0, 255, 0.1), 0 0 30px rgba(255, 0, 255, 0.2);
}

.express-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.express-submit {
  background: linear-gradient(135deg, #ff00ff 0%, #00ffff 100%);
  border: none;
  padding: 14px 35px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.05em;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 0, 255, 0.4);
  display: flex;
  align-items: center;
  gap: 10px;
}

.express-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(255, 0, 255, 0.6);
}

/* ========== BALÕES DE POSTS ANIMADOS - NOVO ========== */
.post-balloon {
  position: fixed;
  bottom: 100px;
  right: 30px;
  max-width: 350px;
  background: linear-gradient(135deg, rgba(255, 0, 255, 0.95) 0%, rgba(0, 255, 255, 0.95) 100%);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 15px 40px rgba(255, 0, 255, 0.5);
  z-index: 9999;
  animation: balloonSlideIn 0.5s ease;
  display: none;
}

.post-balloon.show {
  display: block;
}

@keyframes balloonSlideIn {
  from {
    opacity: 0;
    transform: translateX(100px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.balloon-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.balloon-avatar {
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2em;
  color: #fff;
}

.balloon-info {
  flex: 1;
}

.balloon-name {
  font-weight: 700;
  font-size: 1em;
  color: #000;
}

.balloon-time {
  font-size: 0.8em;
  color: rgba(0, 0, 0, 0.6);
}

.balloon-vibe {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(0, 0, 0, 0.2);
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 0.85em;
  color: #000;
  font-weight: 600;
}

.balloon-text {
  color: #000;
  font-size: 0.95em;
  line-height: 1.5;
  margin-bottom: 10px;
  font-weight: 500;
}

.balloon-energy {
  height: 5px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  overflow: hidden;
}

.balloon-energy-fill {
  height: 100%;
  background: #000;
  transition: width 0.3s ease;
}

/* ========== FEED ========== */
.community-feed-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.feed-title {
  font-size: 1.8em;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}

.live-indicator {
  width: 12px;
  height: 12px;
  background: #ff0066;
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
  box-shadow: 0 0 10px #ff0066;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.community-feed {
  display: grid;
  gap: 20px;
}

.energy-post {
  background: linear-gradient(135deg, rgba(255, 255, 255, .05) 0%, rgba(255, 255, 255, .02) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  padding: 25px;
  transition: all .3s ease;
  animation: fadeInScale .5s ease-out;
  width: 91%;
  max-width: 800px;
  margin: 0 auto 20px;
}

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

.energy-post:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
  border-color: rgba(255, 0, 255, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 0, 255, 0.2);
}

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

.post-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.post-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  font-weight: bold;
}

.post-user-info {
  display: flex;
  flex-direction: column;
}

.post-username {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.post-vibe-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  font-size: 14px;
  color: #fff;
}

.post-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.post-text {
  font-size: 15px;
  color: #fff;
  line-height: 1.5;
}

.post-energy-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.post-energy-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff00ff, #00ffff);
  transition: width 0.3s ease;
}

/* Toast Notification */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 999999;
}

.toast {
  background: linear-gradient(135deg, #00ff88 0%, #00cc6f 100%);
  color: #000;
  padding: 18px 24px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 255, 136, 0.4);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  animation: slideInRight 0.3s ease;
  min-width: 300px;
}

.toast.error {
  background: linear-gradient(135deg, #ff0066 0%, #cc0052 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 0, 102, 0.4);
}

.toast-icon {
  font-size: 24px;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsivo */
@media (max-width: 768px) {
  .current-vibe {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .vibe-options-quick {
    justify-content: center;
  }
  .energy-metrics {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .express-footer {
    flex-direction: column;
  }
  .toast-container {
    left: 20px;
    right: 20px;
  }
  .toast {
    min-width: auto;
  }
  .post-balloon {
    right: 15px;
    bottom: 80px;
    max-width: calc(100% - 30px);
  }
  .energy-post {
    padding: 15px;
    border-radius: 15px;
    width: 100%;
    margin: 0 auto 15px;
  }
  .post-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}


/* ========================================== */
/* CSS RESPONSIVO - ENERGY VIZ */
/* ========================================== */



  .energy-overlay {
    padding: 15px !important;
    gap: 10px;
  }

  .energy-header {
    text-align: center;
  }

  .energy-title {
    font-size: 1.3em !important;
    margin-bottom: 5px !important;
  }

  .energy-subtitle {
    font-size: 0.75em !important;
  }

  .energy-metrics {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .energy-metric {
    padding: 8px !important;
    border-radius: 10px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .energy-metric-icon {
    font-size: 1.5em !important;
    margin-bottom: 0 !important;
  }

  .energy-metric-value {
    font-size: 1.3em !important;
    margin-bottom: 0 !important;
  }

  .energy-metric-label {
    font-size: 0.7em !important;
    display: none;
  }


  .energy-overlay {
    padding: 20px !important;
  }

  .energy-header {
    text-align: center;
  }

  .energy-title {
    font-size: 1.8em !important;
    margin-bottom: 8px !important;
  }

  .energy-subtitle {
    font-size: 0.9em !important;
  }

  .energy-metrics {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 12px !important;
  }

  .energy-metric {
    padding: 10px 8px !important;
    border-radius: 12px !important;
  }

  .energy-metric-icon {
    font-size: 1.5em !important;
    margin-bottom: 5px !important;
  }

  .energy-metric-value {
    font-size: 1.4em !important;
    margin-bottom: 3px !important;
  }

  .energy-metric-label {
    font-size: 0.65em !important;
  }


/* ===== TABLET (769px até 1024px) ===== */
@media (min-width: 769px) and (max-width: 1024px) {
  .energy-viz {
    height: 260px !important;
    border-radius: 20px !important;
    margin-bottom: 35px !important;
  }

  .energy-overlay {
    padding: 25px !important;
  }

  .energy-title {
    font-size: 2.2em !important;
    margin-bottom: 8px !important;
  }

  .energy-subtitle {
    font-size: 1em !important;
  }

  .energy-metrics {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 15px !important;
  }

  .energy-metric {
    padding: 12px !important;
    border-radius: 14px !important;
  }

  .energy-metric-icon {
    font-size: 1.8em !important;
    margin-bottom: 6px !important;
  }

  .energy-metric-value {
    font-size: 1.6em !important;
    margin-bottom: 3px !important;
  }

  .energy-metric-label {
    font-size: 0.7em !important;
  }
}

/* ===== DESKTOP (acima de 1024px) ===== */
@media (min-width: 1025px) {
  .energy-viz {
    height: 280px !important;
  }

  .energy-metrics {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
  }
}

/* ===== LANDSCAPE MOBILE (altura < 500px) ===== */
@media (max-height: 500px) and (orientation: landscape) {
  .energy-viz {
    height: 160px !important;
    margin-bottom: 20px !important;
  }

  .energy-overlay {
    padding: 12px !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .energy-header {
    flex: 0 0 auto;
    text-align: left;
  }

  .energy-title {
    font-size: 1.2em !important;
    margin-bottom: 3px !important;
  }

  .energy-subtitle {
    font-size: 0.7em !important;
  }

  .energy-metrics {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px !important;
    flex: 1;
    max-width: 60%;
  }

  .energy-metric {
    padding: 8px 6px !important;
  }

  .energy-metric-icon {
    font-size: 1.3em !important;
    margin-bottom: 2px !important;
  }

  .energy-metric-value {
    font-size: 1.1em !important;
  }

  .energy-metric-label {
    font-size: 0.6em !important;
  }
}

/* ===== EXTRA PEQUENO (até 360px) ===== */
@media (max-width: 360px) {
  .energy-viz {
    height: 180px !important;
    border-radius: 14px !important;
    margin-bottom: 20px !important;
  }

  .energy-overlay {
    padding: 12px !important;
  }

  .energy-title {
    font-size: 1.1em !important;
    margin-bottom: 4px !important;
  }

  .energy-subtitle {
    font-size: 0.7em !important;
  }

  .energy-metrics {
    grid-template-columns: 1fr !important;
    gap: 6px !important;
  }

  .energy-metric {
    padding: 6px 10px !important;
    border-radius: 8px !important;
  }

  .energy-metric-icon {
    font-size: 1.3em !important;
  }

  .energy-metric-value {
    font-size: 1.2em !important;
  }

  .energy-metric-label {
    font-size: 0.65em !important;
  }
}

/* ===== DESKTOP GRANDE (acima de 1440px) ===== */
@media (min-width: 1441px) {
  .energy-viz {
    height: 320px !important;
  }

  .energy-overlay {
    padding: 35px !important;
  }

  .energy-title {
    font-size: 2.8em !important;
  }

  .energy-subtitle {
    font-size: 1.2em !important;
  }

  .energy-metrics {
    gap: 25px !important;
  }

  .energy-metric {
    padding: 18px !important;
    border-radius: 18px !important;
  }

  .energy-metric-icon {
    font-size: 2.3em !important;
    margin-bottom: 10px !important;
  }

  .energy-metric-value {
    font-size: 2em !important;
    margin-bottom: 5px !important;
  }

  .energy-metric-label {
    font-size: 0.85em !important;
  }
}

/* ===== AJUSTES GERAIS PARA TODOS OS TAMANHOS ===== */
@media (max-width: 768px) {
  /* Canvas responsivo */
  .energy-canvas {
    width: 100% !important;
    height: 100% !important;
  }

  /* Ajuste de espaçamento container */
  .energy-comments-container {
    padding: 0 15px !important;
    margin: 20px auto !important;
  }
}

/* ===== TABLET LANDSCAPE ===== */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
  .energy-viz {
    height: 220px !important;
  }

  .energy-title {
    font-size: 2em !important;
  }

  .energy-subtitle {
    font-size: 0.95em !important;
  }

  .energy-metric-icon {
    font-size: 1.6em !important;
  }

  .energy-metric-value {
    font-size: 1.5em !important;
  }
}

/* ===== MOBILE PORTRAIT GRANDE (ex: iPhone 14 Pro Max) ===== */
@media (min-width: 391px) and (max-width: 480px) and (orientation: portrait) {
  .energy-viz {
    height: 220px !important;
  }

  .energy-metrics {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px !important;
  }

  .energy-metric {
    padding: 10px 8px !important;
    flex-direction: column !important;
  }

  .energy-metric-label {
    display: block !important;
  }
}

/* ===== FOLD DEVICES (telas muito estreitas) ===== */
@media (max-width: 280px) {
  .energy-viz {
    height: 160px !important;
    border-radius: 12px !important;
  }

  .energy-overlay {
    padding: 10px !important;
  }

  .energy-title {
    font-size: 1em !important;
  }

  .energy-subtitle {
    font-size: 0.65em !important;
  }

  .energy-metrics {
    gap: 5px !important;
  }

  .energy-metric {
    padding: 5px 8px !important;
  }

  .energy-metric-icon {
    font-size: 1.2em !important;
  }

  .energy-metric-value {
    font-size: 1.1em !important;
  }

  .energy-metric-label {
    font-size: 0.6em !important;
  }
}

/* ===== FIX PARA EVITAR OVERFLOW ===== */
@media (max-width: 768px) {
  .energy-viz {
    overflow: hidden;
  }



  .vibe-visual {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #f0f 0%, #0ff 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px rgba(255, 0, 255, .5);
    position: relative;
    cursor: grab;
    user-select: none;
    transition: all .3s 
ease;
    max-width: 189px !important;
}

.vibe-emoji {
    font-size: 4em;
    margin-bottom: 0;
    pointer-events: none;
}

.vibe-percentage {
    font-size: 1.5em;
    font-weight: 700;
    color: #000;
    pointer-events: none;
}

  .energy-metric {
    min-width: 0; /* Evita overflow em flex/grid */
  }

  .energy-metric-value,
  .energy-metric-label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}


.energy-viz {
    position: relative;
    height: 367px !important;
    background: linear-gradient(135deg, #1a0033 0%, #000 100%);
    border-radius: 24px;
    margin-bottom: 40px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(102, 0, 204, .4);
}

/* ═══ Bloco 5 ═══ */
/* BANNER PROMOCIONAL NATAL */
.promo-natal-banner {
    max-width: 100%;
    margin: 40px auto;
    padding: 0 15px;
}

.promo-natal-container {
    background: linear-gradient(135deg, #B00020 0%, #C40022 50%, #D62828 100%);
    border-radius: 20px;
    padding: 4px;
    box-shadow: 
        0 0 30px rgba(255, 211, 122, 0.4),
        0 10px 40px rgba(176, 0, 32, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.promo-natal-container:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 0 50px rgba(255, 211, 122, 0.6),
        0 15px 50px rgba(176, 0, 32, 0.6);
}

/* Borda dourada interna */
.promo-natal-inner {
    background: linear-gradient(180deg, #1A1A1A 0%, #0D0D0D 100%);
    border-radius: 16px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    overflow: hidden;
}

/* Efeito de brilho natalino */
.promo-natal-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,211,122,0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; transform: rotate(0deg); }
    50% { opacity: 1; transform: rotate(180deg); }
}

/* Imagem da promoção - SEM CORTAR */
.promo-natal-image {
    flex-shrink: 0;
    width: 200px;
    height: 150px;
    position: relative;
    z-index: 1;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #B00020, #D62828);
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-natal-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.promo-natal-container:hover .promo-natal-image img {
    transform: scale(1.05);
}

/* Conteúdo do texto */
.promo-natal-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

/* LOGO DO PORTAL */
.promo-natal-portal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,211,122,0.1);
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
    border: 1px solid rgba(255,211,122,0.2);
}

.promo-natal-portal svg {
    width: 20px;
    height: 20px;
    fill: #FFD37A;
}

.promo-natal-portal span {
    color: #FFD37A;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.promo-natal-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFD37A, #EFBF61);
    color: #B00020;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    margin-left: 10px;
}

.promo-natal-title {
    color: #FFD37A;
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 700;
    margin: 0 0 8px 0;
    font-family: 'Satisfy', Georgia, serif;
    text-shadow: 0 0 20px rgba(255, 211, 122, 0.5);
}

.promo-natal-desc {
    color: #F7F7F7;
    font-size: clamp(13px, 2.5vw, 15px);
    margin: 0 0 15px 0;
    opacity: 0.9;
    line-height: 1.5;
}

.promo-natal-desc strong {
    color: #FFD37A;
}

/* Botões */
.promo-natal-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.promo-natal-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid #FFD37A;
    transition: all 0.3s ease;
}

.promo-natal-cta:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    color: #fff;
    text-decoration: none;
}

/* Link do Ranking */
.promo-natal-rank {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #EFBF61;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 20px;
    background: rgba(255,211,122,0.1);
    border: 1px solid rgba(255,211,122,0.2);
}

.promo-natal-rank:hover {
    color: #FFD37A;
    background: rgba(255,211,122,0.2);
    text-decoration: none;
}

/* Luzes natalinas no topo */
.promo-natal-lights {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    display: flex;
    justify-content: space-around;
}

.promo-natal-lights span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: -4px;
    animation: twinkle 1.5s ease-in-out infinite;
}

.promo-natal-lights span:nth-child(1) { background: #ff0000; animation-delay: 0s; }
.promo-natal-lights span:nth-child(2) { background: #FFD37A; animation-delay: 0.2s; }
.promo-natal-lights span:nth-child(3) { background: #00ff00; animation-delay: 0.4s; }
.promo-natal-lights span:nth-child(4) { background: #ff0000; animation-delay: 0.6s; }
.promo-natal-lights span:nth-child(5) { background: #FFD37A; animation-delay: 0.8s; }
.promo-natal-lights span:nth-child(6) { background: #00ff00; animation-delay: 1s; }
.promo-natal-lights span:nth-child(7) { background: #ff0000; animation-delay: 1.2s; }

@keyframes twinkle {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 10px currentColor; }
    50% { opacity: 0.5; transform: scale(0.8); box-shadow: 0 0 5px currentColor; }
}

/* Timer/Prazo */
.promo-natal-timer {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(0,0,0,0.6);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    color: #FFD37A;
    border: 1px solid rgba(255,211,122,0.3);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .promo-natal-banner {
        margin: 30px auto;
    }
    
    .promo-natal-inner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .promo-natal-image {
        width: 100%;
        max-width: 320px;
        height: 180px;
    }
    
    .promo-natal-portal {
        justify-content: center;
    }
    
    .promo-natal-buttons {
        justify-content: center;
    }
    
    .promo-natal-timer {
        position: relative;
        top: auto;
        right: auto;
        margin-bottom: 15px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .promo-natal-image {
        height: 160px;
        max-width: 280px;
    }
}




.energy-viz {
    height: auto !important;
    margin-bottom: 16px !important;
    border-radius: 16px !important;
}

/* ═══ Bloco 6 ═══ */
/* Reset e contenção de escopo */
.share_modal_overlay_custom * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Overlay */
.share_modal_overlay_custom {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 999999;
    animation: fadeIn_custom 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

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

/* Container principal */
.share_modal_container_custom {
    position: relative;
    width: 90%;
    max-width: 950px;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    animation: slideUp_custom 0.4s ease;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.3);
}

/* Botão de fechar */
.share_close_btn_custom {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    color: #6B7280;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.share_close_btn_custom:hover {
    transform: rotate(90deg) scale(1.1);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Content container */
.share_modal_content_custom {
    display: flex;
    min-height: 550px;
}

/* Lado visual - Estilo OuvirRadioOnline */
.share_visual_side_custom {
    flex: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background: linear-gradient(135deg, #1e1e2e 0%, #2d2d44 50%, #1e1e2e 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 50px 40px;
}

/* Pattern de fundo */
.share_visual_side_custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(147, 51, 234, 0.3) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.3) 0%, transparent 50%),
                      radial-gradient(circle at 40% 40%, rgba(59, 130, 246, 0.2) 0%, transparent 50%);
    z-index: 1;
}

/* Brand container */
.share_brand_container_custom {
    text-align: center;
    margin-bottom: 40px;
    z-index: 2;
    position: relative;
}

.share_logo_custom {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.share_logo_icon_custom {
    font-size: 40px;
    animation: pulse_custom 2s infinite;
}

.share_brand_name_custom {
    color: white;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Music icons flutuantes */
.share_music_icons_custom {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.share_music_icon_custom {
    position: absolute;
    font-size: 24px;
    opacity: 0.6;
    animation: float_music_custom 6s ease-in-out infinite;
}

.icon_1 { top: 15%; left: 10%; animation-delay: 0s; }
.icon_2 { top: 20%; right: 15%; animation-delay: 1s; }
.icon_3 { bottom: 25%; left: 15%; animation-delay: 2s; }
.icon_4 { bottom: 30%; right: 10%; animation-delay: 3s; }
.icon_5 { top: 50%; left: 5%; animation-delay: 4s; }
.icon_6 { top: 60%; right: 5%; animation-delay: 5s; }

/* Estatísticas */
.share_stats_container_custom {
    display: flex;
    gap: 30px;
    align-items: center;
    z-index: 2;
    position: relative;
    margin-bottom: 40px;
}

.share_stat_item_custom {
    text-align: center;
    color: white;
}

.share_stat_number_custom {
    display: block;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.share_stat_label_custom {
    font-size: 13px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.share_stat_divider_custom {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Ondas sonoras animadas */
.share_waves_container_custom {
    display: flex;
    gap: 6px;
    align-items: center;
    height: 60px;
    z-index: 2;
    position: relative;
}

.share_wave_custom {
    width: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    animation: wave_custom 1s ease-in-out infinite;
}

.wave_1 { height: 20px; animation-delay: 0s; }
.wave_2 { height: 35px; animation-delay: 0.1s; }
.wave_3 { height: 45px; animation-delay: 0.2s; }
.wave_4 { height: 30px; animation-delay: 0.3s; }
.wave_5 { height: 25px; animation-delay: 0.4s; }

/* Lado da ação */
.share_action_side_custom {
    flex: 1.1;
    padding: 50px 45px 40px;
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

/* Badge */
.share_badge_custom {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    width: fit-content;
    text-transform: uppercase;
    animation: slideInRight_custom 0.6s ease;
}

/* Título */
.share_title_custom {
    font-size: 34px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: slideInRight_custom 0.7s ease;
}

.share_highlight_custom {
    background: linear-gradient(135deg, #9333ea 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Descrição */
.share_description_custom {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 25px;
    animation: slideInRight_custom 0.8s ease;
}

.share_description_custom strong {
    color: #374151;
    font-weight: 600;
}

/* Benefícios */
.share_benefits_custom {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
    animation: slideInRight_custom 0.85s ease;
}

.share_benefit_item_custom {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #4b5563;
}

.share_check_custom {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Timer */
.share_timer_container_custom {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    color: #9333ea;
    animation: slideInRight_custom 0.9s ease;
}

.share_timer_icon_custom {
    animation: rotate_custom 2s linear infinite;
}

.share_timer_text_custom {
    font-size: 14px;
    font-weight: 500;
}

/* Botão WhatsApp */
.share_whatsapp_btn_custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    animation: slideInRight_custom 1s ease;
    position: relative;
    overflow: hidden;
}

.share_whatsapp_btn_custom::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;
}

.share_whatsapp_btn_custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -5px rgba(37, 211, 102, 0.4);
}

.share_whatsapp_btn_custom:hover::before {
    left: 100%;
}

/* Prova social */
.share_social_proof_custom {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
    animation: slideInRight_custom 1.1s ease;
}

.share_avatars_custom {
    display: flex;
}

.share_avatar_custom {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 12px;
    margin-left: -8px;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.share_avatar_custom:first-child {
    margin-left: 0;
}

.share_social_text_custom {
    font-size: 14px;
    color: #6b7280;
}

.share_social_text_custom strong {
    color: #374151;
    font-weight: 600;
}

/* Botão secundário */
.share_maybe_later_custom {
    background: none;
    border: 2px solid #e5e7eb;
    color: #9ca3af;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    animation: slideInRight_custom 1.15s ease;
}

.share_maybe_later_custom:hover {
    border-color: #d1d5db;
    color: #6b7280;
    background: #f9fafb;
}

/* Instagram */
.share_instagram_custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 20px;
    color: #9ca3af;
    font-size: 13px;
    animation: slideInRight_custom 1.2s ease;
}

.share_instagram_custom:hover {
    color: #e4405f;
    cursor: pointer;
}

/* Animações */
@keyframes fadeIn_custom {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

@keyframes pulse_custom {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes float_music_custom {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-15px) rotate(5deg);
        opacity: 0.8;
    }
    50% { 
        transform: translateY(5px) rotate(-5deg);
        opacity: 0.6;
    }
    75% {
        transform: translateY(-8px) rotate(3deg);
        opacity: 0.7;
    }
}

@keyframes wave_custom {
    0%, 100% { 
        transform: scaleY(0.5);
        opacity: 0.5;
    }
    50% { 
        transform: scaleY(1);
        opacity: 1;
    }
}

@keyframes rotate_custom {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes countUp_custom {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .share_modal_content_custom {
        flex-direction: column;
        min-height: auto;
    }
    
    .share_visual_side_custom {
        padding: 50px 30px 40px;
        min-height: 280px;
    }
    
    .share_stats_container_custom {
        flex-direction: column;
        gap: 20px;
    }
    
    .share_stat_divider_custom {
        width: 40px;
        height: 1px;
    }
    
    .share_stat_number_custom {
        font-size: 28px;
    }
    
    .share_action_side_custom {
        padding: 35px 25px;
    }
    
    .share_title_custom {
        font-size: 26px;
    }
    
    .share_close_btn_custom {
        background: rgba(255, 255, 255, 0.98);
    }
}

@media (max-width: 480px) {
    .share_modal_container_custom {
        width: 95%;
        border-radius: 16px;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .share_title_custom {
        font-size: 22px;
    }
    
    .share_description_custom {
        font-size: 14px;
    }
    
    .share_logo_custom {
        width: 60px;
        height: 60px;
    }
    
    .share_logo_icon_custom {
        font-size: 30px;
    }
    
    .share_brand_name_custom {
        font-size: 20px;
    }
}

/* ═══ Bloco 7 ═══ */
/* Reset e contenção de escopo */
.share_modal_overlay_custom * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Overlay */
.share_modal_overlay_custom {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 999999;
    animation: fadeIn_custom 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

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

/* Container principal */
.share_modal_container_custom {
    position: relative;
    width: 90%;
    max-width: 950px;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    animation: slideUp_custom 0.4s ease;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.3);
}

/* Botão de fechar */
.share_close_btn_custom {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    color: #6B7280;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.share_close_btn_custom:hover {
    transform: rotate(90deg) scale(1.1);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Content container */
.share_modal_content_custom {
    display: flex;
    min-height: 550px;
}

/* Lado visual - Estilo OuvirRadioOnline */
.share_visual_side_custom {
    flex: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background: linear-gradient(135deg, #1e1e2e 0%, #2d2d44 50%, #1e1e2e 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 50px 40px;
}

/* Pattern de fundo */
.share_visual_side_custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(147, 51, 234, 0.3) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.3) 0%, transparent 50%),
                      radial-gradient(circle at 40% 40%, rgba(59, 130, 246, 0.2) 0%, transparent 50%);
    z-index: 1;
}

/* Brand container */
.share_brand_container_custom {
    text-align: center;
    margin-bottom: 40px;
    z-index: 2;
    position: relative;
}

.share_logo_custom {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.share_logo_icon_custom {
    font-size: 40px;
    animation: pulse_custom 2s infinite;
}

.share_brand_name_custom {
    color: white;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Music icons flutuantes */
.share_music_icons_custom {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.share_music_icon_custom {
    position: absolute;
    font-size: 24px;
    opacity: 0.6;
    animation: float_music_custom 6s ease-in-out infinite;
}

.icon_1 { top: 15%; left: 10%; animation-delay: 0s; }
.icon_2 { top: 20%; right: 15%; animation-delay: 1s; }
.icon_3 { bottom: 25%; left: 15%; animation-delay: 2s; }
.icon_4 { bottom: 30%; right: 10%; animation-delay: 3s; }
.icon_5 { top: 50%; left: 5%; animation-delay: 4s; }
.icon_6 { top: 60%; right: 5%; animation-delay: 5s; }

/* Estatísticas */
.share_stats_container_custom {
    display: flex;
    gap: 30px;
    align-items: center;
    z-index: 2;
    position: relative;
    margin-bottom: 40px;
}

.share_stat_item_custom {
    text-align: center;
    color: white;
}

.share_stat_number_custom {
    display: block;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.share_stat_label_custom {
    font-size: 13px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.share_stat_divider_custom {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Ondas sonoras animadas */
.share_waves_container_custom {
    display: flex;
    gap: 6px;
    align-items: center;
    height: 60px;
    z-index: 2;
    position: relative;
}

.share_wave_custom {
    width: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    animation: wave_custom 1s ease-in-out infinite;
}

.wave_1 { height: 20px; animation-delay: 0s; }
.wave_2 { height: 35px; animation-delay: 0.1s; }
.wave_3 { height: 45px; animation-delay: 0.2s; }
.wave_4 { height: 30px; animation-delay: 0.3s; }
.wave_5 { height: 25px; animation-delay: 0.4s; }

/* Lado da ação */
.share_action_side_custom {
    flex: 1.1;
    padding: 50px 45px 40px;
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

/* Badge */
.share_badge_custom {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    width: fit-content;
    text-transform: uppercase;
    animation: slideInRight_custom 0.6s ease;
}

/* Título */
.share_title_custom {
    font-size: 34px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: slideInRight_custom 0.7s ease;
}

.share_highlight_custom {
    background: linear-gradient(135deg, #9333ea 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Descrição */
.share_description_custom {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 25px;
    animation: slideInRight_custom 0.8s ease;
}

.share_description_custom strong {
    color: #374151;
    font-weight: 600;
}

/* Benefícios */
.share_benefits_custom {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
    animation: slideInRight_custom 0.85s ease;
}

.share_benefit_item_custom {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #4b5563;
}

.share_check_custom {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Timer */
.share_timer_container_custom {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    color: #9333ea;
    animation: slideInRight_custom 0.9s ease;
}

.share_timer_icon_custom {
    animation: rotate_custom 2s linear infinite;
}

.share_timer_text_custom {
    font-size: 14px;
    font-weight: 500;
}

/* Botão WhatsApp */
.share_whatsapp_btn_custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    animation: slideInRight_custom 1s ease;
    position: relative;
    overflow: hidden;
}

.share_whatsapp_btn_custom::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;
}

.share_whatsapp_btn_custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -5px rgba(37, 211, 102, 0.4);
}

.share_whatsapp_btn_custom:hover::before {
    left: 100%;
}

/* Prova social */
.share_social_proof_custom {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
    animation: slideInRight_custom 1.1s ease;
}

.share_avatars_custom {
    display: flex;
}

.share_avatar_custom {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 12px;
    margin-left: -8px;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.share_avatar_custom:first-child {
    margin-left: 0;
}

.share_social_text_custom {
    font-size: 14px;
    color: #6b7280;
}

.share_social_text_custom strong {
    color: #374151;
    font-weight: 600;
}

/* Botão secundário */
.share_maybe_later_custom {
    background: none;
    border: 2px solid #e5e7eb;
    color: #9ca3af;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    animation: slideInRight_custom 1.15s ease;
}

.share_maybe_later_custom:hover {
    border-color: #d1d5db;
    color: #6b7280;
    background: #f9fafb;
}

/* Instagram */
.share_instagram_custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 20px;
    color: #9ca3af;
    font-size: 13px;
    animation: slideInRight_custom 1.2s ease;
}

.share_instagram_custom:hover {
    color: #e4405f;
    cursor: pointer;
}

/* Animações */
@keyframes fadeIn_custom {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

@keyframes pulse_custom {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes float_music_custom {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-15px) rotate(5deg);
        opacity: 0.8;
    }
    50% { 
        transform: translateY(5px) rotate(-5deg);
        opacity: 0.6;
    }
    75% {
        transform: translateY(-8px) rotate(3deg);
        opacity: 0.7;
    }
}

@keyframes wave_custom {
    0%, 100% { 
        transform: scaleY(0.5);
        opacity: 0.5;
    }
    50% { 
        transform: scaleY(1);
        opacity: 1;
    }
}

@keyframes rotate_custom {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes countUp_custom {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .share_modal_content_custom {
        flex-direction: column;
        min-height: auto;
    }
    
    .share_visual_side_custom {
        padding: 50px 30px 40px;
        min-height: 280px;
    }
    
    .share_stats_container_custom {
        flex-direction: column;
        gap: 20px;
    }
    
    .share_stat_divider_custom {
        width: 40px;
        height: 1px;
    }
    
    .share_stat_number_custom {
        font-size: 28px;
    }
    
    .share_action_side_custom {
        padding: 35px 25px;
    }
    
    .share_title_custom {
        font-size: 26px;
    }
    
    .share_close_btn_custom {
        background: rgba(255, 255, 255, 0.98);
    }
}

@media (max-width: 480px) {
    .share_modal_container_custom {
        width: 95%;
        border-radius: 16px;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .share_title_custom {
        font-size: 22px;
    }
    
    .share_description_custom {
        font-size: 14px;
    }
    
    .share_logo_custom {
        width: 60px;
        height: 60px;
    }
    
    .share_logo_icon_custom {
        font-size: 30px;
    }
    
    .share_brand_name_custom {
        font-size: 20px;
    }
}


/* --- Efeito Onda Sonora no Título --- */
.radio-title-letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: waveEffect 1s forwards;
}

@keyframes waveEffect {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    40% {
        opacity: 1;
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(5px);
    }
    80% {
        transform: translateY(-2px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Preparação para Animação em Sequência --- */
.animated-item {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animated-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Melhorias de Estilo e Clareza --- */
.radio-website {
    display: inline-block;
    margin-top: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.radio-website:hover {
    background-color: #007bff;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

.radio-website .fas {
    margin-right: 8px;
}

.tags-container {
    margin-top: 15px;
}

.tags-title {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 8px;
    font-weight: 500;
}

.radio-tags .tag-link {
    transition: all 0.3s ease;
}
.radio-tags .tag-link:hover {
    transform: translateY(-2px);
}

/* --- Animação de Letreiro para a Descrição --- */
.marquee-container {
    width: 100%;
    overflow: hidden;
    margin-top: 15px;
    position: relative;
    /* Adiciona um gradiente suave nas bordas para o texto desaparecer */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.radio-description {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%; /* Inicia fora da tela */
    animation: marquee 18s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* --- Estilos Responsivos para Celular (telas com até 768px de largura) --- */
@media (max-width: 768px) {

    /* 1. Ajusta o layout principal para empilhar a imagem e as informações */
    .radio-header {
        flex-direction: column; /* Empilha os itens verticalmente */
        align-items: center;    /* Centraliza tudo */
        gap: 20px;              /* Espaço entre a imagem e as infos */
    }

    .radio-info {
        text-align: center;     /* Centraliza o texto de todo o bloco de info */
        width: 100%;            /* Ocupa toda a largura disponível */
    }
    
    /* 2. Corrige o título: diminui a fonte para não quebrar e ajusta a animação */
    .radio-title {
        font-size: 1.9rem; /* Tamanho da fonte bem menor para caber na tela */
        line-height: 1.2;
        margin-bottom: 15px;
    }

    /* Ajusta a animação da onda para ficar proporcional ao novo tamanho da fonte */
    @keyframes waveEffect {
        0% {
            opacity: 0;
            transform: translateY(15px);
        }
        40% {
            opacity: 1;
            transform: translateY(-7px); /* Movimento vertical menor */
        }
        60% {
            transform: translateY(3px);
        }
        80% {
            transform: translateY(-1px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* 3. Aumenta o tamanho do botão "Visite o site" para ser fácil de tocar */
    .radio-website {
        padding: 12px 20px; /* Mais preenchimento interno */
        font-size: 1rem;    /* Fonte maior */
    }
    
    /* Centraliza os botões de like/comentário */
    .radio-actions {
        justify-content: center;
    }

    /* Centraliza o título dos temas */
    .tags-title {
        text-align: center;
    }


.animated-item.visible {
    opacity: 1;
    transform: translateY(0);
    max-width: 275px;
}



}


    .radio-website

 {
        padding: 12px 20px !important;
        font-size: 11px !important;
    }

/* ═══ Bloco 8 ═══ */
/* --- Setup Geral do Título e Efeito de Brilho --- */
.radio-title {
    position: relative; /* Necessário para o posicionamento do brilho e reflexo */
    font-weight: 800;   /* Fonte mais grossa para o efeito ficar melhor */
    /* Cor base do texto */
    color: #e0e0e0;
}

/* O gatilho da animação: quando o H1 tiver a classe 'animate-now' */
.radio-title.animate-now {
    /* Efeito de Brilho com gradiente animado */
    background: linear-gradient(90deg, #a777e3, #ffffff, #a777e3);
    background-size: 200% auto;
    color: #000;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 2.5s ease-in-out;
}

@keyframes shine {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}


/* --- Efeito de Onda Sonora e Reflexo nas Letras --- */
.radio-title-letter {
    display: inline-block;
    position: relative;
    transform-origin: bottom;
    /* Estado inicial antes da animação */
    opacity: 0.7;
    transform: translateY(0);
}

/* Animação de onda sonora para cada letra */
.radio-title.animate-now .radio-title-letter {
    animation: soundWave 1.5s ease-in-out forwards;
}

@keyframes soundWave {
    0%   { transform: scaleY(1) translateY(0); opacity: 0.7; }
    25%  { transform: scaleY(1.3) translateY(-5px); opacity: 1; }
    50%  { transform: scaleY(0.8) translateY(2px); opacity: 0.8; }
    75%  { transform: scaleY(1.1); opacity: 1; }
    100% { transform: scaleY(1) translateY(0); opacity: 0.7; }
}


/* Efeito de Reflexo com pseudo-elemento */
.radio-title-letter::after {
    content: attr(data-text); /* Pega a letra do atributo que criamos */
    position: absolute;
    left: 0;
    top: 100%;
    transform: scaleY(-1); /* Espelha verticalmente */
    opacity: 0; /* Começa invisível */
    
    /* Cria um gradiente de máscara para o reflexo desaparecer suavemente */
    -webkit-mask-image: linear-gradient(to bottom, rgba(255,255,255,0.6) 0%, transparent 80%);
    mask-image: linear-gradient(to bottom, rgba(255,255,255,0.6) 0%, transparent 80%);
}

/* Animação para o reflexo aparecer junto com a onda */
.radio-title.animate-now .radio-title-letter::after {
    animation: reflectionFade 1.5s ease-in-out forwards;
}

@keyframes reflectionFade {
    0%   { opacity: 0; }
    25%  { opacity: 0.4; }
    75%  { opacity: 0.2; }
    100% { opacity: 0; }
}

/* (O CSS responsivo que fizemos antes continua valendo e deve ser mantido) */
@media (max-width: 768px) {
    /* ... mantenha os ajustes responsivos aqui ... */
}


.comment-actions {
    display: flex !important
;
    gap: 10px !important;
    margin-top: 5px !important;
    display: none !important;
}


.radio-image-wrapper {
    position: relative;
    width: 250px;
    height: 250px;
    background-color: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    display: flex
;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .3);
    transition: transform .3s 
ease-in-out;
}
.radio-image {
    width: 78%;
    height: 74%;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .1);
    transition: filter .3s 
ease;
    padding-top: 10px;
}
.radio-image {
    width: 107%;
    height: 112%;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .1);
    transition: filter .3s 
ease;
    padding-top: 10px;
}

.radio-image-wrapper {
    position: relative;
    width: 180px;
    height: 182px;
    background-color: #fff;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .3);
    transition: transform .3s ease-in-out;
    
    /* --- Linhas Adicionadas --- */
    border: 8px solid white; /* Adiciona a borda branca de 8px */
    box-sizing: border-box;  /* Garante que a borda não aumente o tamanho do elemento */
}


.radio-player-section {
    display: flex
;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #141414 0%, #333 100%);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, .1);
    position: relative;
    margin-top: 50px;
}

.radio-player-section {
    display: flex
;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #141414 0%, #333 100%);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, .1);
    position: relative;
    margin-top: 50px;
}
.radio-img, .playlist-img, .highlighted-img

 {
    object-fit: cover !important;
    border-radius: 10px !important;
    filter: brightness(.8) contrast(1.2) !important;
    transition: all .5s !important;
    background: white !important;
    color: #5d5d5d;
}

.about-section, .contact-section {
    max-width: 587px;
    margin: 6px auto;
    padding: 20px;
    background: linear-gradient(135deg, #141414 0%, #333 100%);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, .1);
}
.section-title {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.8em !important;
    color: #fff !important;
    margin: 8px 0 20px !important;
    text-align: left !important;
    text-transform: capitalize !important;
    letter-spacing: 1px !important;
}

@media (max-width: 768px) {
    .radio-actions.animated-item.visible

 {
        opacity: 1;
        transform: translateY(0);
        max-width: 357px !important;

    }
    .tags-container.animated-item.visible

 {
        opacity: 1;
        transform: translateY(0);
        max-width: 357px !important;

    }


}


.share-hero {
    width: 100%;
    padding: 45px 20px;
    text-align: center;
    background: radial-gradient(circle at center, #1a1a1a, #000);
    color: #fff;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 31px;
}

.radio-image-wrapper {
    position: relative;
    width: 180px;
    height: 182px;
    background-color: #000000;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .3);
    transition: transform .3s ease-in-out;
    border: 8px solid #fff;
    box-sizing: border-box;
}





/* ============================================================
   RADIO PAGE REDESIGN - CSS OVERRIDE v2.1
   
   INSTRUÇÕES: Adicione este arquivo DEPOIS de todos os outros CSS
   no <head> do radio.php, ou cole dentro de um <style> no final.
   
   NÃO altera nenhum PHP ou JavaScript.
   NÃO remove funcionalidades existentes.
   Apenas sobrescreve o visual das seções aprovadas.
   ============================================================ */

/* ===========================================
   1. PLAYER HERO - Layout horizontal
   =========================================== */
.radio-player-section {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    background: #111118 !important;
    border-radius: 16px !important;
    padding: 24px !important;
    margin-bottom: 12px !important;
    margin-top: 20px !important;
    border: 1px solid rgba(255,255,255,0.05) !important;
}

.radio-header {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 20px !important;
}

/* Logo da rádio */
.radio-image-wrapper {
    width: 130px !important;
    height: 130px !important;
    min-width: 130px !important;
    min-height: 130px !important;
    border-radius: 16px !important;
    border: 2px solid rgba(147,51,234,0.3) !important;
    background-color: #ffffff ;
    position: relative !important;
    box-shadow: none !important;
    flex-shrink: 0 !important;
}

.radio-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    border-radius: 14px !important;
    padding: 0 !important;
    border: none !important;
    filter: none !important;
}

/* Botão favoritar no canto da logo */
.radio-image-wrapper .favorite-btn {
    position: absolute !important;
    top: 4px !important;
    right: 4px !important;
    font-size: 14px !important;
    z-index: 2 !important;
    background: rgba(0,0,0,0.5) !important;
    border-radius: 50% !important;
    width: 28px !important;
    height: 28px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Info da rádio */
.radio-info {
    flex: 1 !important;
    min-width: 0 !important;
    text-align: left !important;
    width: auto !important;
}

/* Título - desabilitar animação pesada, manter simples */
.radio-title {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #fff !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 4px !important;
    line-height: 1.3 !important;
}

.radio-title-letter {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    display: inline !important;
}

.radio-title-letter::after {
    display: none !important;
}

/* Descrição */
.marquee-container {
    margin-top: 6px !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
}

.radio-description {
    animation: none !important;
    padding-left: 0 !important;
    white-space: normal !important;
    display: block !important;
    font-size: 12px !important;
    color: #888 !important;
    line-height: 1.4 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

/* Tags */
.tags-container {
    margin-top: 8px !important;
}

.tags-title {
    display: none !important;
}

.radio-tags {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 4px !important;
}

.tag-link {
    font-size: 10px !important;
    padding: 3px 8px !important;
    background: rgba(147,51,234,0.12) !important;
    border: 1px solid rgba(147,51,234,0.2) !important;
    border-radius: 12px !important;
    color: #c084fc !important;
    text-decoration: none !important;
    transition: all 0.2s !important;
}

.tag-link:hover {
    background: rgba(147,51,234,0.25) !important;
    color: #fff !important;
}

/* "Gosta de X? Veja mais" */
.radio-info > p.animated-item {
    font-size: 11px !important;
    color: #666 !important;
    margin-top: 4px !important;
}

/* Controles do player */
.audio-controls {
    margin-top: 12px !important;
}

.control-buttons {
    display: flex !important;
    gap: 10px !important;
    align-items: center !important;
    justify-content: flex-start !important;
}

/* Botões REDONDOS (fix oval) */
.control-btn,
#play-pause-btn,
#mute-btn,
#cast-btn {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
    max-width: 48px !important;
    max-height: 48px !important;
    border-radius: 50% !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 16px !important;
    line-height: 1 !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    border: none !important;
    cursor: pointer !important;
    transition: transform 0.15s !important;
}

.control-btn:hover,
#play-pause-btn:hover,
#mute-btn:hover,
#cast-btn:hover {
    transform: scale(1.08) !important;
}

#play-pause-btn {
    background: linear-gradient(135deg,#9333ea,#7c3aed) !important;
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    min-height: 54px !important;
    max-width: 54px !important;
    max-height: 54px !important;
    color: #fff !important;
    font-size: 20px !important;
}

#mute-btn,
#cast-btn {
    background: rgba(147,51,234,0.15) !important;
    border: 1px solid rgba(147,51,234,0.3) !important;
    color: #c084fc !important;
}

/* Loading overlay */
.loading-overlay {
    border-radius: 16px !important;
}

/* Site oficial link */
.radio-website {
    font-size: 10px !important;
    padding: 6px 10px !important;
    background: transparent !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 6px !important;
    color: #666 !important;
    margin-top: 8px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
}

.radio-website:hover {
    border-color: rgba(147,51,234,0.3) !important;
    color: #aaa !important;
    background: transparent !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Esconder audio player nativo (manter funcional mas invisível) */
#audio-player {
    height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
}

/* Waveform visualizer - mais compacto */
.audio-visualizer,
#waveform {
    height: 60px !important;
    margin-top: 8px !important;
}

/* Music info */
.music-info {
    margin-top: 8px !important;
    padding: 8px !important;
}

/* Desabilitar animação de itens */
.animated-item {
    opacity: 1 !important;
    transform: none !important;
}

.animated-item.visible {
    max-width: 100% !important;
}

/* ===========================================
   2. INTERAÇÃO - Favoritar / Curtidas / Comentários
   =========================================== */
.radio-actions {
    display: flex !important;
    gap: 8px !important;
    margin-bottom: 12px !important;
    max-width: 100% !important;
}

.radio-actions .like-btn,
.radio-actions .comment-btn {
    flex: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    padding: 12px 10px !important;
    background: #111118 !important;
    border-radius: 10px !important;
    border: 1px solid rgba(255,255,255,0.05) !important;
    color: #aaa !important;
    font-size: 13px !important;
    transition: all 0.2s !important;
}

.radio-actions .like-btn:hover,
.radio-actions .comment-btn:hover {
    border-color: rgba(147,51,234,0.3) !important;
    color: #fff !important;
}

.radio-actions .like-btn.liked {
    border-color: rgba(255,68,102,0.2) !important;
    color: #ff4466 !important;
}

/* ===========================================
   3. COMPARTILHAR - Strip compacto
   =========================================== */
.share-hero {
    padding: 12px 16px !important;
    border-radius: 10px !important;
    background: #111118 !important;
    box-shadow: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-bottom: 12px !important;
    min-height: auto !important;
    text-align: left !important;
}

/* Esconder canvas e wrapper */
.share-hero .fractal-canvas,
.share-hero canvas {
    display: none !important;
}

.share-hero .content-wrapper {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    width: 100% !important;
    text-align: left !important;
}

.share-hero h2 {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #ccc !important;
    text-shadow: none !important;
    animation: none !important;
    letter-spacing: 0 !important;
    margin: 0 !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
}

.share-hero p {
    display: none !important;
}

.share-hero .share-buttons {
    display: flex !important;
    gap: 8px !important;
    margin-left: auto !important;
}

.share-hero .share-btn,
.share-hero .share-btn.whatsapp,
.share-hero .share-btn.facebook,
.share-hero .share-btn.twitter,
.share-hero .share-btn.telegram {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    border-radius: 50% !important;
    font-size: 14px !important;
    backdrop-filter: none !important;
    border: none !important;
    transition: transform 0.15s !important;
    box-shadow: none !important;
}

.share-hero .share-btn:hover {
    transform: scale(1.12) !important;
    box-shadow: none !important;
}

.share-hero .share-btn.whatsapp { background: #25D366 !important; }
.share-hero .share-btn.facebook { background: #1877F2 !important; }
.share-hero .share-btn.twitter { background: #1DA1F2 !important; }
.share-hero .share-btn.telegram { background: #0088cc !important; }

.share-hero::before,
.share-hero::after {
    display: none !important;
}

/* ===========================================
   4. PREMIUM BANNER - Strip fino amarelo
   =========================================== */
#premiumBanner {
    padding: 10px 16px !important;
    border-radius: 10px !important;
    margin: 12px 0 !important;
    min-height: auto !important;
    background: linear-gradient(90deg, rgba(234,179,8,0.1), rgba(234,179,8,0.02)) !important;
    border: 1px solid rgba(234,179,8,0.25) !important;
}

/* ===========================================
   5. COMUNIDADE / VIBE - Mais compacta
   =========================================== */

/* Barra de energia - menor */
.energy-viz {
    height: 180px !important;
    margin-bottom: 16px !important;
    border-radius: 16px !important;
}

.energy-title {
    font-size: 1.5em !important;
}

/* Seção de seleção de vibe - compacta */
.current-vibe {
    padding: 16px 20px !important;
    border-radius: 14px !important;
    margin-bottom: 12px !important;
    display: flex !important;
    flex-direction: row !important;
    gap: 16px !important;
}

/* Círculo da vibe - menor */
.vibe-visual {
    max-width: 120px !important;
}

.vibe-emoji {
    font-size: 3em !important;
}

.vibe-percentage {
    font-size: 1.2em !important;
}

.vibe-current-title {
    font-size: 1.2em !important;
}

/* Pills de vibe - menores */
.vibe-quick-btn {
    padding: 6px 12px !important;
    font-size: 0.8em !important;
    border-radius: 20px !important;
}

/* Seção de expressão - compacta */
.express-section {
    padding: 20px !important;
    border-radius: 14px !important;
    margin-bottom: 16px !important;
}

.express-textarea {
    min-height: 80px !important;
    padding: 14px !important;
    border-radius: 12px !important;
}

/* Feed da galera */
.community-feed-header {
    margin-bottom: 12px !important;
}

.feed-title {
    font-size: 1.2em !important;
}



/* ===========================================
   6. APP DOWNLOAD - Mais abaixo, estilo banner
   =========================================== */
.app-promo-item {
    background: #000 !important;
    border-radius: 14px !important;
    border: 1px solid rgba(147,51,234,0.15) !important;
    padding: 20px 24px !important;
    display: grid !important;
    grid-template-columns: auto 1fr !important;
    grid-template-rows: auto auto !important;
    gap: 8px 20px !important;
    align-items: center !important;
    text-align: left !important;
    margin-top: 12px !important;
}

.app-promo-item .promo-icon {
    grid-row: 1 / 3 !important;
    font-size: 1.8rem !important;
    color: #9333ea !important;
    animation: none !important;
    margin: 0 !important;
}

.app-promo-item .promo-text {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin: 0 !important;
    padding: 0 !important;
    text-shadow: none !important;
}

.app-promo-item .promo-button {
    grid-column: 2 !important;
    width: auto !important;
    padding: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
}

.app-promo-item .play-badge {
    height: 40px !important;
    width: auto !important;
    border-radius: 6px !important;
}


/* ===========================================
   8. SECTION TITLES - Mais discretos
   =========================================== */
.section-title {
    font-size: 14px !important;
    margin: 16px 0 10px !important;
    letter-spacing: 0.5px !important;
}

/* ===========================================
   9. ABOUT / FAQ / CONTACT - Compactos
   =========================================== */
.about-section,
.contact-section {
    max-width: 100% !important;
    padding: 16px !important;
    border-radius: 12px !important;
    margin: 8px auto !important;
}

.faq-section {
    margin-top: 16px !important;
}

.faq-item {
    padding: 12px 14px !important;
    margin-bottom: 6px !important;
}

/* ===========================================
   10. RESPONSIVO
   =========================================== */
@media (max-width: 768px) {
    .radio-header {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .radio-image-wrapper {
        width: 100px !important;
        height: 100px !important;
        min-width: 100px !important;
        min-height: 100px !important;
    }
    
    .radio-info {
        text-align: center !important;
    }
    
    .radio-tags {
        justify-content: center !important;
    }
    
    .control-buttons {
        justify-content: center !important;
    }
    
    .radio-actions {
        max-width: 100% !important;
    }
    
 
    
    .current-vibe {
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .vibe-options-quick {
        justify-content: center !important;
    }
    


}

/* ===========================================
   11. FIX - SQL rock'n'roll (CSS não resolve,
   mas lembrete: no PHP usar real_escape_string)
   Já está correto no arquivo atual.
   =========================================== */


.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 999999;
  display: none !important;
}

