.popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
  }
  
  .popup-container.ativo {
    display: flex;
  }
  
  /* Conteúdo do Pop-up ------------------------------*/
  .popup {
    background: #fff;
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0 0 2px 4px rgba(255, 255, 255, 0.3);
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .popup img{
    height: 100%;
    width: 100%;
    object-fit: contain;
    max-height: 500px;
  }

  /* Estilos para o conteúdo do aviso */
  .popup-content {
    max-width: 400px;
    padding: 20px;
    text-align: center;
  }

  .popup-content h2 {
    color: #38143f;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: bold;
  }

  .popup-content p {
    color: #333;
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 0.95rem;
  }

  .popup-content p small {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
  }

  /* Estilos para o botão do WhatsApp */
  .whatsapp-contact {
    margin: 20px 0;
  }

  .btn-whatsapp {
    display: inline-block;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white !important;
    padding: 15px 25px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    border: none;
    cursor: pointer;
  }

  .btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  }

  .btn-whatsapp small {
    font-size: 0.8rem;
    font-weight: normal;
    opacity: 0.9;
  }
  
  .popup a {
    color: #38143f;
  }
  
  .popup a:hover {
    color: #65246d;
  }
  
  /*  Botão Fechar -----------------------------------*/
  .fechar {
    width: 50px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 50%;
    position: absolute;
    top: -25px;
    right: -25px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.3);
    background: #38143f;
    font-size: 1.2rem;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    cursor: pointer;
  }