/* Person */
/* Efeito menu */
.u-nav-link {
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}

.u-nav-link:hover {
  transform: scale(1.08); /* aumenta 08% */
}

/* Radio */
.fallback-container {
  text-align: center;
  margin-top: 15px;
}

.radio-fallback-btn {
  background: #d60000;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  font-weight: bold;
  transition: 0.3s;
  max-width: 90%; 
  width: auto; 
  text-align: center;
}

.radio-fallback-btn:hover {
  background: #aa0000;
}

/* MOBILE */ 
@media (max-width: 768px) { 
  .radio-fallback-btn { 
    font-size: 13px; 
    padding: 8px 14px; 
    border-radius: 6px; 
  } 
}

/* Pop-up */
.popup-radio {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: white;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  text-align: center;
  position: relative;
}

.popup-content audio {
  width: 100%;
  margin-top: 20px;
}

.fechar-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  cursor: pointer;
  color: #555;
}

.fechar-popup:hover {
  color: red;
}
/* End Person */

.u-section-1 .u-sheet-1 {
  min-height: 400px;
}

.u-section-1 .u-custom-html-1 {
  margin-bottom: 0px;
  height: auto;
  min-height: 0px;
  margin-top: 20px;
}

/* Estilo principal do título */
.u-section-1 .u-text-1 {
    text-align: center;               /* centralizado */
    font-size: 28px;                  /* tamanho maior */
    font-weight: 00;                 /* destaque */
    font-family: 'Roboto', sans-serif;/* fonte moderna */
    letter-spacing: 1px;              /* espaço entre letras */

    /* Sombra leve */
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);

    margin-bottom: 30px;              /* separação do card */
    /* margin: 0 auto 30px auto;         /* centraliza no bloco */

    /* Para animação de entrada */
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    
    /* Para o underline animado */
    position: relative;
    display: block;
}

/* Underline animado ao passar o mouse */
.u-section-1 .u-text-1::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 3px;
    bottom: -5px;
    left: 0;
    background: #f11111;
    transition: width 0.3s ease-in-out;
}

.u-section-1 .u-text-1:hover::after {
    width: 100%;
}

/* Animação de entrada */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px);}
    to { opacity: 1; transform: translateY(0);}
}

.radio-card {
    background: #1a1a1a;       /* Fundo escuro elegante */
    border-radius: 16px;       /* Cantos arredondados */
    box-shadow: 0 4px 15px rgba(0,0,0,0.3); /* Sombra leve */
    padding: 15px;          /* adiciona espaço interno */
    transition: transform 0.3s; /* Efeito ao passar mouse */
}

.radio-card:hover {
    transform: translateY(-5px); /* Pequeno destaque ao hover */
}

.radio-card iframe {
    border-radius: 12px;       /* Player também arredondado */
}

.radio-card .lives img {
    transition: transform 0.3s;
}

.radio-card .lives img:hover {
    transform: scale(1.05); /* efeito leve ao passar mouse */
}
