
small .fonte,
.fonte,
.fonte a {
    color: #3898ec;
    weight: light;
    opacity: 0.8;
    text-decoration: none;
    transition: all 0.3s;
}

small:hover .font a {
    text-decoration: underline;
    opacity: 1;    
    transition: all 0.3s;
}

strong {
    color: #3898ec;
}

/* ============================================
   MENU RESPONSIVO - Desktop/Mobile
   ============================================ */

.button span.mobile {
  display: none;
}

@media (max-width: 768px) {
  .button span.desktop {
    display: none;
  }
  
  .button span.mobile {
    display: inline;
  }
}

/* ============================================
   CUSTOM FORM MESSAGES - Override Webflow
   ============================================ */

/* Esconde as mensagens padrão do Webflow */
.w-form-done,
.w-form-fail {
  display: none !important;
}

/* Mensagens customizadas */
.custom-form-message {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 20px 30px;
  border-radius: 10px;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  display: none;
  font-size: 16px;
  font-weight: 500;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  max-width: 400px;
  animation: slideInRight 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.custom-form-message.success {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.custom-form-message.error {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

.custom-form-message.show {
  display: block;
}

.custom-form-message strong {
  display: block;
  margin-bottom: 5px;
  font-size: 18px;
  color: white;
}

/* Animação de entrada */
@keyframes slideInRight {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Animação de saída */
.custom-form-message.hide {
  animation: slideOutRight 0.3s ease-in forwards;
}

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

/* Responsivo Mobile */
@media (max-width: 768px) {
  .custom-form-message {
    top: 10px;
    right: 10px;
    left: 10px;
    padding: 15px 20px;
    font-size: 14px;
    max-width: none;
  }
  
  .custom-form-message strong {
    font-size: 16px;
  }
}

/* ============================================
   LIVE STREAM MODAL - Popup Minimalista
   ============================================ */

.live-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-out;
}

.live-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
}

.live-modal-content {
  position: relative;
  /*background: #1a1a1a;*/
  border-radius: 16px;
  max-width: 90vw;
  max-height: 90vh;
  /*width: 1200px;*/
  width: 800px;
  /*box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);*/
  overflow: hidden;
  animation: slideUp 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  margin: 5% auto;
}

.live-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 28px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.live-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.live-modal-header {
  /*padding: 30px 30px 20px;*/
  /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
  /*background: #010010;*/
  color: white;
}

.live-modal-header h2 {
  margin: 0 0 8px 0;
  font-size: 28px;
  font-weight: 700;
}

.live-date {
  margin: 0;
  font-size: 16px;
  opacity: 0.9;
}

.live-modal-body {
  padding: 0;
  /*background: #000;*/
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Vídeo no modal */
.live-video-container {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  position: relative;
}

.live-video-container video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Botão de Play Grande */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(102, 126, 234, 0.95);
  backdrop-filter: blur(10px);
  color: white;
  border: none;
  padding: 30px 40px;
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.3s;
  z-index: 101;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.play-button:hover {
  background: rgba(118, 75, 162, 0.95);
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 15px 50px rgba(102, 126, 234, 0.4);
}

.play-button svg {
  width: 80px;
  height: 80px;
  transition: transform 0.3s;
}

.play-button:hover svg {
  transform: scale(1.1);
}

.play-text {
  text-align: center;
  line-height: 1.4;
}

video#video-upfront {
    bottom: 0;
    position: absolute;
}

/* Botão de Unmute */
.unmute-button {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 16px 28px;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
  z-index: 100;
  animation: pulseUnmute 2s ease-in-out infinite;
}

.unmute-button:hover {
  background: rgba(102, 126, 234, 0.9);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateX(-50%) scale(1.05);
  animation: none;
}

.unmute-button svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.unmute-button.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) scale(0.8);
}

@keyframes pulseUnmute {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(102, 126, 234, 0);
  }
}

/* Mensagem de stream offline */
.stream-offline {
  padding: 60px 40px;
  text-align: center;
  color: white;
}

.stream-offline-icon {
  font-size: 80px;
  margin-bottom: 20px;
  opacity: 0.5;
}

.stream-offline h3 {
  font-size: 28px;
  margin: 0 0 15px 0;
  font-weight: 600;
}

.stream-offline p {
  font-size: 18px;
  opacity: 0.7;
  margin: 0 0 30px 0;
  line-height: 1.6;
}

.stream-offline .countdown {
  display: inline-block;
  padding: 15px 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
}

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

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

/* Responsivo Mobile */
@media (max-width: 768px) {
  .live-modal-content {
    width: 95vw;
    max-height: 95vh;
    border-radius: 12px;
    background: transparent;
  }
  
  .live-modal-header {
    /*padding: 20px 20px 15px;*/
  }

  video#video-upfront {
    top: 0;
  }

  .live-modal-body {
    background: transparent;
  }
  
  .live-modal-header h2 {
    font-size: 22px;
  }
  
  .live-date {
    font-size: 14px;
    display: none;
  }
  
  .live-modal-close {
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    font-size: 24px;
  }
  
  .stream-offline {
    padding: 40px 20px;
  }
  
  .stream-offline-icon {
    font-size: 60px;
  }
  
  .stream-offline h3 {
    font-size: 22px;
  }
  
  .stream-offline p {
    font-size: 16px;
  }
  
  .play-button {
    padding: 20px 30px;
    font-size: 16px;
  }
  
  .play-button svg {
    width: 60px;
    height: 60px;
  }
  
  .play-text {
    font-size: 14px;
  }
  
  .unmute-button {
    bottom: 60px;
    padding: 12px 20px;
    font-size: 14px;
  }
  
  .unmute-button .unmute-text {
    display: none;
  }
  
  .unmute-button svg {
    width: 20px;
    height: 20px;
  }
}

/* Loading spinner */
.live-loading {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top-color: #667eea;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}