.modal-whatsapp {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  text-align: center;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 12px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.atendente {
    background: linear-gradient(135deg, var(--secondary), #2d9c6f);
    color: #fff;
    padding: 1.2rem 2rem;
    font-weight: 600;
    box-shadow: var(--shadow);
    border: none;
}

.atendente:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #2d9c6f, var(--secondary));
}

/* .atendente {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  text-align: left;
} */

.atendente img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #25d366;
}

/* .atendente .info strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
} */

/* .atendente .info a {
  text-decoration: none;
  color: #25d366;
  font-weight: 500;
  font-size: 0.95rem;
} */

/* .atendente .info a:hover {
  text-decoration: underline;
} */
@media (prefers-color-scheme: dark) {
  .modal-content {
    background: #1e293b;
    color: #f8fafc;
  }
}

