/* Widget principal */
.wa-widget-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Botón flotante */
.wa-floating-btn {
  display: flex;
  align-items: center;
  background-color: #25D366;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.wa-floating-btn:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.wa-icon {
  width: 24px;
  height: 24px;
  margin-right: 12px;
}

.wa-icon svg {
  width: 100%;
  height: 100%;
}

.wa-btn-text {
  font-size: 14px;
  font-weight: 500;
}

.wa-btn-text strong {
  font-weight: 700;
}

/* Popup de contactos */
.wa-contact-popup {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 320px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
  transition: all 0.3s ease;
}

.wa-widget-container.active .wa-contact-popup {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

/* Encabezado con fondo verde */
.wa-popup-header {
  padding: 16px 20px;
  background: #25D366;
  color: white;
}

.wa-header-content {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.wa-header-icon {
  width: 24px;
  height: 24px;
  margin-right: 12px;
}

.wa-header-icon svg {
  width: 100%;
  height: 100%;
}

.wa-header-text {
  flex: 1;
}

.wa-popup-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: white;
}

.wa-popup-subtitle {
  margin: 4px 0 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

.wa-popup-subtitle strong {
  font-weight: 600;
  color: white;
}

.wa-response-time {
  margin: 8px 0 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

/* Lista de contactos */
.wa-contacts-list {
  padding: 8px 0;
}

.wa-contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  margin: 0 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  background: #f9f9f9;
  margin-bottom: 8px;
}

.wa-contact-card:last-child {
  margin-bottom: 0;
}

.wa-contact-card:hover {
  background: #f0f0f0;
}

.wa-contact-left {
  display: flex;
  align-items: center;
  flex: 1;
}

.wa-contact-icon {
  width: 24px;
  height: 24px;
  margin-right: 12px;
}

.wa-contact-icon svg {
  width: 100%;
  height: 100%;
}

.wa-contact-info {
  flex: 1;
}

.wa-contact-name {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.wa-contact-position {
  margin: 2px 0 0 0;
  font-size: 12px;
  color: #666;
}

.wa-contact-arrow {
  width: 20px;
  height: 20px;
  opacity: 0.7;
}

.wa-contact-arrow svg {
  width: 100%;
  height: 100%;
}

/* Efecto al hacer clic */
.wa-contact-card:active {
  transform: scale(0.98);
  background: #e8f5e9;
}