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

.whatsapp-modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
}

.whatsapp-modal-content p {
  margin-bottom: 20px;
}

.whatsapp-modal-content button {
  margin: 5px;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#btn-continuar {
  background: #25D366;
  color: #fff;
}

#btn-cancelar {
  background: #ccc;
}

.contacto-boton-container {
  text-align: center;
  width: max-content !important;
  margin-top: 25px !important;
}

.contacto-boton-container .contacto-boton {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #ff5518;
  color: white !important;
  font-weight: bold;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none !important;
  font-size: 16px;
  line-height: 1;
  transition: background 0.3s, transform 0.2s;
  cursor: pointer;
  border: none;
}

.contacto-boton-container .contacto-boton:hover {
  background-color: #e04b15;
  transform: translateY(-2px);
}

.contacto-boton-container .contacto-boton svg {
  width: 22px !important;
  height: 22px !important;
  fill: white !important;
  display: block;
}

.contacto-boton-container .leyenda {
  font-size: 12px;
  color: #555;
  margin-top: 6px;
  text-align: center;
}

/* Fondo del modal */
.wcp-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

/* Caja del modal */
.wcp-modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  max-width: 550px;
  width: 90%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
  text-align: center;
  transform: scale(0.8);
  opacity: 0;
  animation: wcpModalIn 0.3s forwards;
}

/* Animación */
@keyframes wcpModalIn {
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Encabezado */
.wcp-modal-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 15px;
}

.wcp-modal-icon {
  background: #ff5518;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 45px;
  min-height: 45px;
}

.wcp-modal-title {
  margin: 0 !important;
  font-size: 22px;
  font-weight: bold;
  color: #333;
}

.wcp-modal-text {
  font-size: 15px;
  color: #555;
  margin: 10px 0 25px;
}

/* Botones */
.wcp-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.wcp-btn {
  padding: 10px 22px;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s, background 0.3s;
}

.wcp-btn:hover {
  transform: scale(1.08);
}

.wcp-btn-primary {
  background: #ff5518 !important;
  color: #fff;
}

.wcp-btn-primary:hover {
  background: #e44a14;
}

.wcp-btn-secondary {
  background: #999 !important;
  color: #fff;
}

.wcp-btn-secondary:hover {
  background: #4b4b4b;
}




.contacto-aviso-container {
  display: flex;
  text-align: center;
  margin-top: 25px;
}

.contacto-aviso {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  border: 2px solid #ff7a3d;
  color: #202020;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 15px;
  background: #f9f5ff;
  text-align: left;
  max-width: 500px;
  line-height: 1.4;
}

@media screen and (max-width: 500px) {
  .contacto-aviso svg {
    display: none;
  }
}